Home | History | Annotate | Download | only in tools

Lines Matching defs:beg

147   size_t beg;
149 TokenWithLocation() : value(Token::ILLEGAL), beg(0), end(0) { }
150 TokenWithLocation(Token::Value value, size_t beg, size_t end) :
151 value(value), beg(beg), end(end) { }
153 return value == other.value && beg == other.beg && end == other.end;
161 static_cast<int>(beg), static_cast<int>(end));
175 int beg, end;
177 token = scanner.Next(&beg, &end);
179 tokens->push_back(TokenWithLocation(token, beg, end));