Lines Matching refs:next_char
155 next_char = value[i + 1]
156 result.append(unescape_gn_special_char(next_char))
157 skip_char = next_char in ('$', '"', '\\')
337 next_char = self.input[self.cur]
338 if next_char == '[':
340 elif _is_digit_or_minus(next_char):
342 elif next_char == '"':
354 next_char = self.input[self.cur]
355 if not next_char.isalpha() and not next_char == '_':
358 ident += next_char
361 next_char = self.input[self.cur]
362 while next_char.isalpha() or next_char.isdigit() or next_char == '_':
363 ident += next_char
365 next_char = self.input[self.cur]