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

/external/v8/src/
H A Dparser.h351 int captures_started() { return captures_ == NULL ? 0 : captures_->length(); }
411 ZoneList<RegExpCapture*>* captures_; member in class:v8::internal::RegExpParser
H A Dparser.cc5028 captures_(NULL),
5159 captures_->at(capture_index - 1) = capture;
5233 if (captures_ == NULL) {
5234 captures_ = new(zone()) ZoneList<RegExpCapture*>(2);
5239 captures_->Add(NULL);
5289 if (captures_ != NULL && index <= captures_->length()) {
5290 capture = captures_->at(index - 1);

Completed in 76 milliseconds