Home | History | Annotate | Download | only in cctest

Lines Matching defs:named

2783 // Test of the stepping mechanism for named load in a loop.
2791 // Create a function for testing stepping of named load.
2834 // Create a function for testing stepping of named store.
2862 // Test of the stepping mechanism for named load in a loop.
4183 // Create object with named interceptor.
4184 v8::Handle<v8::ObjectTemplate> named = v8::ObjectTemplate::New();
4185 named->SetNamedPropertyHandler(NamedGetter, NULL, NULL, NULL, NamedEnum);
4187 named->NewInstance());
4199 // Create object with both named and indexed interceptor.
4237 // 1 is PropertyKind.Named;
4245 // 3 is PropertyKind.Named | PropertyKind.Indexed;
4249 // Get the interceptor properties for the object with only named interceptor.
4416 // Create object with named accessor.
4417 v8::Handle<v8::ObjectTemplate> named = v8::ObjectTemplate::New();
4418 named->SetAccessor(name, &ProtperyXNativeGetter, NULL,
4421 // Create object with named property getter.
4422 env->Global()->Set(v8::String::New("instance"), named->NewInstance());
4453 // Create object with named accessor.
4454 v8::Handle<v8::ObjectTemplate> named = v8::ObjectTemplate::New();
4455 named->SetAccessor(name, &ProtperyXNativeGetterThrowingError, NULL,
4458 // Create object with named property getter.
4459 env->Global()->Set(v8::String::New("instance"), named->NewInstance());
6916 v8::Handle<v8::ObjectTemplate> named = v8::ObjectTemplate::New();
6917 named->SetAccessor(v8::String::New("a"),
6920 named->NewInstance());