Searched refs:FoldCase (Results 1 – 6 of 6) sorted by relevance
/external/regex-re2/re2/ |
D | parse.cc | 228 re = new Regexp(kRegexpLiteral, flags_ | FoldCase); in PushRegexp() 371 if ((flags_ & FoldCase) && CycleFoldRune(r) != r) { in PushLiteral() 372 Regexp* re = new Regexp(kRegexpCharClass, flags_ & ~FoldCase); in PushLiteral() 432 Regexp* re = new Regexp(kRegexpCharClass, flags_ & ~FoldCase); in PushDot() 555 AddLiteral(r3->ccb_, rune, r3->parse_flags_ & Regexp::FoldCase); in DoVerticalBar() 560 r1->parse_flags_ & Regexp::FoldCase); in DoVerticalBar() 693 *flags = static_cast<Regexp::ParseFlags>(re->parse_flags_ & Regexp::FoldCase); in LeadingString() 1082 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase)) in MaybeConcatString() 1400 if (parse_flags & Regexp::FoldCase) in AddRangeFlags() 1449 if (parse_flags & Regexp::FoldCase) { in AddUGroup() [all …]
|
D | tostring.cc | 157 AppendLiteral(t_, re->rune(), re->parse_flags() & Regexp::FoldCase); in PostVisit() 162 AppendLiteral(t_, re->runes()[i], re->parse_flags() & Regexp::FoldCase); in PostVisit()
|
D | regexp.cc | 328 ((a->parse_flags() ^ b->parse_flags()) & Regexp::FoldCase) == 0; in TopEqual() 332 ((a->parse_flags() ^ b->parse_flags()) & Regexp::FoldCase) == 0 && in TopEqual() 661 *foldcase = (sub[i]->parse_flags() & FoldCase); in RequiredPrefix()
|
D | regexp.h | 273 FoldCase = 1<<0, // Fold case during matching (case-insensitive). enumerator
|
D | compile.cc | 763 return Literal(re->rune(), re->parse_flags()&Regexp::FoldCase); in PostVisit() 771 Frag f1 = Literal(re->runes()[i], re->parse_flags()&Regexp::FoldCase); in PostVisit()
|
D | re2.cc | 133 flags |= Regexp::FoldCase; in ParseFlags()
|