Searched refs:capture_exists (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/runtime/ |
D | runtime-regexp.cc | 971 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()
|
D | runtime-strings.cc | 41 MaybeHandle<String> GetCapture(int i, bool* capture_exists) override { in RUNTIME_FUNCTION() argument 42 *capture_exists = false; in RUNTIME_FUNCTION()
|
/external/v8/src/objects/ |
D | string.h | 263 virtual MaybeHandle<String> GetCapture(int i, bool* capture_exists) = 0;
|
/external/v8/src/ |
D | objects.cc | 12017 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()
|