Searched refs:hasProperty (Results 1 - 25 of 41) sorted by relevance

12

/external/clang/test/SemaCXX/
H A Dblocks.cpp50 __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
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DPositionOptions.cpp23 if (options.hasProperty("enableHighAccuracy")) {
28 if (options.hasProperty("maximumAge")) {
39 if (options.hasProperty("timeout")) {
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h365 /// hasProperty - Return true if the instruction (or in the case of a bundle,
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(MCI
[all...]
/external/chromium_org/content/shell/tools/plugin/Tests/
H A DNPDeallocateCalledBeforeNPShutdown.cpp57 bool hasProperty(NPIdentifier propertyName) function in class:NPDeallocateCalledBeforeNPShutdown::ScriptableObject
H A DNPRuntimeObjectFromDestroyedPlugin.cpp64 bool hasProperty(NPIdentifier propertyName) function in class:NPRuntimeObjectFromDestroyedPlugin::ScriptableObject
H A DPluginScriptableObjectOverridesAllProperties.cpp55 bool hasProperty(NPIdentifier propertyName) function in class:PluginScriptableObjectOverridesAllProperties::PluginObject
H A DSlowNPPNew.cpp54 bool hasProperty(NPIdentifier propertyName) function in class:SlowNPPNew::PluginObject
H A DNPRuntimeRemoveProperty.cpp51 bool hasProperty(NPIdentifier propertyName) function in struct:NPRuntimeRemoveProperty::TestObject
139 bool hasProperty(NPIdentifier propertyName) function in struct:NPRuntimeRemoveProperty::PluginObject
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DNormalizeAlgorithm.cpp270 bool getOptionalCryptoOperationData(const Dictionary& raw, const char* propertyName, bool& hasProperty, RefPtr<ArrayBufferView>& buffer, const ErrorContext& context, AlgorithmError* error) argument
273 hasProperty = false;
277 hasProperty = true;
294 bool hasProperty; local
295 bool ok = getOptionalCryptoOperationData(raw, propertyName, hasProperty, buffer, context, error);
296 if (!hasProperty) {
333 bool getOptionalInteger(const Dictionary& raw, const char* propertyName, bool& hasProperty, double& value, double minValue, double maxValue, const ErrorContext& context, AlgorithmError* error) argument
336 bool ok = DictionaryHelper::get(raw, propertyName, number, hasProperty);
338 if (!hasProperty)
359 bool hasProperty; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_device/mac/
H A Daudio_mixer_manager_mac.cc323 Boolean hasProperty = AudioObjectHasProperty(_outputDeviceID, local
325 if (hasProperty)
341 hasProperty = AudioObjectHasProperty(_outputDeviceID,
343 if (hasProperty)
598 Boolean hasProperty = AudioObjectHasProperty(_outputDeviceID, local
600 if (hasProperty)
615 hasProperty = AudioObjectHasProperty(_outputDeviceID,
617 if (hasProperty)
798 Boolean hasProperty = AudioObjectHasProperty(_inputDeviceID, local
800 if (hasProperty)
1039 Boolean hasProperty = AudioObjectHasProperty(_inputDeviceID, local
[all...]
/external/chromium_org/content/shell/tools/plugin/
H A DPluginTest.h63 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
203 bool hasProperty(NPIdentifier propertyName) { function in struct:PluginTest::Object
259 return static_cast<T*>(npObject)->hasProperty(propertyName);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParser.cpp55 ASSERT_UNUSED(success, success == stylePropertySet->hasProperty(propertyID));
/external/chromium_org/content/child/npapi/
H A Dnpobject_stub.cc209 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/core/v8/
H A DDictionary.h133 bool hasProperty(const String&) const;
H A DV8NPObject.cpp246 if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasProperty(npObject, identifier)) {
329 if (npObject->_class->hasProperty && npObject->_class->setProperty && npObject->_class->hasProperty(npObject, identifier)) {
H A DDictionary.cpp102 bool Dictionary::hasProperty(const String& key) const function in class:blink::Dictionary
H A DNPV8Object.cpp416 if (npObject->_class->hasProperty && npObject->_class->getProperty) {
417 if (npObject->_class->hasProperty(npObject, propertyName))
489 if (npObject->_class->hasProperty)
490 return npObject->_class->hasProperty(npObject, propertyName);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebBindings.h91 BLINK_EXPORT static bool hasProperty(NPP, NPObject*, NPIdentifier property);
/external/llvm/utils/TableGen/
H A DCodeGenTarget.h213 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } function in class:llvm::ComplexPattern
H A DDAGISelMatcherEmitter.cpp411 if (Pattern.hasProperty(SDNPHasChain))
666 if (P.hasProperty(SDNPHasChain))
676 if (P.hasProperty(SDNPWantRoot))
681 if (P.hasProperty(SDNPWantParent))
H A DDAGISelMatcherGen.cpp410 PInfo.hasProperty(SDNPHasChain) ||
411 PInfo.hasProperty(SDNPInGlue) ||
412 PInfo.hasProperty(SDNPOptInGlue);
556 if (CP.hasProperty(SDNPHasChain)) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.h93 bool hasProperty(CSSPropertyID property) const { return findPropertyIndex(property) != -1; } function in class:blink::StylePropertySet
/external/chromium_org/third_party/npapi/bindings/
H A Dnpruntime.h308 NPHasPropertyFunctionPtr hasProperty; member in struct:NPClass
/external/chromium_org/third_party/npapi/npspy/extern/plugin/
H A Dnpruntime.h330 NPHasPropertyFunctionPtr hasProperty; member in struct:NPClass
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterfaceEventConstructor.cpp305 if (options.hasProperty("deprecatedInitializedByEventConstructorReadonlyStringAttribute"))
313 if (options.hasProperty("deprecatedImplementedAsInitializedByEventConstructorReadonlyStringAttribute"))

Completed in 425 milliseconds

12