Home
last modified time | relevance | path

Searched refs:captures_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
Dparser.h263 int captures_started() { return captures_ == NULL ? 0 : captures_->length(); } in captures_started()
325 ZoneList<RegExpCapture*>* captures_; variable
Dparser.cc4073 captures_(NULL), in RegExpParser()
4206 captures_->at(capture_index - 1) = capture; in ParseDisjunction()
4281 if (captures_ == NULL) { in ParseDisjunction()
4282 captures_ = new(zone()) ZoneList<RegExpCapture*>(2, zone()); in ParseDisjunction()
4287 captures_->Add(NULL, zone()); in ParseDisjunction()
4336 if (captures_ != NULL && index <= captures_->length()) { in ParseDisjunction()
4337 capture = captures_->at(index - 1); in ParseDisjunction()