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

  /external/regex-re2/re2/testing/
dump.cc 79 for (int i = 0; i < re->nrunes(); i++) {
105 for (int i = 0; i < re->nrunes(); i++) {
  /external/regex-re2/re2/
regexp.cc 289 Regexp* Regexp::LiteralString(Rune* runes, int nrunes, ParseFlags flags) {
290 if (nrunes <= 0)
292 if (nrunes == 1)
295 for (int i = 0; i < nrunes; i++)
342 return a->nrunes() == b->nrunes() &&
345 a->nrunes() * sizeof a->runes()[0]) == 0;
regexp.h 333 int nrunes() { DCHECK_EQ(op_, kRegexpLiteralString); return nrunes_; } function in class:re2::Regexp
395 static Regexp* LiteralString(Rune* runes, int nrunes, ParseFlags flags);
prefilter.cc 567 if (re->nrunes() == 0) {
573 for (int i = 1; i < re->nrunes(); i++) {
578 for (int i = 1; i < re->nrunes(); i++) {
tostring.cc 161 for (int i = 0; i < re->nrunes(); i++)
compile.cc 768 if (re->nrunes() == 0)
771 for (int i = 0; i < re->nrunes(); i++) {
    [all...]

Completed in 80 milliseconds