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

1 2 3

  /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/chromium_org/third_party/WebKit/Source/modules/geolocation/
PositionOptions.cpp 23 if (options.hasProperty("enableHighAccuracy")) {
28 if (options.hasProperty("maximumAge")) {
39 if (options.hasProperty("timeout")) {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 365 /// 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(MCID::Branch, Type)
    [all...]
  /external/chromium_org/content/shell/tools/plugin/Tests/
NPDeallocateCalledBeforeNPShutdown.cpp 57 bool hasProperty(NPIdentifier propertyName)
NPRuntimeObjectFromDestroyedPlugin.cpp 64 bool hasProperty(NPIdentifier propertyName)
PluginScriptableObjectOverridesAllProperties.cpp 55 bool hasProperty(NPIdentifier propertyName)
SlowNPPNew.cpp 54 bool hasProperty(NPIdentifier propertyName)
NPRuntimeRemoveProperty.cpp 51 bool hasProperty(NPIdentifier propertyName)
139 bool hasProperty(NPIdentifier propertyName)
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenProperties.groovy 278 def calledFrom = project.hasProperty('calledFrom') ? new File(project.calledFrom)
283 if (project.hasProperty('pathToSamplesCommon')) {
291 if (project.hasProperty('pathToBuild')) {
298 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/modules/crypto/
NormalizeAlgorithm.cpp 270 bool getOptionalCryptoOperationData(const Dictionary& raw, const char* propertyName, bool& hasProperty, RefPtr<ArrayBufferView>& buffer, const ErrorContext& context, AlgorithmError* error)
273 hasProperty = false;
277 hasProperty = true;
294 bool hasProperty;
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)
336 bool ok = DictionaryHelper::get(raw, propertyName, number, hasProperty);
338 if (!hasProperty)
359 bool hasProperty;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.cc 323 Boolean hasProperty = AudioObjectHasProperty(_outputDeviceID,
325 if (hasProperty)
341 hasProperty = AudioObjectHasProperty(_outputDeviceID,
343 if (hasProperty)
598 Boolean hasProperty = AudioObjectHasProperty(_outputDeviceID,
600 if (hasProperty)
615 hasProperty = AudioObjectHasProperty(_outputDeviceID,
617 if (hasProperty)
798 Boolean hasProperty = AudioObjectHasProperty(_inputDeviceID,
800 if (hasProperty)
    [all...]
  /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/content/shell/tools/plugin/
PluginTest.h 63 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
203 bool hasProperty(NPIdentifier propertyName) {
259 return static_cast<T*>(npObject)->hasProperty(propertyName);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParser.cpp 55 ASSERT_UNUSED(success, success == stylePropertySet->hasProperty(propertyID));
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /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/core/v8/
Dictionary.h 133 bool hasProperty(const String&) const;
V8NPObject.cpp 246 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)) {
Dictionary.cpp 102 bool Dictionary::hasProperty(const String& key) const
  /external/chromium_org/third_party/WebKit/public/web/
WebBindings.h 91 BLINK_EXPORT static bool hasProperty(NPP, NPObject*, NPIdentifier property);
  /external/llvm/utils/TableGen/
CodeGenTarget.h 213 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /packages/apps/InCallUI/src/com/android/incallui/
Call.java 332 private boolean hasProperty(int property) {
342 return hasProperty(CallProperties.CONFERENCE);
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar 

Completed in 1074 milliseconds

1 2 3