Lines Matching defs:token
39 * For long style comments like this one, we search for the ending token. We also
104 // hasToken automatically consumes the next token, if it is a match, and then tabs
105 // if necessary, before inserting the token into the pretty string
106 bool hasToken(const char* token) {
108 for (size_t j = 0; token[j] && fLength > i; i++, j++) {
109 if (token[j] != fInput[i]) {
115 fPretty.append(token);
136 void parseUntil(const char* token) {
146 if (this->hasToken(token)) {
153 fInParseUntilToken = token;