Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-regexp.cc951 int capture_registers = (capture_count + 1) * 2; in SearchRegExpMultiple() local
952 int32_t* last_match = NewArray<int32_t>(capture_registers); in SearchRegExpMultiple()
953 for (int i = 0; i < capture_registers; i++) { in SearchRegExpMultiple()
1058 int capture_registers = (capture_count + 1) * 2; in SearchRegExpMultiple() local
1060 isolate->factory()->NewFixedArray(capture_registers); in SearchRegExpMultiple()
1062 for (int i = 0; i < capture_registers; i++) { in SearchRegExpMultiple()
/external/v8/src/regexp/
Djsregexp.cc5514 Interval capture_registers = body->CaptureRegisters(); in ToNode() local
5515 bool needs_capture_clearing = !capture_registers.is_empty(); in ToNode()
5595 body_node = ActionNode::ClearCaptures(capture_registers, body_node); in ToNode()