Searched refs:match_from (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-regexp-gen.cc | 1023 TNode<Smi> const match_from = in TF_BUILTIN() local 1028 Branch(SmiEqual(match_from, SmiConstant(-1)), &if_failure, &if_success); in TF_BUILTIN() 1032 CSA_ASSERT(this, TaggedIsPositiveSmi(match_from)); in TF_BUILTIN() 1033 CSA_ASSERT(this, UintPtrLessThan(SmiUntag(match_from), in TF_BUILTIN() 1040 SmiAdd(match_from, LoadStringLengthAsSmi(needle_string)); in TF_BUILTIN() 1049 match_from, SKIP_WRITE_BARRIER); in TF_BUILTIN() 1894 Node* const match_from = LoadFixedArrayElement( in RegExpPrototypeMatchBody() local 1900 match_from, match_to)); in RegExpPrototypeMatchBody() 2435 TNode<Smi> const match_from = CAST(LoadFixedArrayElement( in RegExpPrototypeSplitBody() local 2441 Branch(SmiEqual(match_from, string_length), &push_suffix_and_out, &next); in RegExpPrototypeSplitBody() [all …]
|
/external/v8/src/runtime/ |
D | runtime-regexp.cc | 77 void Apply(ReplacementStringBuilder* builder, int match_from, int match_to, 367 int match_from, int match_to, int32_t* match) { in Apply() argument 372 if (match_from > 0) builder->AddSubjectSlice(0, match_from); in Apply()
|