HomeSort by relevance Sort by last modified time
    Searched refs:hasProperty (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/test/SemaCXX/
blocks.cpp 51 __attribute__((__blocks__(byref))) bool hasProperty = false;
55 func(hasProperty);
56 if (hasProperty)
57 hasProperty = 0;
59 hasProperty = 1;
60 return hasProperty;
62 func(hasProperty);
65 if (hasProperty)
66 hasProperty = 1;
69 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))
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 310 /// hasProperty - Return true if the instruction (or in the case of a bundle,
315 bool hasProperty(unsigned MCFlag, QueryType Type = AnyInBundle) const {
329 return hasProperty(MCID::Variadic, Type);
335 return hasProperty(MCID::HasOptionalDef, Type);
342 return hasProperty(MCID::Pseudo, Type);
346 return hasProperty(MCID::Return, Type);
350 return hasProperty(MCID::Call, Type);
357 return hasProperty(MCID::Barrier, Type);
367 return hasProperty(MCID::Terminator, Type);
375 return hasProperty(MCID::Branch, Type)
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeObjectFromDestroyedPlugin.cpp 44 bool hasProperty(NPIdentifier propertyName)
NPDeallocateCalledBeforeNPShutdown.cpp 53 bool hasProperty(NPIdentifier 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/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/Source/WebCore/bridge/c/
c_class.cpp 110 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectMessageReceiver.h 63 void hasProperty(const NPIdentifierData&, bool& returnValue);
NPObjectProxy.h 67 bool hasProperty(NPIdentifier 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());
  /frameworks/native/include/utils/
PropertyMap.h 63 bool hasProperty(const String8& key) const;
  /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/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);
  /frameworks/native/libs/utils/
PropertyMap.cpp 54 bool PropertyMap::hasProperty(const String8& key) const {
204 if (mMap->hasProperty(keyToken)) {
  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.h 103 JSObjectHasPropertyCallback hasProperty;
  /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));
JSPropertyNameIterator.cpp 93 if (!base->hasProperty(exec, Identifier(exec, asString(identifier)->value(exec))))
  /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 {
  /external/webkit/Source/WebKit/chromium/public/
WebBindings.h 83 WEBKIT_API static bool hasProperty(NPP, NPObject*, NPIdentifier property);

Completed in 614 milliseconds

1 2 3