Home
last modified time | relevance | path

Searched refs:capture_name_map (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/runtime/
Druntime-regexp.cc42 FixedArray* capture_name_map) { in LookupNamedCapture() argument
47 const int named_capture_count = capture_name_map->length() >> 1; in LookupNamedCapture()
54 String* capture_name = String::cast(capture_name_map->get(name_ix)); in LookupNamedCapture()
57 maybe_capture_index = Smi::ToInt(capture_name_map->get(index_ix)); in LookupNamedCapture()
146 FixedArray* capture_name_map, int capture_count, in ParseReplacementPattern() argument
238 if (capture_name_map == nullptr) { in ParseReplacementPattern()
271 capture_name_map); in ParseReplacementPattern()
321 FixedArray* capture_name_map = nullptr; in Compile() local
326 capture_name_map = FixedArray::cast(maybe_capture_name_map); in Compile()
333 capture_name_map, capture_count, in Compile()
[all …]
/external/v8/src/regexp/
Djsregexp.h1506 Handle<FixedArray> capture_name_map; member
Dregexp-parser.cc1701 result->capture_name_map = parser.CreateCaptureNameMap(); in ParseRegExp()
Djsregexp.cc357 SetIrregexpCaptureNameMap(*data, compile_data.capture_name_map); in CompileIrregexp()