Lines Matching defs:context
10 #include "include/v8-context.h"
25 v8::Local<v8::Context> context;
26 if (!m_inspector->regexContext().ToLocal(&context)) {
31 v8::Context::Scope contextScope(context);
39 if (v8::RegExp::New(context, toV8String(isolate, pattern),
60 v8::Local<v8::Context> context;
61 if (!m_inspector->regexContext().ToLocal(&context)) {
65 v8::Context::Scope contextScope(context);
72 if (!regex->Get(context, toV8StringInternalized(isolate, "exec"))
79 ->Call(context, regex, arraysize(argv), argv)
95 if (!result->Get(context, toV8StringInternalized(isolate, "index"))
100 if (!result->Get(context, 0).ToLocal(&match)) return -1;