Home
last modified time | relevance | path

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

/third_party/gn/src/gn/
Dtokenizer.h76 bool CanIncrement() const { return cur_ < input_.size() - 1; } in CanIncrement() function
Dtokenizer.cc253 char following_char = CanIncrement() ? input_[cur_ + 1] : '\0'; in ClassifyCurrent()
302 if (CanIncrement() && CouldBeTwoCharOperatorEnd(input_[cur_ + 1])) in AdvanceToEndOfToken()