Lines Matching refs:next_char
138 next_char = value[i + 1]
139 if next_char in ('$', '"', '\\'):
141 result += next_char
225 next_char = self.input[self.cur]
226 if next_char == '[':
228 elif _IsDigitOrMinus(next_char):
230 elif next_char == '"':
242 next_char = self.input[self.cur]
243 if not next_char.isalpha() and not next_char=='_':
246 ident += next_char
249 next_char = self.input[self.cur]
250 while next_char.isalpha() or next_char.isdigit() or next_char=='_':
251 ident += next_char
253 next_char = self.input[self.cur]