OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:foldascii
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/re2/re2/
compile.cc
802
// and mark the other ranges as
foldascii
.
805
bool
foldascii
= cc->FoldsASCII();
local
812
if (
foldascii
&& 'A' <= i->lo && i->hi <= 'Z')
817
bool fold =
foldascii
;
[
all
...]
parse.cc
518
// Adds r to cc, along with r's upper case if
foldascii
is set.
519
static void AddLiteral(CharClassBuilder* cc, Rune r, bool
foldascii
) {
521
if (
foldascii
&& 'a' <= r && r <= 'z')
[
all
...]
Completed in 66 milliseconds