Home | History | Annotate | Download | only in cctest

Lines Matching refs:property

926 static v8::Handle<Value> GetKnurd(Local<String> property, const AccessorInfo&) {
1078 v8::Handle<Value> CheckThisNamedPropertySetter(Local<String> property,
1095 v8::Handle<v8::Boolean> CheckThisNamedPropertyQuery(Local<String> property,
1113 Local<String> property,
1455 // Make sure we do not find the hidden property.
1466 // Add another property and delete it afterwards to force the object in
2425 "TypeError: Cannot redefine property: defineProperty");
2471 "TypeError: Cannot redefine property: defineProperty");
2509 static v8::Handle<Value> XPropertyGetter(Local<String> property,
2513 return property;
2531 static v8::Handle<Value> SetXOnPrototypeGetter(Local<String> property,
3531 return v8::False(); // intercepted, and don't delete the property
3540 return v8::False(); // intercepted, and don't delete the property
3632 // Check that we get all the property names returned including the
4217 // Set a named and an index property on the current global
4414 // Create a property on the global object in env2.
4432 // Check that the global has been detached. No other.p property can
4445 // Create a property on the global object in env3.
4451 // Check that other.p is now the property in env3 and that we have access.
4560 // Access blocked property
4568 // Access accessible property
4641 // Attempt to get the property names of the other global object and
4692 // Add a normal property that shadows 'accessible'
5710 typedef v8::Handle<Value> (*NamedPropertyGetter)(Local<String> property,
6649 // Once in a while, the interceptor will reply that a property was not
7693 // Set up a property and a number of functions.
7715 // uses the runtime system to retreive property a whereas f2 uses global load
7732 // Failing access check to property get results in undefined.
7818 // Set an 'x' property on the Object prototype and define a
7825 // result has the 'x' property.
8096 // Set a property on the clone, verify each object.
8361 // Test that we can set a property on the global object even if there
8362 // is a read-only property in the prototype chain.
8427 // This should fail because the property is read-only
8430 // This should succeed even though the property is read-only
8438 // CHECK_EQ the property shouldn't override it, just call the setter
8444 // Forcing the property to be set should override the accessor without
8467 // Setting the property shouldn't override it, just call the setter
8473 // Getting the property when the interceptor returns an empty handle
8474 // should yield undefined, since the property isn't present on the
8480 // Forcing the property to be set should cause the value to be
8487 // the property
8509 // This should fail because the property is dont-delete.
8512 // This should succeed even though the property is dont-delete.
8547 // Deleting a property should get intercepted and nothing should
8553 // Deleting the property when the interceptor returns an empty
8554 // handle should not delete the property since it is DontDelete.
8559 // Forcing the property to be deleted should delete the value
8654 // value does not shadow an existing property in the prototype chain.