/external/webkit/Source/JavaScriptCore/API/ |
JSClassRef.h | 103 JSObjectHasPropertyCallback hasProperty;
|
JSClassRef.cpp | 64 , hasProperty(definition->hasProperty)
|
JSObjectRef.h | 119 @discussion If you named your function HasProperty, you would declare it like this: 121 bool HasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName); 123 If this function returns false, the hasProperty request forwards to object's statically declared properties, then its parent class chain (which includes the default object class), then its prototype chain. 127 If this callback is NULL, the getProperty callback will be used to service hasProperty requests. 321 @field hasProperty The callback invoked when determining whether an object has a property. If this field is NULL, getProperty is called instead. The hasProperty callback enables optimization in cases where only a property's existence needs to be known, not its value, and computing its value is expensive. 341 A NULL callback specifies that the default object callback should substitute, except in the case of hasProperty, where it specifies that getProperty should substitute. 355 JSObjectHasPropertyCallback hasProperty; [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
JSPropertyNameIterator.cpp | 93 if (!base->hasProperty(exec, Identifier(exec, asString(identifier)->value(exec))))
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.1.4-1.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-10.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-2.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-3.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-4.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-5.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-6.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-7.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-8.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
10.1.4-9.js | 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
|
/external/webkit/Source/WebCore/bindings/v8/ |
V8NPObject.cpp | 187 if (npObject->_class->hasProperty && npObject->_class->hasProperty(npObject, identifier) 262 if (npObject->_class->hasProperty && npObject->_class->hasProperty(npObject, identifier)
|
NPV8Object.cpp | 327 if (npObject->_class->hasProperty && npObject->_class->getProperty) { 328 if (npObject->_class->hasProperty(npObject, propertyName)) 405 if (npObject->_class->hasProperty) 406 return npObject->_class->hasProperty(npObject, propertyName);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
NPJSObject.h | 70 bool hasProperty(NPIdentifier propertyName);
|
/frameworks/base/include/utils/ |
PropertyMap.h | 63 bool hasProperty(const String8& key) const;
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
CppVariant.cpp | 260 if (!WebBindings::hasProperty(0, npValue, lengthId)) 283 if (!WebBindings::hasProperty(0, npValue, indexId))
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
NetscapePluginInstanceProxy.h | 125 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName); 126 bool hasProperty(uint32_t objectID, unsigned propertyName);
|
NetscapePluginInstanceProxy.mm | [all...] |
/external/chromium/webkit/glue/ |
cpp_bound_class.h | 165 bool HasProperty(NPIdentifier ident) const;
|
/external/llvm/utils/TableGen/ |
CodeGenTarget.h | 186 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
|
DAGISelMatcherEmitter.cpp | 394 if (Pattern.hasProperty(SDNPHasChain)) 649 if (P.hasProperty(SDNPHasChain)) 659 if (P.hasProperty(SDNPWantRoot)) 664 if (P.hasProperty(SDNPWantParent))
|
/external/webkit/Source/WebCore/ |
ChangeLog-2005-08-23 | [all...] |