/external/clang/test/SemaCXX/ |
D | blocks.cpp | 50 __attribute__((__blocks__(byref))) bool hasProperty = false; in test3() local 54 func(hasProperty); in test3() 55 if (hasProperty) in test3() 56 hasProperty = 0; in test3() 58 hasProperty = 1; in test3() 59 return hasProperty; in test3() 61 func(hasProperty); in test3() 64 if (hasProperty) in test3() 65 hasProperty = 1; in test3() 68 return hasProperty = 1; in test3()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstr.h | 370 bool hasProperty(unsigned MCFlag, QueryType Type = AnyInBundle) const { 384 return hasProperty(MCID::Variadic, Type); 390 return hasProperty(MCID::HasOptionalDef, Type); 397 return hasProperty(MCID::Pseudo, Type); 401 return hasProperty(MCID::Return, Type); 405 return hasProperty(MCID::Call, Type); 412 return hasProperty(MCID::Barrier, Type); 422 return hasProperty(MCID::Terminator, Type); 430 return hasProperty(MCID::Branch, Type); 436 return hasProperty(MCID::IndirectBranch, Type); [all …]
|
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
D | PositionOptions.cpp | 23 if (options.hasProperty("enableHighAccuracy")) { in PositionOptions() 28 if (options.hasProperty("maximumAge")) { in PositionOptions() 39 if (options.hasProperty("timeout")) { in PositionOptions()
|
/external/chromium_org/third_party/webrtc/modules/audio_device/mac/ |
D | audio_mixer_manager_mac.cc | 323 Boolean hasProperty = AudioObjectHasProperty(_outputDeviceID, in SpeakerVolume() local 325 if (hasProperty) in SpeakerVolume() 341 hasProperty = AudioObjectHasProperty(_outputDeviceID, in SpeakerVolume() 343 if (hasProperty) in SpeakerVolume() 598 Boolean hasProperty = AudioObjectHasProperty(_outputDeviceID, in SpeakerMute() local 600 if (hasProperty) in SpeakerMute() 615 hasProperty = AudioObjectHasProperty(_outputDeviceID, in SpeakerMute() 617 if (hasProperty) in SpeakerMute() 798 Boolean hasProperty = AudioObjectHasProperty(_inputDeviceID, in MicrophoneMute() local 800 if (hasProperty) in MicrophoneMute() [all …]
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
D | NormalizeAlgorithm.cpp | 270 …toOperationData(const Dictionary& raw, const char* propertyName, bool& hasProperty, RefPtr<ArrayBu… in getOptionalCryptoOperationData() argument 273 hasProperty = false; in getOptionalCryptoOperationData() 277 hasProperty = true; in getOptionalCryptoOperationData() 294 bool hasProperty; in getCryptoOperationData() local 295 … bool ok = getOptionalCryptoOperationData(raw, propertyName, hasProperty, buffer, context, error); in getCryptoOperationData() 296 if (!hasProperty) { in getCryptoOperationData() 333 bool getOptionalInteger(const Dictionary& raw, const char* propertyName, bool& hasProperty, double&… in getOptionalInteger() argument 336 bool ok = DictionaryHelper::get(raw, propertyName, number, hasProperty); in getOptionalInteger() 338 if (!hasProperty) in getOptionalInteger() 359 bool hasProperty; in getInteger() local [all …]
|
/external/chromium_org/content/shell/tools/plugin/Tests/ |
D | NPRuntimeRemoveProperty.cpp | 51 bool hasProperty(NPIdentifier propertyName) in hasProperty() function 139 bool hasProperty(NPIdentifier propertyName) in hasProperty() function
|
D | PluginScriptableObjectOverridesAllProperties.cpp | 55 bool hasProperty(NPIdentifier propertyName) in hasProperty() function in PluginScriptableObjectOverridesAllProperties::PluginObject
|
D | SlowNPPNew.cpp | 54 bool hasProperty(NPIdentifier propertyName) in hasProperty() function in SlowNPPNew::PluginObject
|
D | NPDeallocateCalledBeforeNPShutdown.cpp | 57 bool hasProperty(NPIdentifier propertyName) in hasProperty() function in NPDeallocateCalledBeforeNPShutdown::ScriptableObject
|
D | NPRuntimeObjectFromDestroyedPlugin.cpp | 64 bool hasProperty(NPIdentifier propertyName) in hasProperty() function in NPRuntimeObjectFromDestroyedPlugin::ScriptableObject
|
/external/chromium_org/content/shell/tools/plugin/ |
D | PluginTest.h | 63 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName)); 203 bool hasProperty(NPIdentifier propertyName) { in hasProperty() function 259 return static_cast<T*>(npObject)->hasProperty(propertyName); in NP_HasProperty()
|
/external/chromium_org/content/child/npapi/ |
D | npobject_stub.cc | 209 if (npobject_->_class->hasProperty) { in OnHasProperty() 210 *result = npobject_->_class->hasProperty(npobject_, id); in OnHasProperty() 215 *result = WebBindings::hasProperty(0, npobject_, id); in OnHasProperty()
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | V8NPObject.cpp | 246 …if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasPropert… in npObjectGetProperty() 329 …if (npObject->_class->hasProperty && npObject->_class->setProperty && npObject->_class->hasPropert… in npObjectSetProperty()
|
D | NPV8Object.cpp | 416 if (npObject->_class->hasProperty && npObject->_class->getProperty) { in _NPN_GetProperty() 417 if (npObject->_class->hasProperty(npObject, propertyName)) in _NPN_GetProperty() 489 if (npObject->_class->hasProperty) in _NPN_HasProperty() 490 return npObject->_class->hasProperty(npObject, propertyName); in _NPN_HasProperty()
|
D | Dictionary.h | 133 bool hasProperty(const String&) const;
|
D | Dictionary.cpp | 102 bool Dictionary::hasProperty(const String& key) const in hasProperty() function in blink::Dictionary
|
/external/llvm/utils/TableGen/ |
D | DAGISelMatcherGen.cpp | 410 PInfo.hasProperty(SDNPHasChain) || in EmitOperatorMatchCode() 411 PInfo.hasProperty(SDNPInGlue) || in EmitOperatorMatchCode() 412 PInfo.hasProperty(SDNPOptInGlue); in EmitOperatorMatchCode() 556 if (CP.hasProperty(SDNPHasChain)) { in EmitMatcherCode()
|
D | DAGISelMatcherEmitter.cpp | 411 if (Pattern.hasProperty(SDNPHasChain)) in EmitMatcher() 666 if (P.hasProperty(SDNPHasChain)) in EmitPredicateFunctions() 676 if (P.hasProperty(SDNPWantRoot)) in EmitPredicateFunctions() 681 if (P.hasProperty(SDNPWantParent)) in EmitPredicateFunctions()
|
D | CodeGenTarget.h | 213 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } in hasProperty() function
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSParser.cpp | 55 ASSERT_UNUSED(success, success == stylePropertySet->hasProperty(propertyID)); in parseSingleValue()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebBindings.h | 91 BLINK_EXPORT static bool hasProperty(NPP, NPObject*, NPIdentifier property);
|
/external/chromium_org/third_party/npapi/npspy/extern/plugin/ |
D | npruntime.h | 330 NPHasPropertyFunctionPtr hasProperty; member
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | StylePropertySet.h | 93 bool hasProperty(CSSPropertyID property) const { return findPropertyIndex(property) != -1; } in hasProperty() function
|
/external/chromium_org/third_party/npapi/bindings/ |
D | npruntime.h | 308 NPHasPropertyFunctionPtr hasProperty; member
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/ |
D | V8TestInterfaceEventConstructor.cpp | 305 if (options.hasProperty("deprecatedInitializedByEventConstructorReadonlyStringAttribute")) in initializeTestInterfaceEventConstructor() 313 …if (options.hasProperty("deprecatedImplementedAsInitializedByEventConstructorReadonlyStringAttribu… in initializeTestInterfaceEventConstructor()
|