OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:foldascii
(Results
1 - 2
of
2
) sorted by null
/external/regex-re2/re2/
compile.cc
801
// and mark the other ranges as
foldascii
.
804
bool
foldascii
= cc->FoldsASCII();
local
811
if (
foldascii
&& 'A' <= i->lo && i->hi <= 'Z')
816
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 97 milliseconds