Home
last modified time | relevance | path

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

/external/v8/src/builtins/
Dbuiltins-regexp-gen.cc729 TNode<HeapObject> match_indices; in RegExpPrototypeExecBodyWithoutResult() local
739 match_indices = RegExpExecInternal(context, regexp, string, in RegExpPrototypeExecBodyWithoutResult()
741 var_result = match_indices; in RegExpPrototypeExecBodyWithoutResult()
745 GotoIfNot(IsNull(match_indices), &successful_match); in RegExpPrototypeExecBodyWithoutResult()
759 CAST(match_indices), RegExpMatchInfo::kFirstCaptureIndex + 1)); in RegExpPrototypeExecBodyWithoutResult()
777 TNode<RegExpMatchInfo> match_indices = RegExpPrototypeExecBodyWithoutResult( in RegExpPrototypeExecBody() local
783 match_indices, string); in RegExpPrototypeExecBody()
1758 TNode<HeapObject> match_indices = in TF_BUILTIN() local
1762 Return(SelectBooleanConstant(IsNotNull(match_indices))); in TF_BUILTIN()
1890 TNode<RegExpMatchInfo> match_indices = in RegExpPrototypeMatchBody() local
[all …]
/external/v8/src/runtime/
Druntime-regexp.cc595 int32_t match_indices[] = {indices->back(), indices->back() + pattern_len}; in StringReplaceGlobalAtomRegExpWithString() local
597 match_indices); in StringReplaceGlobalAtomRegExpWithString()
1341 auto match_indices = Handle<RegExpMatchInfo>::cast(match_indices_obj); in RegExpReplace() local
1343 const int start_index = match_indices->Capture(0); in RegExpReplace()
1344 const int end_index = match_indices->Capture(1); in RegExpReplace()
1353 MatchInfoBackedMatch m(isolate, regexp, string, match_indices); in RegExpReplace()
1465 Handle<RegExpMatchInfo> match_indices = in RUNTIME_FUNCTION() local
1468 const int index = match_indices->Capture(0); in RUNTIME_FUNCTION()
1469 const int end_of_match = match_indices->Capture(1); in RUNTIME_FUNCTION()
1482 const int m = match_indices->NumberOfCaptureRegisters() / 2; in RUNTIME_FUNCTION()
[all …]