Lines Matching refs:next_char
240 next_char = value[i + 1]
241 if next_char in ('$', '"', '\\'):
243 result += next_char
376 next_char = self.input[self.cur]
377 if next_char == '[':
379 elif next_char == '{':
381 elif _IsDigitOrMinus(next_char):
383 elif next_char == '"':
395 next_char = self.input[self.cur]
396 if not next_char.isalpha() and not next_char=='_':
399 ident += next_char
402 next_char = self.input[self.cur]
403 while next_char.isalpha() or next_char.isdigit() or next_char=='_':
404 ident += next_char
406 next_char = self.input[self.cur]