OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:runes
(Results
1 - 6
of
6
) sorted by null
/external/regex-re2/re2/testing/
dump.cc
80
Rune r = re->
runes
()[i];
106
Rune r = re->
runes
()[i];
/external/regex-re2/re2/
prefilter.cc
572
info = LiteralLatin1(re->
runes
()[0]);
574
info = Concat(info, LiteralLatin1(re->
runes
()[i]));
577
info = Literal(re->
runes
()[0]);
579
info = Concat(info, Literal(re->
runes
()[i]));
regexp.h
332
Rune*
runes
() { DCHECK_EQ(op_, kRegexpLiteralString); return runes_; }
function in class:re2::Regexp
385
// They do not consume allocated arrays like subs or
runes
.
395
static Regexp* LiteralString(Rune*
runes
, int nrunes, ParseFlags flags);
465
// Removes the first n leading
runes
from the beginning of re.
regexp.cc
289
Regexp* Regexp::LiteralString(Rune*
runes
, int nrunes, ParseFlags flags) {
293
return NewLiteral(
runes
[0], flags);
296
re->AddRuneToString(
runes
[i]);
344
memcmp(a->
runes
(), b->
runes
(),
345
a->nrunes() * sizeof a->
runes
()[0]) == 0;
tostring.cc
162
AppendLiteral(t_, re->
runes
()[i], re->parse_flags() & Regexp::FoldCase);
compile.cc
534
// the bytes that would make up those
runes
in the current
552
// Latin1 is easy:
runes
*are* bytes.
772
Frag f1 = Literal(re->
runes
()[i], re->parse_flags()&Regexp::FoldCase);
[
all
...]
Completed in 168 milliseconds