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

/external/chromium_org/v8/src/
H A Dparser.h345 int captures_started() { return captures_ == NULL ? 0 : captures_->length(); }
407 ZoneList<RegExpCapture*>* captures_; member in class:v8::internal::BASE_EMBEDDED
H A Dparser.cc4992 captures_(NULL),
5125 captures_->at(capture_index - 1) = capture;
5200 if (captures_ == NULL) {
5201 captures_ = new(zone()) ZoneList<RegExpCapture*>(2, zone());
5206 captures_->Add(NULL, zone());
5255 if (captures_ != NULL && index <= captures_->length()) {
5256 capture = captures_->at(index - 1);
/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 72 milliseconds