Lines Matching refs:CHAR_DIGIT_
26 CHAR_DIGIT_ = "0123456789" variable in Lexer
30 CHAR_NAME_CONTINUATION_ = CHAR_LETTER_ + CHAR_DIGIT_ + "_.+*:^~!/-"
98 if cur_char == "\\" and next_char in Lexer.CHAR_DIGIT_:
100 self.scan_over_(Lexer.CHAR_DIGIT_)
130 if cur_char == "0" and next_char in Lexer.CHAR_DIGIT_:
131 self.scan_over_(Lexer.CHAR_DIGIT_)
133 if cur_char in Lexer.CHAR_DIGIT_:
134 self.scan_over_(Lexer.CHAR_DIGIT_)
138 self.scan_over_(Lexer.CHAR_DIGIT_)
140 if cur_char == "-" and next_char in Lexer.CHAR_DIGIT_:
142 self.scan_over_(Lexer.CHAR_DIGIT_)
146 self.scan_over_(Lexer.CHAR_DIGIT_)