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

  /external/regex-re2/re2/
nfa.cc 111 int ncapture_; // number of submatches to track member in class:re2::NFA
131 ncapture_ = 0;
168 t->capture = new const char*[ncapture_];
176 for (int i = 0; i < ncapture_; i+=2) {
252 if ((j=ip->cap()) < ncapture_) {
381 for (int i = 0; i < ncapture_; i+=2) {
436 ncapture_ = 2*nsubmatch;
443 ncapture_ = 2;
446 match_ = new const char*[ncapture_];
448 memset(match_, 0, ncapture_*sizeof match_[0])
    [all...]
regexp.cc 504 NumCapturesWalker() : ncapture_(0) {}
505 int ncapture() { return ncapture_; }
509 ncapture_++;
519 int ncapture_; member in class:re2::NumCapturesWalker

Completed in 71 milliseconds