Home
last modified time | relevance | path

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

/external/v8/src/builtins/
Dbuiltins-regexp-gen.cc1023 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/
Druntime-regexp.cc77 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()