Lines Matching defs:isolate
23 v8::Isolate* isolate = m_inspector->isolate();
24 v8::HandleScope handleScope(isolate);
27 DCHECK(isolate->IsExecutionTerminating());
32 v8::TryCatch tryCatch(isolate);
39 if (v8::RegExp::New(context, toV8String(isolate, pattern),
42 m_regex.Reset(isolate, regex);
44 m_errorMessage = toProtocolString(isolate, tryCatch.Message()->Get());
58 v8::Isolate* isolate = m_inspector->isolate();
59 v8::HandleScope handleScope(isolate);
62 DCHECK(isolate->IsExecutionTerminating());
66 v8::MicrotasksScope microtasks(isolate,
68 v8::TryCatch tryCatch(isolate);
70 v8::Local<v8::RegExp> regex = m_regex.Get(isolate);
72 if (!regex->Get(context, toV8StringInternalized(isolate, "exec"))
76 toV8String(isolate, string.substring(startFrom))};
95 if (!result->Get(context, toV8StringInternalized(isolate, "index"))