Lines Matching refs:Local
34 using ::v8::Local;
41 v8::Local<v8::String> var_name = v8_str("x"); in TEST()
44 v8::Local<v8::Script> script = v8_compile("\"use strict\"; x = 42;"); in TEST()
45 v8::Local<v8::Object> proto = v8::Object::New(CcTest::isolate()); in TEST()
46 v8::Local<v8::Object> global = in TEST()
62 v8::Local<Context> env2 = Context::New(env1->GetIsolate()); in TEST()
64 Local<Value> token = v8_str("foo"); in TEST()
79 Local<Array> result; in TEST()
80 result = Local<Array>::Cast(CompileRun("Object.keys(global2)")); in TEST()
92 Local<Array>::Cast(CompileRun("Object.getOwnPropertyNames(global2)")); in TEST()
102 result = Local<Array>::Cast(CompileRun("Object.keys(global2)")); in TEST()
105 Local<Array>::Cast(CompileRun("Object.getOwnPropertyNames(global2)")); in TEST()