Lines Matching refs:many1
47 use nom::multi::{fold_many0, many0, many1, many_m_n};
189 map_opt(preceded(char('x'), many1(hexadecimal)), |v| {
259 map_opt(preceded(tag("0x"), many1(complete(hexadecimal))), |v| {
262 map_opt(preceded(tag("0X"), many1(complete(hexadecimal))), |v| {
265 map_opt(preceded(tag("0b"), many1(complete(binary))), |v| {
268 map_opt(preceded(tag("0B"), many1(complete(binary))), |v| {
271 map_opt(preceded(char('0'), many1(complete(octal))), |v| {
274 map_opt(many1(complete(decimal)), |v| c_int_radix(v, 10)),
294 pair(opt(byte!(b'-' | b'+')), many1(complete(decimal))),
303 many1(complete(decimal)),
313 many1(complete(decimal)),
321 many1(complete(decimal)),
328 many1(complete(decimal)),
335 terminated(recognize(many1(complete(decimal))), float_width),