Home
last modified time | relevance | path

Searched refs:hasProperty (Results 1 – 25 of 39) sorted by relevance

12

/external/webkit/WebCore/bridge/
DNP_jsobject.cpp254 if (o->_class->hasProperty && o->_class->getProperty) { in _NPN_GetProperty()
255 if (o->_class->hasProperty(o, propertyName)) in _NPN_GetProperty()
304 if (!obj->imp->hasProperty(exec, identifierFromNPIdentifier(i->string()))) { in _NPN_RemoveProperty()
309 if (!obj->imp->hasProperty(exec, i->number())) { in _NPN_RemoveProperty()
340 bool result = obj->imp->hasProperty(exec, identifierFromNPIdentifier(i->string())); in _NPN_HasProperty()
345 bool result = obj->imp->hasProperty(exec, i->number()); in _NPN_HasProperty()
350 if (o->_class->hasProperty) in _NPN_HasProperty()
351 return o->_class->hasProperty(o, propertyName); in _NPN_HasProperty()
Dnpruntime.h282 NPHasPropertyFunctionPtr hasProperty; member
/external/webkit/WebCore/bindings/js/
DJSStorageCustom.cpp60 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName)) in deleteProperty()
86 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName)) in putDelegate()
DJSPluginElementFunctions.cpp83 if (!runtimeObject->hasProperty(exec, propertyName)) in runtimeObjectCustomGetOwnPropertySlot()
94 if (!runtimeObject->hasProperty(exec, propertyName)) in runtimeObjectCustomPut()
/external/webkit/WebCore/bridge/c/
Dc_class.cpp107 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){ in fieldNamed()
/external/webkit/WebCore/bindings/v8/
DV8NPObject.cpp167 if (npObject->_class->hasProperty && npObject->_class->hasProperty(npObject, identifier) in npObjectGetProperty()
234 if (npObject->_class->hasProperty && npObject->_class->hasProperty(npObject, identifier) in npObjectSetProperty()
DNPV8Object.cpp310 if (npObject->_class->hasProperty && npObject->_class->getProperty) { in _NPN_GetProperty()
311 if (npObject->_class->hasProperty(npObject, propertyName)) in _NPN_GetProperty()
385 if (npObject->_class->hasProperty) in _NPN_HasProperty()
386 return npObject->_class->hasProperty(npObject, propertyName); in _NPN_HasProperty()
/external/webkit/JavaScriptCore/API/
DJSClassRef.cpp46 , hasProperty(definition->hasProperty) in OpaqueJSClass()
DJSClassRef.h97 JSObjectHasPropertyCallback hasProperty; member
DJSCallbackObjectFunctions.h117 if (JSObjectHasPropertyCallback hasProperty = jsClass->hasProperty) { in getOwnPropertySlot() local
121 if (hasProperty(ctx, thisRef, propertyNameRef.get())) { in getOwnPropertySlot()
DJSObjectRef.cpp259 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData())); in JSObjectHasProperty()
289 if (attributes && !jsObject->hasProperty(exec, name)) in JSObjectSetProperty()
DJSObjectRef.h355 JSObjectHasPropertyCallback hasProperty; member
/external/webkit/JavaScriptCore/runtime/
DJSPropertyNameIterator.h110 if (m_object->hasProperty(exec, *m_position)) in next()
DJSObject.cpp189 bool JSObject::hasProperty(ExecState* exec, const Identifier& propertyName) const in hasProperty() function in JSC::JSObject
195 bool JSObject::hasProperty(ExecState* exec, unsigned propertyName) const in hasProperty() function in JSC::JSObject
DJSObject.h110 bool hasProperty(ExecState*, const Identifier& propertyName) const;
111 bool hasProperty(ExecState*, unsigned propertyName) const;
/external/webkit/WebKit/mac/Plugins/Hosted/
DNetscapePluginInstanceProxy.h126 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName);
127 bool hasProperty(uint32_t objectID, unsigned propertyName);
DNetscapePluginInstanceProxy.mm921 if (!object->hasProperty(exec, propertyName)) {
946 if (!object->hasProperty(exec, propertyName)) {
957 bool NetscapePluginInstanceProxy::hasProperty(uint32_t objectID, const Identifier& propertyName)
971 bool result = object->hasProperty(exec, propertyName);
977 bool NetscapePluginInstanceProxy::hasProperty(uint32_t objectID, unsigned propertyName)
991 bool result = object->hasProperty(exec, propertyName);
DNetscapePluginHostProxy.mm785 returnValue = instanceProxy->hasProperty(objectID, propertyNameIdentifier);
787 returnValue = instanceProxy->hasProperty(objectID, identifier->number());
/external/webkit/V8Binding/npapi/
Dnpruntime.h282 NPHasPropertyFunctionPtr hasProperty; member
/external/webkit/JavaScriptGlue/
DJSUtils.cpp331 if (object->hasProperty(exec, propName)) in KJSValueToCFTypeInternal()
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp539 if (!exception->hasProperty(callFrame, Identifier(callFrame, "line")) && in throwException()
540 !exception->hasProperty(callFrame, Identifier(callFrame, "sourceId")) && in throwException()
541 !exception->hasProperty(callFrame, Identifier(callFrame, "sourceURL")) && in throwException()
542 … !exception->hasProperty(callFrame, Identifier(callFrame, expressionBeginOffsetPropertyName)) && in throwException()
543 … !exception->hasProperty(callFrame, Identifier(callFrame, expressionCaretOffsetPropertyName)) && in throwException()
544 … !exception->hasProperty(callFrame, Identifier(callFrame, expressionEndOffsetPropertyName))) { in throwException()
844 if (!variableObject->hasProperty(callFrame, ident)) { in execute()
1948 callFrame->r(dst) = jsBoolean(baseObj->hasProperty(callFrame, i)); in privateExecute()
1952 callFrame->r(dst) = jsBoolean(baseObj->hasProperty(callFrame, property)); in privateExecute()
/external/webkit/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
DJavaScriptCore_debug.def153 ?hasProperty@JSObject@JSC@@QBE_NPAVExecState@2@ABVIdentifier@2@@Z
154 ?hasProperty@JSObject@JSC@@QBE_NPAVExecState@2@I@Z
DJavaScriptCore.def155 ?hasProperty@JSObject@JSC@@QBE_NPAVExecState@2@ABVIdentifier@2@@Z
156 ?hasProperty@JSObject@JSC@@QBE_NPAVExecState@2@I@Z
/external/webkit/JavaScriptCore/
DChangeLog-2002-12-03413 (ActivationImp::hasProperty): Special case for arguments, return true.
459 (ArrayInstanceImp::hasProperty): Ditto.
546 (FunctionImp::hasProperty): Ditto.
777 (StringInstanceImp::hasProperty): Return true for length.
893 (ObjectImp::hasProperty): Use it.
1611 (ArrayInstanceImp::hasProperty): Use a local variable, and also check against
1624 (ArrayInstanceImp::hasProperty):
1643 (ArrayInstanceImp::hasProperty):
1695 (ArrayInstanceImp::hasProperty): Implement both the old version and the new overload that
1723 …(ObjectImp::hasProperty): Call through to the string version if the numeric version is not impleme…
DChangeLog-2003-10-25247 (ArrayInstanceImp::hasProperty): Ditto.
256 … (StringInstanceImp::hasProperty): Return true for property names that are suitable array indices.
362 (ArrayInstanceImp::hasProperty): Ditto.
389 (ArrayInstanceImp::hasProperty): Ditto.
604 getDirect() instead of hasProperty().
659 (ObjectImp::hasProperty): Same thing here.

12