• Home
  • Raw
  • Download

Lines Matching refs:match_indices

309   Node* match_indices;  in RegExpPrototypeExecBodyWithoutResult()  local
320 match_indices = CallStub(exec_callable, context, regexp, string, in RegExpPrototypeExecBodyWithoutResult()
322 var_result.Bind(match_indices); in RegExpPrototypeExecBodyWithoutResult()
326 GotoIfNot(WordEqual(match_indices, null), &successful_match); in RegExpPrototypeExecBodyWithoutResult()
340 match_indices, RegExpMatchInfo::kFirstCaptureIndex + 1); in RegExpPrototypeExecBodyWithoutResult()
366 Node* const match_indices = indices_or_null; in RegExpPrototypeExecBody() local
368 ConstructNewResultFromMatchInfo(context, regexp, match_indices, string); in RegExpPrototypeExecBody()
1344 Node* const match_indices = RegExpExec(context, receiver, string); in TF_BUILTIN() local
1348 SelectBooleanConstant(WordNotEqual(match_indices, NullConstant())); in TF_BUILTIN()
1614 Node* const match_indices = RegExpPrototypeExecBodyWithoutResult( in RegExpPrototypeMatchBody() local
1618 match_indices, RegExpMatchInfo::kFirstCaptureIndex); in RegExpPrototypeMatchBody()
1620 match_indices, RegExpMatchInfo::kFirstCaptureIndex + 1); in RegExpPrototypeMatchBody()
1757 Node* const match_indices = RegExpPrototypeExecBodyWithoutResult( in RegExpPrototypeSearchBodyFast() local
1767 match_indices, RegExpMatchInfo::kFirstCaptureIndex); in RegExpPrototypeSearchBodyFast()
1916 Node* const match_indices = CallStub(exec_callable, context, regexp, in RegExpPrototypeSplitBody() local
1920 Branch(WordEqual(match_indices, null), &return_singleton_array, in RegExpPrototypeSplitBody()
1976 Node* const match_indices = CallStub(exec_callable, context, regexp, string, in RegExpPrototypeSplitBody() local
1982 Branch(WordEqual(match_indices, null), &push_suffix_and_out, &next); in RegExpPrototypeSplitBody()
1987 match_indices, RegExpMatchInfo::kFirstCaptureIndex); in RegExpPrototypeSplitBody()
1997 match_indices, RegExpMatchInfo::kFirstCaptureIndex + 1); in RegExpPrototypeSplitBody()
2029 match_indices, RegExpMatchInfo::kNumberOfCapturesIndex); in RegExpPrototypeSplitBody()
2046 match_indices, reg, in RegExpPrototypeSplitBody()
2049 match_indices, reg, in RegExpPrototypeSplitBody()
2458 Node* const match_indices = RegExpPrototypeExecBodyWithoutResult( in ReplaceSimpleStringFastPath() local
2465 match_indices, RegExpMatchInfo::kFirstCaptureIndex); in ReplaceSimpleStringFastPath()
2467 match_indices, RegExpMatchInfo::kFirstCaptureIndex + 1); in ReplaceSimpleStringFastPath()
2652 Node* const match_indices = CallStub(exec_callable, context, regexp, string, in TF_BUILTIN() local
2656 Branch(WordEqual(match_indices, null), &if_didnotmatch, &if_matched); in TF_BUILTIN()
2664 ConstructNewResultFromMatchInfo(context, regexp, match_indices, string); in TF_BUILTIN()