Searched refs:nrunes (Results 1 – 7 of 7) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | regexp.cc | 318 Regexp* Regexp::LiteralString(Rune* runes, int nrunes, ParseFlags flags) { in LiteralString() argument 319 if (nrunes <= 0) in LiteralString() 321 if (nrunes == 1) in LiteralString() 324 for (int i = 0; i < nrunes; i++) in LiteralString() 373 return a->nrunes() == b->nrunes() && in TopEqual() 376 a->nrunes() * sizeof a->runes()[0]) == 0; in TopEqual() 658 void ConvertRunesToBytes(bool latin1, Rune* runes, int nrunes, in ConvertRunesToBytes() argument 661 bytes->resize(nrunes); in ConvertRunesToBytes() 662 for (int i = 0; i < nrunes; i++) in ConvertRunesToBytes() 665 bytes->resize(nrunes * UTFmax); // worst case in ConvertRunesToBytes() [all …]
|
D | simplify.cc | 413 while (n < r2->nrunes() && r2->runes()[n] == r) in DoCoalesce() 418 if (n == r2->nrunes()) in DoCoalesce() 422 &r2->runes()[n], r2->nrunes() - n, r2->parse_flags()); in DoCoalesce()
|
D | regexp.h | 341 int nrunes() { DCHECK_EQ(op_, kRegexpLiteralString); return nrunes_; } in nrunes() function 403 static Regexp* LiteralString(Rune* runes, int nrunes, ParseFlags flags);
|
D | prefilter.cc | 564 if (re->nrunes() == 0) { in PostVisit() 570 for (int i = 1; i < re->nrunes(); i++) { in PostVisit() 575 for (int i = 1; i < re->nrunes(); i++) { in PostVisit()
|
D | tostring.cc | 170 for (int i = 0; i < re->nrunes(); i++) in PostVisit()
|
D | compile.cc | 907 if (re->nrunes() == 0) in PostVisit() 910 for (int i = 0; i < re->nrunes(); i++) { in PostVisit()
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/ |
D | dump.cc | 79 for (int i = 0; i < re->nrunes(); i++) { in DumpRegexpAppending() 105 for (int i = 0; i < re->nrunes(); i++) { in DumpRegexpAppending()
|