/external/clang/test/SemaCXX/ |
blocks.cpp | 50 __attribute__((__blocks__(byref))) bool hasProperty = false; 54 func(hasProperty); 55 if (hasProperty) 56 hasProperty = 0; 58 hasProperty = 1; 59 return hasProperty; 61 func(hasProperty); 64 if (hasProperty) 65 hasProperty = 1; 68 return hasProperty = 1 [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSHTMLCanvasElementCustom.cpp | 65 if (jsAttrs->hasProperty(exec, alpha)) 68 if (jsAttrs->hasProperty(exec, depth)) 71 if (jsAttrs->hasProperty(exec, stencil)) 74 if (jsAttrs->hasProperty(exec, antialias)) 77 if (jsAttrs->hasProperty(exec, premultipliedAlpha)) 80 if (jsAttrs->hasProperty(exec, preserveDrawingBuffer))
|
JSDOMStringMapCustom.cpp | 61 // Since hasProperty() would end up calling canGetItemsForName() and be fooled, we need to check 68 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName)) 81 // Since hasProperty() would end up calling canGetItemsForName() and be fooled, we need to check 88 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
|
JSStorageCustom.cpp | 53 // Since hasProperty() would end up calling canGetItemsForName() and be fooled, we need to check 60 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName)) 79 // Since hasProperty() would end up calling canGetItemsForName() and be fooled, we need to check 86 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
|
JSPluginElementFunctions.cpp | 119 if (!scriptObject->hasProperty(exec, propertyName)) 130 if (!scriptObject->hasProperty(exec, propertyName)) 146 if (!scriptObject->hasProperty(exec, 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/WebKit2/WebProcess/Plugins/Netscape/ |
JSNPObject.cpp | 239 if (m_npObject->_class->hasProperty && m_npObject->_class->hasProperty(m_npObject, npIdentifier)) { 263 if (m_npObject->_class->hasProperty && m_npObject->_class->hasProperty(m_npObject, npIdentifier)) { 290 if (!m_npObject->_class->hasProperty || !m_npObject->_class->hasProperty(m_npObject, npIdentifier)) {
|
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);
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptfunction.cpp | 76 0, // hasProperty 136 0, // hasProperty
|
/external/webkit/Source/WebCore/bridge/ |
NP_jsobject.cpp | 323 if (o->_class->hasProperty && o->_class->getProperty) { 324 if (o->_class->hasProperty(o, propertyName)) 373 if (!obj->imp->hasProperty(exec, identifierFromNPIdentifier(exec, i->string()))) { 378 if (!obj->imp->hasProperty(exec, i->number())) { 409 bool result = obj->imp->hasProperty(exec, identifierFromNPIdentifier(exec, i->string())); 414 bool result = obj->imp->hasProperty(exec, i->number()); 419 if (o->_class->hasProperty) 420 return o->_class->hasProperty(o, propertyName);
|
/external/webkit/Source/WebCore/bridge/c/ |
c_class.cpp | 110 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
|
/external/webkit/Source/WebKit2/Shared/Plugins/ |
NPObjectMessageReceiver.messages.in | 30 HasProperty(WebKit::NPIdentifierData propertyName) -> (bool returnValue)
|
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);
|
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());
|
NPObjectMessageReceiver.h | 63 void hasProperty(const NPIdentifierData&, bool& returnValue);
|
NPObjectProxy.h | 67 bool hasProperty(NPIdentifier propertyName);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Error.cpp | 141 return error->hasProperty(exec, Identifier(exec, linePropertyName)) 142 || error->hasProperty(exec, Identifier(exec, sourceIdPropertyName)) 143 || error->hasProperty(exec, Identifier(exec, sourceURLPropertyName));
|
/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/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 {
|
cpp_variant.cc | 220 if (WebBindings::hasProperty(NULL, np_value, length_id)) { 237 if (WebBindings::hasProperty(NULL, np_value, index)) {
|
/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
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/ |
NPDeallocateCalledBeforeNPShutdown.cpp | 53 bool hasProperty(NPIdentifier propertyName)
|
NPRuntimeObjectFromDestroyedPlugin.cpp | 44 bool hasProperty(NPIdentifier propertyName)
|
/frameworks/base/libs/utils/ |
PropertyMap.cpp | 54 bool PropertyMap::hasProperty(const String8& key) const { 204 if (mMap->hasProperty(keyToken)) {
|
/external/webkit/Source/JavaScriptCore/API/ |
JSCallbackObjectFunctions.h | 122 if (JSObjectHasPropertyCallback hasProperty = jsClass->hasProperty) { 126 if (hasProperty(ctx, thisRef, propertyNameRef.get())) { 600 return throwError(exec, createReferenceError(exec, "hasProperty callback returned true for a property that doesn't exist."));
|