Lines Matching refs:re
73 void Scanner::SetSkipExpression(const char* re) {
75 if (re != NULL) {
76 skip_ = new RE(re);
87 void Scanner::Skip(const char* re) {
89 if (re != NULL) {
90 skip_ = new RE(re);
127 bool Scanner::LookingAt(const RE& re) const {
129 return re.DoMatch(input_, RE::ANCHOR_START, &consumed, 0, 0);
133 bool Scanner::Consume(const RE& re,
137 const bool result = re.Consume(&input_, arg0, arg1, arg2);