/external/chromium_org/third_party/re2/re2/testing/ |
backtrack.cc | 69 StringPiece *submatch_; // submatches to fill in member in class:re2::Backtracker 83 submatch_(NULL), 108 submatch_ = submatch; 113 // We use submatch_[0] for our own bookkeeping, 117 submatch_ = &sp0; 120 submatch_[0] = NULL; 208 // parameters in the caller's submatch_ array. 212 if (submatch_[0].data() == NULL || // First match so far ... 213 (longest_ && p > submatch_[0].end())) { // ... or better match 215 submatch_[i] = StringPiece(cap_[2*i], cap_[2*i+1] - cap_[2*i]) [all...] |
/external/regex-re2/re2/testing/ |
backtrack.cc | 69 StringPiece *submatch_; // submatches to fill in member in class:re2::Backtracker 83 submatch_(NULL), 108 submatch_ = submatch; 113 // We use submatch_[0] for our own bookkeeping, 117 submatch_ = &sp0; 120 submatch_[0] = NULL; 208 // parameters in the caller's submatch_ array. 212 if (submatch_[0].data() == NULL || // First match so far ... 213 (longest_ && p > submatch_[0].end())) { // ... or better match 215 submatch_[i] = StringPiece(cap_[2*i], cap_[2*i+1] - cap_[2*i]) [all...] |
/external/chromium_org/third_party/re2/re2/ |
bitstate.cc | 55 StringPiece *submatch_; // submatches to fill in member in class:re2::BitState 76 submatch_(NULL), 270 if (submatch_[0].data() == NULL || 271 (longest_ && p > submatch_[0].end())) { 273 submatch_[i] = StringPiece(cap_[2*i], cap_[2*i+1] - cap_[2*i]); 308 submatch_ = submatch; 311 submatch_[i] = NULL;
|
/external/regex-re2/re2/ |
bitstate.cc | 55 StringPiece *submatch_; // submatches to fill in member in class:re2::BitState 76 submatch_(NULL), 270 if (submatch_[0].data() == NULL || 271 (longest_ && p > submatch_[0].end())) { 273 submatch_[i] = StringPiece(cap_[2*i], cap_[2*i+1] - cap_[2*i]); 308 submatch_ = submatch; 311 submatch_[i] = NULL;
|