Home | History | Annotate | Download | only in cctest

Lines Matching full:handle

49   Handle<Value> observer = CompileRun("observer");
50 Handle<Value> obj = CompileRun("obj");
51 Handle<Value> notify_fun1 = CompileRun(
53 Handle<Value> notify_fun2;
62 Handle<Value> notify_fun3;
192 Handle<Value> obj = CompileRun("obj = {};");
193 Handle<Value> observer = CompileRun(
220 Handle<Value> object;
223 Handle<Value> old_value;
229 Handle<Value> records,
233 Handle<Array> recordArray = records.As<Array>();
236 Handle<Value> record = recordArray->Get(i);
238 Handle<Object> recordObj = record.As<Object>();
262 Handle<Object> obj = Handle<Object>::Cast(CompileRun(
289 { obj, "add", "foo", Handle<Value>() },
290 { obj, "add", "1", Handle<Value>() },
296 { obj, "add", "1.1", Handle<Value>() },
309 Handle<FunctionTemplate> tmpl = FunctionTemplate::New(v8_isolate);
313 Handle<Object> proto = tmpl->GetFunction()->NewInstance();
314 Handle<Object> obj = Object::New(v8_isolate);
332 { obj, "add", "foo", Handle<Value>() }
342 { proto, "add", "bar", Handle<Value>() }
351 static int NumberOfElements(i::Handle<i::JSWeakMap> map) {
365 i::Handle<i::JSObject> observation_state =
367 i::Handle<i::JSWeakMap> callbackInfoMap =
368 i::Handle<i::JSWeakMap>::cast(i::Object::GetProperty(
370 i::Handle<i::JSWeakMap> objectInfoMap =
371 i::Handle<i::JSWeakMap>::cast(i::Object::GetProperty(
373 i::Handle<i::JSWeakMap> notifierObjectInfoMap =
374 i::Handle<i::JSWeakMap>::cast(i::Object::GetProperty(
387 static int TestObserveSecurity(Handle<Context> observer_context,
388 Handle<Context> object_context,
389 Handle<Context> mutation_context) {
393 Handle<Value> observer = CompileRun("observer");
403 Handle<Value> obj = CompileRun("obj");
531 Handle<Value> obj = CompileRun("obj");
559 Handle<Value> obj =
561 Handle<Object>::Cast(obj)
573 Handle<Value> instance = CompileRun("obj");
585 Handle<Value> foo = String::NewFromUtf8(CcTest::isolate(), "foo");
586 Handle<Value> bar = String::NewFromUtf8(CcTest::isolate(), "bar");
590 Handle<Value> instance = CompileRun("obj");
603 Handle<Value> foo = String::NewFromUtf8(CcTest::isolate(), "foo");
607 Handle<Value> instance = CompileRun("obj");
645 Handle<Value> foo = String::NewFromUtf8(CcTest::isolate(), "foo");
649 Handle<Value> object = CompileRun("obj");
668 Handle<Value> foo = String::NewFromUtf8(CcTest::isolate(), "foo");
672 Handle<Value> object = CompileRun("obj");
689 Handle<Value> foo = String::NewFromUtf8(CcTest::isolate(), "foo");
693 Handle<Value> object = CompileRun("obj");
694 Handle<Value> notifier = CompileRun("Object.getNotifier(obj)");