Home | History | Annotate | Download | only in include

Lines Matching refs:property

1181   // Sets a local property on this object bypassing interceptors and
1184 // Note that if the object has an interceptor the property will be set
1185 // locally, but since the interceptor takes precedence the local property
1201 // Delete a property on this object bypassing interceptors and
1263 * If result.IsEmpty() no real property was located in the prototype chain.
1269 * If result.IsEmpty() no real property was located on the object or
1290 * a hidden property on the object to store the identity hash.
1439 /** Adds a property to each instance created by this template.*/
1485 * of the property access.
1505 * setting|getting a particular property. See objectTemplate::SetAccessor.
1507 typedef Handle<Value> (*AccessorGetter)(Local<String> property,
1511 typedef void (*AccessorSetter)(Local<String> property,
1520 typedef Handle<Value> (*NamedPropertyGetter)(Local<String> property,
1528 typedef Handle<Value> (*NamedPropertySetter)(Local<String> property,
1535 * The result is true if the property exists and false otherwise.
1537 typedef Handle<Boolean> (*NamedPropertyQuery)(Local<String> property,
1543 * The return value is true if the property could be deleted and false
1546 typedef Handle<Boolean> (*NamedPropertyDeleter)(Local<String> property,
1551 * property getter intercepts.
1557 * Returns the value of the property if the getter intercepts the
1575 * The result is true if the property exists and false otherwise.
1582 * The return value is true if the property could be deleted and false
1590 * indexed property getter intercepts.
1630 * property with the given key on the host object.
1640 * property with the given index on the host object.
1843 * Whenever the property with the given name is accessed on objects
1845 * are called instead of getting and setting the property directly
1848 * \param name The name of the property for which an accessor is added.
1849 * \param getter The callback to invoke when getting the property.
1850 * \param setter The callback to invoke when setting the property.
1861 * \param attribute The attributes of the property for which an accessor
1872 * Sets a named property handler on the object template.
1874 * Whenever a named property is accessed on objects created from
1876 * accessing the property directly on the JavaScript object.
1878 * \param getter The callback to invoke when getting a property.
1879 * \param setter The callback to invoke when setting a property.
1880 * \param query The callback to invoke to check is an object has a property.
1881 * \param deleter The callback to invoke when deleting a property.
1895 * Sets an indexed property handler on the object template.
1897 * Whenever an indexed property is accessed on objects created from
1899 * accessing the property directly on the JavaScript object.
1901 * \param getter The callback to invoke when getting a property.
1902 * \param setter The callback to invoke when setting a property.
1903 * \param query The callback to invoke to check is an object has a property.
1904 * \param deleter The callback to invoke when deleting a property.
2549 * Returns the .stack property of the thrown object. If no .stack
2550 * property is present an empty handle is returned.