HomeSort by relevance Sort by last modified time
    Searched refs:runes (Results 1 - 5 of 5) sorted by null

  /external/regex-re2/re2/
regexp.h 331 Rune* runes() { DCHECK_EQ(op_, kRegexpLiteralString); return runes_; } function in class:re2::Regexp
384 // They do not consume allocated arrays like subs or runes.
394 static Regexp* LiteralString(Rune* runes, int nrunes, ParseFlags flags);
464 // Removes the first n leading runes from the beginning of re.
regexp.cc 278 Regexp* Regexp::LiteralString(Rune* runes, int nrunes, ParseFlags flags) {
282 return NewLiteral(runes[0], flags);
285 re->AddRuneToString(runes[i]);
333 memcmp(a->runes(), b->runes(),
334 a->nrunes() * sizeof a->runes()[0]) == 0;
tostring.cc 162 AppendLiteral(t_, re->runes()[i], re->parse_flags() & Regexp::FoldCase);
prefilter.cc 535 info = Literal(re->runes()[0]);
537 info = Concat(info, Literal(re->runes()[i]));
compile.cc 533 // the bytes that would make up those runes in the current
551 // Latin1 is easy: runes *are* bytes.
771 Frag f1 = Literal(re->runes()[i], re->parse_flags()&Regexp::FoldCase);
    [all...]

Completed in 225 milliseconds