Home | History | Annotate | Download | only in regexp

Lines Matching refs:parse_result

153   RegExpCompileData parse_result;
156 &parse_result)) {
158 return ThrowRegExpException(re, pattern, parse_result.error);
163 if (parse_result.simple && !(flags & JSRegExp::kIgnoreCase) &&
168 } else if (parse_result.tree->IsAtom() && !(flags & JSRegExp::kIgnoreCase) &&
169 !(flags & JSRegExp::kSticky) && parse_result.capture_count == 0) {
170 RegExpAtom* atom = parse_result.tree->AsAtom();
183 IrregexpInitialize(re, pattern, flags, parse_result.capture_count);