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

1 2

  /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/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/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPDeallocateCalledBeforeNPShutdown.cpp 53 bool hasProperty(NPIdentifier propertyName)
NPRuntimeObjectFromDestroyedPlugin.cpp 60 bool hasProperty(NPIdentifier propertyName)
PluginScriptableObjectOverridesAllProperties.cpp 51 bool hasProperty(NPIdentifier propertyName)
SlowNPPNew.cpp 50 bool hasProperty(NPIdentifier propertyName)
NPRuntimeRemoveProperty.cpp 47 bool hasProperty(NPIdentifier propertyName)
135 bool hasProperty(NPIdentifier propertyName)
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenProperties.groovy 276 def calledFrom = project.hasProperty('calledFrom') ? new File(project.calledFrom)
282 if (project.hasProperty('pathToSamplesCommon')) {
291 if (project.hasProperty('pathToBuild')) {
299 if (project.hasProperty('out')) {
  /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/chromium_org/third_party/WebKit/Source/testing/runner/
CppBoundClass.cpp 122 static bool hasProperty(NPObject*, NPIdentifier);
156 CppNPObject::hasProperty,
182 bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident)
185 return obj->boundClass->hasProperty(ident);
226 bool CppBoundClass::hasProperty(NPIdentifier ident) const
CppVariant.cpp 260 if (!WebBindings::hasProperty(0, npValue, lengthId))
283 if (!WebBindings::hasProperty(0, npValue, indexId))
CppBoundClass.h 230 bool hasProperty(NPIdentifier) const;
  /system/core/include/utils/
PropertyMap.h 63 bool hasProperty(const String8& key) const;
  /system/core/libutils/
PropertyMap.cpp 54 bool PropertyMap::hasProperty(const String8& key) const {
204 if (mMap->hasProperty(keyToken)) {
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.h 49 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
164 bool hasProperty(NPIdentifier propertyName)
228 return static_cast<T*>(npObject)->hasProperty(propertyName);
  /external/chromium_org/webkit/renderer/
cpp_bound_class.cc 93 static bool hasProperty(NPObject *obj, NPIdentifier ident);
129 CppNPObject::hasProperty,
153 /* static */ bool CppNPObject::hasProperty(NPObject* np_obj,
156 return obj->bound_class->HasProperty(ident);
198 bool CppBoundClass::HasProperty(NPIdentifier ident) const {
cpp_variant.cc 222 if (WebBindings::hasProperty(NULL, np_value, length_id)) {
239 if (WebBindings::hasProperty(NULL, np_value, index)) {
  /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/chromium_org/content/child/npapi/
npobject_stub.cc 209 if (npobject_->_class->hasProperty) {
210 *result = npobject_->_class->hasProperty(npobject_, id);
215 *result = WebBindings::hasProperty(0, npobject_, id);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8NPObject.cpp 230 if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasProperty(npObject, identifier)) {
317 if (npObject->_class->hasProperty && npObject->_class->setProperty && npObject->_class->hasProperty(npObject, identifier)) {
NPV8Object.cpp 393 if (npObject->_class->hasProperty && npObject->_class->getProperty) {
394 if (npObject->_class->hasProperty(npObject, propertyName))
469 if (npObject->_class->hasProperty)
470 return npObject->_class->hasProperty(npObject, propertyName);
  /external/chromium_org/third_party/WebKit/public/web/
WebBindings.h 91 WEBKIT_EXPORT static bool hasProperty(NPP, NPObject*, NPIdentifier property);
  /external/llvm/utils/TableGen/
CodeGenTarget.h 206 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /external/chromium_org/third_party/npapi/bindings/
npruntime.h 308 NPHasPropertyFunctionPtr hasProperty;

Completed in 767 milliseconds

1 2