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

  /external/regex-re2/re2/
regexp.cc 278 Regexp* Regexp::LiteralString(Rune* runes, int nrunes, ParseFlags flags) {
279 if (nrunes <= 0)
281 if (nrunes == 1)
284 for (int i = 0; i < nrunes; i++)
331 return a->nrunes() == b->nrunes() &&
334 a->nrunes() * sizeof a->runes()[0]) == 0;
regexp.h 332 int nrunes() { DCHECK_EQ(op_, kRegexpLiteralString); return nrunes_; } function in class:re2::Regexp
394 static Regexp* LiteralString(Rune* runes, int nrunes, ParseFlags flags);
tostring.cc 161 for (int i = 0; i < re->nrunes(); i++)
prefilter.cc 531 if (re->nrunes() == 0) {
536 for (int i = 1; i < re->nrunes(); i++)
compile.cc 767 if (re->nrunes() == 0)
770 for (int i = 0; i < re->nrunes(); i++) {
    [all...]

Completed in 180 milliseconds