/external/chromium_org/third_party/re2/re2/testing/ |
D | parse_test.cc | 152 { "[^ ]", "cc{0-0x9 0xb-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 154 { "[^ ]", "cc{0-0x9 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 156 { "[^ \f]", "cc{0-0x9 0xb 0xd-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 158 { "[^ \f]", "cc{0-0x9 0xb 0xd-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 160 { "[^ \r]", "cc{0-0x9 0xb-0xc 0xe-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 162 { "[^ \r]", "cc{0-0x9 0xb-0xc 0xe-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 164 { "[^ \v]", "cc{0-0x9 0xc-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 166 { "[^ \v]", "cc{0-0x9 0xc-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 168 { "[^ \t]", "cc{0-0x8 0xb-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 170 { "[^ \t]", "cc{0-0x8 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, [all …]
|
D | dump.cc | 73 if (re->op() == kRegexpLiteral && (re->parse_flags() & Regexp::FoldCase)) { in DumpRegexpAppending() 78 if (re->op() == kRegexpLiteralString && (re->parse_flags() & Regexp::FoldCase)) { in DumpRegexpAppending()
|
D | exhaustive_test.cc | 25 TEST(EgrepLiterals, FoldCase) { in TEST() argument
|
/external/regex-re2/re2/testing/ |
D | parse_test.cc | 152 { "[^ ]", "cc{0-0x9 0xb-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 154 { "[^ ]", "cc{0-0x9 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 156 { "[^ \f]", "cc{0-0x9 0xb 0xd-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 158 { "[^ \f]", "cc{0-0x9 0xb 0xd-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 160 { "[^ \r]", "cc{0-0x9 0xb-0xc 0xe-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 162 { "[^ \r]", "cc{0-0x9 0xb-0xc 0xe-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 164 { "[^ \v]", "cc{0-0x9 0xc-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 166 { "[^ \v]", "cc{0-0x9 0xc-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 168 { "[^ \t]", "cc{0-0x8 0xb-0x1f 0x21-0x10ffff}", Regexp::FoldCase }, 170 { "[^ \t]", "cc{0-0x8 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, [all …]
|
D | dump.cc | 73 if (re->op() == kRegexpLiteral && (re->parse_flags() & Regexp::FoldCase)) { in DumpRegexpAppending() 78 if (re->op() == kRegexpLiteralString && (re->parse_flags() & Regexp::FoldCase)) { in DumpRegexpAppending()
|
D | exhaustive_test.cc | 25 TEST(EgrepLiterals, FoldCase) { in TEST() argument
|
/external/chromium_org/third_party/re2/re2/ |
D | parse.cc | 227 re = new Regexp(kRegexpLiteral, flags_ | FoldCase); in PushRegexp() 370 if ((flags_ & FoldCase) && CycleFoldRune(r) != r) { in PushLiteral() 371 Regexp* re = new Regexp(kRegexpCharClass, flags_ & ~FoldCase); in PushLiteral() 431 Regexp* re = new Regexp(kRegexpCharClass, flags_ & ~FoldCase); in PushDot() 554 AddLiteral(r3->ccb_, rune, r3->parse_flags_ & Regexp::FoldCase); in DoVerticalBar() 559 r1->parse_flags_ & Regexp::FoldCase); in DoVerticalBar() 692 *flags = static_cast<Regexp::ParseFlags>(re->parse_flags_ & Regexp::FoldCase); in LeadingString() 1081 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase)) in MaybeConcatString() 1399 if (parse_flags & Regexp::FoldCase) in AddRangeFlags() 1448 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 | 339 ((a->parse_flags() ^ b->parse_flags()) & Regexp::FoldCase) == 0; in TopEqual() 343 ((a->parse_flags() ^ b->parse_flags()) & Regexp::FoldCase) == 0 && in TopEqual() 672 *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 | 765 return Literal(re->rune(), re->parse_flags()&Regexp::FoldCase); in PostVisit() 773 Frag f1 = Literal(re->runes()[i], re->parse_flags()&Regexp::FoldCase); in PostVisit()
|
D | re2.cc | 176 flags |= Regexp::FoldCase; in ParseFlags()
|
/external/regex-re2/re2/ |
D | parse.cc | 227 re = new Regexp(kRegexpLiteral, flags_ | FoldCase); in PushRegexp() 370 if ((flags_ & FoldCase) && CycleFoldRune(r) != r) { in PushLiteral() 371 Regexp* re = new Regexp(kRegexpCharClass, flags_ & ~FoldCase); in PushLiteral() 431 Regexp* re = new Regexp(kRegexpCharClass, flags_ & ~FoldCase); in PushDot() 554 AddLiteral(r3->ccb_, rune, r3->parse_flags_ & Regexp::FoldCase); in DoVerticalBar() 559 r1->parse_flags_ & Regexp::FoldCase); in DoVerticalBar() 692 *flags = static_cast<Regexp::ParseFlags>(re->parse_flags_ & Regexp::FoldCase); in LeadingString() 1081 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase)) in MaybeConcatString() 1399 if (parse_flags & Regexp::FoldCase) in AddRangeFlags() 1448 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 | 339 ((a->parse_flags() ^ b->parse_flags()) & Regexp::FoldCase) == 0; in TopEqual() 343 ((a->parse_flags() ^ b->parse_flags()) & Regexp::FoldCase) == 0 && in TopEqual() 672 *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 | 764 return Literal(re->rune(), re->parse_flags()&Regexp::FoldCase); in PostVisit() 772 Frag f1 = Literal(re->runes()[i], re->parse_flags()&Regexp::FoldCase); in PostVisit()
|
D | re2.cc | 158 flags |= Regexp::FoldCase; in ParseFlags()
|