Home | History | Annotate | Download | only in tools

Lines Matching defs:beg

111   size_t beg;
113 TokenWithLocation() : value(Token::ILLEGAL), beg(0), end(0) { }
114 TokenWithLocation(Token::Value value, size_t beg, size_t end) :
115 value(value), beg(beg), end(end) { }
117 return value == other.value && beg == other.beg && end == other.end;
125 static_cast<int>(beg), static_cast<int>(end));
139 int beg, end;
141 token = scanner.Next(&beg, &end);
143 tokens->push_back(TokenWithLocation(token, beg, end));