Searched refs:capture_exists (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/runtime/ |
D | runtime-regexp.cc | 1021 MaybeHandle<String> GetCapture(int i, bool* capture_exists) override { in GetCapture() argument 1023 isolate_, match_info_, i, capture_exists); in GetCapture() 1024 return (*capture_exists) ? Object::ToString(isolate_, capture_obj) in GetCapture() 1042 bool capture_exists; in GetNamedCapture() local 1045 GetCapture(capture_index, &capture_exists), in GetNamedCapture() 1048 if (!capture_exists) { in GetNamedCapture() 1099 MaybeHandle<String> GetCapture(int i, bool* capture_exists) override { in GetCapture() argument 1102 *capture_exists = false; in GetCapture() 1105 *capture_exists = true; in GetCapture()
|
D | runtime-strings.cc | 43 MaybeHandle<String> GetCapture(int i, bool* capture_exists) override { in RUNTIME_FUNCTION() argument 44 *capture_exists = false; in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/objects/ |
D | string.cc | 1367 bool capture_exists; in GetSubstitution() local 1370 isolate, capture, match->GetCapture(scaled_index, &capture_exists), in GetSubstitution() 1372 if (capture_exists) builder.AppendString(capture); in GetSubstitution()
|
D | string.h | 342 virtual MaybeHandle<String> GetCapture(int i, bool* capture_exists) = 0;
|