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