Lines Matching refs:Local

26 void reportError(v8::Local<v8::Context> context, const v8::TryCatch& tryCatch) {
33 v8::Local<v8::String> message = tryCatch.Message()->Get();
34 v8::Local<v8::String> prefix =
37 std::vector<v8::Local<v8::Value>> arguments;
48 void reportError(v8::Local<v8::Context> context, const v8::TryCatch& tryCatch,
55 InjectedScript* getInjectedScript(v8::Local<v8::Context> context,
67 v8::Local<v8::Context> context,
68 v8::Local<v8::Array> jsonML, int maxDepth) {
79 v8::Local<v8::Value> firstValue;
84 v8::Local<v8::String> objectLiteral = toV8String(isolate, "object");
87 v8::Local<v8::Value> attributesValue;
96 v8::Local<v8::Object> attributes = attributesValue.As<v8::Object>();
97 v8::Local<v8::Value> originValue;
108 v8::Local<v8::Value> configValue;
131 v8::Local<v8::Value> jsonWrapper;
144 v8::Local<v8::Value> value;
162 v8::Local<v8::Context> context = isolate->GetCurrentContext();
163 v8::Local<v8::Object> bodyConfig = info.Data().As<v8::Object>();
165 v8::Local<v8::Value> objectValue;
175 v8::Local<v8::Object> object = objectValue.As<v8::Object>();
177 v8::Local<v8::Value> formatterValue;
187 v8::Local<v8::Object> formatter = formatterValue.As<v8::Object>();
189 v8::Local<v8::Value> bodyValue;
199 v8::Local<v8::Function> bodyFunction = bodyValue.As<v8::Function>();
201 v8::Local<v8::Value> configValue;
208 v8::Local<v8::Value> sessionIdValue;
219 v8::Local<v8::Value> groupNameValue;
230 v8::Local<v8::Value> formattedValue;
231 v8::Local<v8::Value> args[] = {object, configValue};
241 v8::Local<v8::Array> jsonML = formattedValue.As<v8::Array>();
254 v8::Local<v8::Object> object,
257 v8::Local<v8::Context> context;
267 v8::Local<v8::Value> configValue;
270 v8::Local<v8::Object> global = context->Global();
271 v8::Local<v8::Value> formattersValue;
278 v8::Local<v8::Array> formatters = formattersValue.As<v8::Array>();
279 v8::Local<v8::String> headerLiteral = toV8String(isolate, "header");
280 v8::Local<v8::String> hasBodyLiteral = toV8String(isolate, "hasBody");
282 v8::Local<v8::Value> formatterValue;
291 v8::Local<v8::Object> formatter = formatterValue.As<v8::Object>();
293 v8::Local<v8::Value> headerValue;
302 v8::Local<v8::Function> headerFunction = headerValue.As<v8::Function>();
304 v8::Local<v8::Value> formattedValue;
305 v8::Local<v8::Value> args[] = {object, configValue};
312 v8::Local<v8::Array> jsonML = formattedValue.As<v8::Array>();
314 v8::Local<v8::Value> hasBodyFunctionValue;
321 v8::Local<v8::Function> hasBodyFunction =
323 v8::Local<v8::Value> hasBodyValue;
336 v8::Local<v8::String> header;
342 v8::Local<v8::Function> bodyFunction;
344 v8::Local<v8::Object> bodyConfig = v8::Object::New(isolate);