Home | History | Annotate | Download | only in pcrecpp

Lines Matching refs:RE

69 void Scanner::SetSkipExpression(const char* re) {
71 if (re != NULL) {
72 skip_ = new RE(re);
83 void Scanner::Skip(const char* re) {
85 if (re != NULL) {
86 skip_ = new RE(re);
123 bool Scanner::LookingAt(const RE& re) const {
125 return re.DoMatch(input_, RE::ANCHOR_START, &consumed, 0, 0);