Home
last modified time | relevance | path

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

/external/v8/src/builtins/
Dbuiltins-regexp.cc1619 Node* const match_to = LoadFixedArrayElement( in RegExpPrototypeMatchBody() local
1622 Node* match = SubString(context, string, match_from, match_to); in RegExpPrototypeMatchBody()
1996 Node* const match_to = LoadFixedArrayElement( in RegExpPrototypeSplitBody() local
2003 GotoIfNot(SmiEqual(match_to, next_search_from), &next); in RegExpPrototypeSplitBody()
2004 GotoIfNot(SmiEqual(match_to, last_matched_until), &next); in RegExpPrototypeSplitBody()
2087 var_last_matched_until.Bind(match_to); in RegExpPrototypeSplitBody()
2088 var_next_search_from.Bind(match_to); in RegExpPrototypeSplitBody()
/external/v8/src/runtime/
Druntime-regexp.cc30 void Apply(ReplacementStringBuilder* builder, int match_from, int match_to,
249 int match_from, int match_to, int32_t* match) { in Apply() argument
259 if (match_to < subject_length) { in Apply()
260 builder->AddSubjectSlice(match_to, subject_length); in Apply()