Home
last modified time | relevance | path

Searched refs:capture_index (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/regexp/
Dregexp-parser.cc207 int capture_index = state->capture_index(); in ParseDisjunction() local
214 capture_index CHECK_FAILED); in ParseDisjunction()
216 RegExpCapture* capture = GetCapture(capture_index); in ParseDisjunction()
226 body, is_positive, end_capture_index - capture_index, in ParseDisjunction()
227 capture_index, state->lookaround_type()); in ParseDisjunction()
895 if (index == s->capture_index()) return true; in IsInsideCaptureGroup()
897 if (index > s->capture_index()) return false; in IsInsideCaptureGroup()
Dregexp-parser.h246 int capture_index() { return disjunction_capture_index_; } in capture_index() function
/external/v8/src/runtime/
Druntime-regexp.cc52 static inline ReplacementPart SubjectCapture(int capture_index) { in SubjectCapture()
53 return ReplacementPart(SUBJECT_CAPTURE, capture_index); in SubjectCapture()