Home
last modified time | relevance | path

Searched refs:has_named_captures_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/runtime/
Druntime-regexp.cc941 has_named_captures_ = o->IsFixedArray(); in MatchInfoBackedMatch()
942 if (has_named_captures_) { in MatchInfoBackedMatch()
946 has_named_captures_ = false; in MatchInfoBackedMatch()
965 bool HasNamedCaptures() override { return has_named_captures_; } in HasNamedCaptures()
980 DCHECK(has_named_captures_); in GetNamedCapture()
1012 bool has_named_captures_; member in v8::internal::__anon9f5b2b110511::MatchInfoBackedMatch
1029 has_named_captures_ = !groups_obj->IsUndefined(isolate); in VectorBackedMatch()
1030 if (has_named_captures_) groups_obj_ = Handle<JSReceiver>::cast(groups_obj); in VectorBackedMatch()
1045 bool HasNamedCaptures() override { return has_named_captures_; } in HasNamedCaptures()
1061 DCHECK(has_named_captures_); in GetNamedCapture()
[all …]
/external/v8/src/regexp/
Dregexp-parser.cc45 has_named_captures_(false), in RegExpParser()
676 has_named_captures_ = true; in ParseOpenParenthesis()
769 has_named_captures_ = true; in ScanForCaptures()
994 if (has_named_captures_ || is_scanned_for_captures_) { in HasNamedCaptures()
995 return has_named_captures_; in HasNamedCaptures()
1000 return has_named_captures_; in HasNamedCaptures()
Dregexp-parser.h342 bool has_named_captures_; // Only valid after we have scanned for captures. variable