Lines Matching refs:v8_str

71   fun_templ->InstanceTemplate()->SetAccessor(v8_str("foo"), handle_property);
76 InstanceTemplate()->SetAccessorProperty(v8_str("bar"), getter_templ);
78 SetNativeDataProperty(v8_str("instance_foo"), handle_property);
79 fun_templ->SetNativeDataProperty(v8_str("object_foo"), handle_property_2);
81 env->Global()->Set(v8_str("Fun"), fun);
128 v8_str("foo"), GetIntValue, SetIntValue,
131 v8_str("bar"), GetIntValue, SetIntValue,
134 v8_str("baz"), GetIntValue, SetIntValue,
199 obj->SetAccessor(v8_str("x0"), XGetter, XSetter);
200 obj->SetAccessorProperty(v8_str("x1"),
204 context->Global()->Set(v8_str("holder"), x_holder);
206 context->Global()->Set(v8_str("obj"), x_receiver);
248 obj->SetAccessor(v8_str("one"), HandleAllocatingGetter<1>);
249 obj->SetAccessor(v8_str("many"), HandleAllocatingGetter<1024>);
293 obj->SetAccessor(v8_str("xxx"),
323 obj->SetAccessor(v8_str("xxx"), EmptyGetter, NULL,
343 obj->SetAccessor(v8_str("xxx"), EmptyGetter, NULL,
357 obj->SetAccessor(v8_str("xxx"),
378 info.GetIsolate()->ThrowException(v8_str("g"));
394 obj->SetAccessor(v8_str("x"),
399 env->Global()->Set(v8_str("obj"), obj->NewInstance());
404 result = Script::Compile(v8_str(
409 CHECK_EQ(v8_str("ggggg"), result);
417 CHECK_EQ(v8_str("01234"), result);
433 obj->SetAccessor(v8_str("xxx"), AllocGetter);
434 env->Global()->Set(v8_str("obj"), obj->NewInstance());
468 obj->SetAccessor(v8_str("xxx"), StackCheck);
469 env->Global()->Set(v8_str("obj"), obj->NewInstance());
497 obj->SetAccessor(v8_str("xxx"), AllocateHandles);
498 env->Global()->Set(v8_str("obj"), obj->NewInstance());
511 array->Set(0, v8_str("regress"));
518 info.GetReturnValue().Set(v8_str("crbug-161028"));
530 env->Global()->Set(v8_str("obj"), obj->NewInstance());
531 v8::Handle<v8::String> expected = v8_str("{\"regress\":\"crbug-161028\"}");
553 switch_context->Global()->Set(v8_str("fun"), fun);