Lines Matching refs:next_char
817 auto next_char = is.peek();
818 if (next_char == '-' || next_char == '+') {
974 auto next_char = is.peek();
977 if (next_char != '-' && next_char != '0') {
981 if (next_char == '-') {
984 next_char = is.peek();
987 if (next_char == '0') {
1015 while ((next_char = is.peek()) == '0') {
1028 if (next_char == '.') {
1030 } else if (next_char == 'p') {
1032 } else if (::isxdigit(next_char)) {
1035 int number = get_nibble_from_character(next_char);
1062 next_char = is.peek();
1070 if (next_char == 'p') {
1072 } else if (::isxdigit(next_char)) {
1073 int number = get_nibble_from_character(next_char);
1101 next_char = is.peek();
1121 (next_char == '-' || next_char == '+')) {
1127 exponent_sign = (next_char == '-') ? -1 : 1;
1128 } else if (::isdigit(next_char)) {
1132 static_cast<int_type>(static_cast<int_type>(next_char) - '0');
1145 next_char = is.peek();