Home
last modified time | relevance | path

Searched refs:previous_index (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/regexp/
Dregexp-macro-assembler.cc372 int previous_index, Isolate* isolate) { in Match() argument
374 DCHECK_LE(0, previous_index); in Match()
375 DCHECK_LE(previous_index, subject->length()); in Match()
383 int start_offset = previous_index; in Match()
Dregexp-macro-assembler.h300 int previous_index, Isolate* isolate);
Dregexp.cc729 int previous_index, Handle<RegExpMatchInfo> last_match_info, in IrregexpExec() argument
775 RegExpImpl::IrregexpExecRaw(isolate, regexp, subject, previous_index, in IrregexpExec()
789 previous_index, last_match_info); in IrregexpExec()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-printer.cc375 int previous_index = 0; in DoPrintElements() local
388 ss << previous_index; in DoPrintElements()
389 if (previous_index != i - 1) { in DoPrintElements()
398 previous_index = i; in DoPrintElements()
407 size_t previous_index = 0; in PrintTypedArrayElements() local
423 ss << previous_index; in PrintTypedArrayElements()
424 if (previous_index != i - 1) { in PrintTypedArrayElements()
428 previous_index = i; in PrintTypedArrayElements()
438 int previous_index = 0; in PrintFixedArrayElements() local
447 ss << previous_index; in PrintFixedArrayElements()
[all …]
/third_party/gn/src/gn/
Dvalue_extractors.cc74 size_t previous_index = dest->IndexOf(new_one); in ListValueUniqueExtractor() local
76 Err(input_list[previous_index], "This was the previous definition.")); in ListValueUniqueExtractor()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c2163 uint32_t previous_index = 0; in ecma_regexp_split_helper() local
2219 if (previous_index == end_index) in ecma_regexp_split_helper()
2227 ecma_string_t *const split_str_p = ecma_string_substr (string_p, previous_index, current_index); in ecma_regexp_split_helper()
2245 previous_index = end_index; in ecma_regexp_split_helper()
2295 ecma_string_t *const end_str_p = ecma_string_substr (string_p, previous_index, string_length); in ecma_regexp_split_helper()