OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NeverNL
(Results
1 - 4
of
4
) sorted by null
/external/regex-re2/re2/testing/
parse_test.cc
150
// Reported bug involving \n leaking in despite use of
NeverNL
.
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
},
[
all
...]
/external/regex-re2/re2/
parse.cc
375
if (!(flags_ &
NeverNL
) || r != '\n') {
385
if ((flags_ &
NeverNL
) && r == '\n')
428
if ((flags_ & DotNL) && !(flags_ &
NeverNL
))
[
all
...]
regexp.h
300
NeverNL
= 1<<11, // Never match NL, even if the regexp mentions
re2.cc
152
flags |= Regexp::
NeverNL
;
[
all
...]
Completed in 477 milliseconds