Lines Matching defs:capture
51 // Looks up the capture of the given name. Returns the (1-based) numbered
52 // capture index or -1 on failure.
140 // tag == SUBJECT_CAPTURE: data is the number of the capture.
276 // Let capture be ? Get(namedCaptures, groupName).
284 // If capture is undefined or does not exist, replace the text
287 // ? ToString(capture).
394 int capture = part.data;
395 int from = match[capture * 2];
396 int to = match[capture * 2 + 1];
633 // Ensure the RegExp is compiled so we can access the capture-name map.
1263 // subject, i.e., 3 + capture count in total. If the RegExp contains
1577 Handle<String> capture =
1580 argv[cursor++] = capture;
1772 Handle<Object> capture;
1774 isolate, capture, Object::GetElement(isolate, result, i));
1775 elems = FixedArray::SetAndGrow(isolate, elems, num_elems++, capture);
1917 Handle<Object> capture;
1919 isolate, capture, Object::GetElement(isolate, result, n));
1921 if (!capture->IsUndefined(isolate)) {
1922 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, capture,
1923 Object::ToString(isolate, capture));
1925 captures.emplace_back(capture);