Searched refs:runes (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/re2/re2/testing/
H A Ddump.cc80 Rune r = re->runes()[i];
106 Rune r = re->runes()[i];
/external/regex-re2/re2/testing/
H A Ddump.cc80 Rune r = re->runes()[i];
106 Rune r = re->runes()[i];
/external/chromium_org/third_party/re2/re2/
H A Dprefilter.cc564 info = LiteralLatin1(re->runes()[0]);
566 info = Concat(info, LiteralLatin1(re->runes()[i]));
569 info = Literal(re->runes()[0]);
571 info = Concat(info, Literal(re->runes()[i]));
H A Dregexp.cc289 Regexp* Regexp::LiteralString(Rune* runes, int nrunes, ParseFlags flags) { argument
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;
H A Dregexp.h332 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.
H A Dtostring.cc162 AppendLiteral(t_, re->runes()[i], re->parse_flags() & Regexp::FoldCase);
H A Dcompile.cc535 // the bytes that would make up those runes in the current
553 // Latin1 is easy: runes *are* bytes.
773 Frag f1 = Literal(re->runes()[i], re->parse_flags()&Regexp::FoldCase);
/external/regex-re2/re2/
H A Dprefilter.cc572 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]));
H A Dregexp.cc289 Regexp* Regexp::LiteralString(Rune* runes, int nrunes, ParseFlags flags) { argument
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;
H A Dregexp.h332 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.
H A Dtostring.cc162 AppendLiteral(t_, re->runes()[i], re->parse_flags() & Regexp::FoldCase);
H A Dcompile.cc534 // 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);

Completed in 1404 milliseconds