Lines Matching defs:peek_char
73 def peek_char(self, peek_count=0):
105 while not self.peek_char().is_eof:
106 new_char = self.peek_char()
130 while not self.peek_char().is_eof:
131 new_char = self.peek_char()
147 while not self.peek_char().is_eof and self.peek_char().char != '"':
150 if self.peek_char().char == '"':
160 new_char = self.peek_char()
173 while not self.peek_char().is_eof:
184 while not self.peek_char().is_eof:
187 if new_char.char == '*' and self.peek_char().char == '/':