Home
last modified time | relevance | path

Searched refs:following_char (Results 1 – 2 of 2) sorted by relevance

/third_party/gn/src/gn/
Dtokenizer.cc202 Token::Type Tokenizer::ClassifyToken(char next_char, char following_char) { in ClassifyToken() argument
239 if (following_char == '\0') in ClassifyToken()
242 if (base::IsAsciiDigit(following_char)) in ClassifyToken()
253 char following_char = CanIncrement() ? input_[cur_ + 1] : '\0'; in ClassifyCurrent() local
254 return ClassifyToken(next_char, following_char); in ClassifyCurrent()
Dtokenizer.h52 static Token::Type ClassifyToken(char next_char, char following_char);