HomeSort by relevance Sort by last modified time
    Searched defs:hasProperty (Results 1 - 17 of 17) sorted by null

  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeObjectFromDestroyedPlugin.cpp 44 bool hasProperty(NPIdentifier propertyName)
NPDeallocateCalledBeforeNPShutdown.cpp 53 bool hasProperty(NPIdentifier propertyName)
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectMessageReceiver.cpp 130 void NPObjectMessageReceiver::hasProperty(const NPIdentifierData& propertyNameData, bool& returnValue)
132 if (!m_npObject->_class->hasProperty) {
137 returnValue = m_npObject->_class->hasProperty(m_npObject, propertyNameData.createNPIdentifier());
NPObjectProxy.cpp 154 bool NPObjectProxy::hasProperty(NPIdentifier propertyName)
163 if (!m_npRemoteObjectMap->connection()->sendSync(Messages::NPObjectMessageReceiver::HasProperty(propertyNameData), Messages::NPObjectMessageReceiver::HasProperty::Reply(returnValue), m_npObjectID))
317 return toNPObjectProxy(npObject)->hasProperty(propertyName);
  /external/chromium/webkit/glue/
cpp_bound_class.cc 89 static bool hasProperty(NPObject *obj, NPIdentifier ident);
125 CppNPObject::hasProperty,
149 /* static */ bool CppNPObject::hasProperty(NPObject* np_obj,
152 return obj->bound_class->HasProperty(ident);
198 bool CppBoundClass::HasProperty(NPIdentifier ident) const {
  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.h 103 JSObjectHasPropertyCallback 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/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.h 49 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
142 bool hasProperty(NPIdentifier propertyName)
194 return static_cast<T*>(npObject)->hasProperty(propertyName);
  /external/webkit/Tools/DumpRenderTree/chromium/
CppBoundClass.cpp 115 static bool hasProperty(NPObject*, NPIdentifier);
149 CppNPObject::hasProperty,
175 bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident)
178 return obj->boundClass->hasProperty(ident);
219 bool CppBoundClass::hasProperty(NPIdentifier ident) const
  /frameworks/base/libs/utils/
PropertyMap.cpp 54 bool PropertyMap::hasProperty(const String8& key) const {
204 if (mMap->hasProperty(keyToken)) {
  /external/llvm/utils/TableGen/
CodeGenTarget.h 186 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 111 bool WebBindings::hasProperty(NPP npp, NPObject* object, NPIdentifier property)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.cpp 139 bool NPJSObject::hasProperty(NPIdentifier identifier)
151 result = m_jsObject->hasProperty(exec, identifierFromIdentifierRep(exec, identifierRep));
153 result = m_jsObject->hasProperty(exec, identifierRep->number());
212 if (!m_jsObject->hasProperty(exec, identifier)) {
219 if (!m_jsObject->hasProperty(exec, identifierRep->number())) {
356 return toNPJSObject(npObject)->hasProperty(propertyName);
  /libcore/dom/src/test/java/org/w3c/domts/
LSDocumentBuilderFactory.java 362 private boolean hasProperty(String parameter) {
378 return!hasProperty("cdata-sections");
386 return!hasProperty("entities");
395 return!hasProperty("element-content-whitespace");
403 return hasProperty("namespaces");
411 return hasProperty("validate");
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 204 bool JSObject::hasProperty(ExecState* exec, const Identifier& propertyName) const
210 bool JSObject::hasProperty(ExecState* exec, unsigned propertyName) const
  /external/webkit/Source/WebCore/bridge/
npruntime.h 304 NPHasPropertyFunctionPtr hasProperty;
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 632 milliseconds