Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/runtime/
Druntime-regexp.cc1021 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()
Druntime-strings.cc43 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/
Dstring.cc1367 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()
Dstring.h342 virtual MaybeHandle<String> GetCapture(int i, bool* capture_exists) = 0;