Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-regexp.cc971 MaybeHandle<String> GetCapture(int i, bool* capture_exists) override { in GetCapture() argument
973 isolate_, match_info_, i, capture_exists); in GetCapture()
974 return (*capture_exists) ? Object::ToString(isolate_, capture_obj) in GetCapture()
992 bool capture_exists; in GetNamedCapture() local
995 GetCapture(capture_index, &capture_exists), in GetNamedCapture()
998 if (!capture_exists) { in GetNamedCapture()
1049 MaybeHandle<String> GetCapture(int i, bool* capture_exists) override { in GetCapture() argument
1052 *capture_exists = false; in GetCapture()
1055 *capture_exists = true; in GetCapture()
Druntime-strings.cc41 MaybeHandle<String> GetCapture(int i, bool* capture_exists) override { in RUNTIME_FUNCTION() argument
42 *capture_exists = false; in RUNTIME_FUNCTION()
/external/v8/src/objects/
Dstring.h263 virtual MaybeHandle<String> GetCapture(int i, bool* capture_exists) = 0;
/external/v8/src/
Dobjects.cc12017 bool capture_exists; in GetSubstitution() local
12020 isolate, capture, match->GetCapture(scaled_index, &capture_exists), in GetSubstitution()
12022 if (capture_exists) builder.AppendString(capture); in GetSubstitution()