Searched refs:NeverNL (Results 1 – 5 of 5) sorted by relevance
/external/regex-re2/re2/testing/ |
D | parse_test.cc | 153 { "[^ ]", "cc{0-0x9 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL }, 154 { "[^ ]", "cc{0-0x9 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 157 { "[^ \f]", "cc{0-0x9 0xb 0xd-0x1f 0x21-0x10ffff}", Regexp::NeverNL }, 158 { "[^ \f]", "cc{0-0x9 0xb 0xd-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 161 { "[^ \r]", "cc{0-0x9 0xb-0xc 0xe-0x1f 0x21-0x10ffff}", Regexp::NeverNL }, 162 { "[^ \r]", "cc{0-0x9 0xb-0xc 0xe-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 165 { "[^ \v]", "cc{0-0x9 0xc-0x1f 0x21-0x10ffff}", Regexp::NeverNL }, 166 { "[^ \v]", "cc{0-0x9 0xc-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, 169 { "[^ \t]", "cc{0-0x8 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL }, 170 { "[^ \t]", "cc{0-0x8 0xb-0x1f 0x21-0x10ffff}", Regexp::NeverNL | Regexp::FoldCase }, [all …]
|
/external/regex-re2/re2/ |
D | parse.cc | 375 if (!(flags_ & NeverNL) || r != '\n') { in PushLiteral() 385 if ((flags_ & NeverNL) && r == '\n') in PushLiteral() 428 if ((flags_ & DotNL) && !(flags_ & NeverNL)) in PushDot() 1389 (parse_flags & Regexp::NeverNL); in AddRangeFlags() 1459 (parse_flags & Regexp::NeverNL); in AddUGroup() 1679 if (!(flags_ & ClassNL) || (flags_ & NeverNL)) { in ParseCharClass()
|
D | regexp.h | 300 NeverNL = 1<<11, // Never match NL, even if the regexp mentions enumerator
|
D | re2.cc | 152 flags |= Regexp::NeverNL; in ParseFlags()
|
/external/regex-re2/ |
D | ucs2.diff | 342 - NeverNL = 1<<12, // Never match NL, even if the regexp mentions 343 + NeverNL = 1<<11, // Never match NL, even if the regexp mentions
|