HomeSort by relevance Sort by last modified time
    Searched full:hasproperty (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /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/chromium_org/v8/src/compiler/
node-matchers.h 23 bool HasProperty(Operator::Property property) const {
24 return op()->HasProperty(property);
114 if (HasProperty(Operator::kCommutative)) PutConstantOnRight();
operator-properties-inl.h 104 if (op->HasProperty(Operator::kNoRead) && op->HasProperty(Operator::kNoWrite))
126 return op->HasProperty(Operator::kNoWrite) ? 0 : 1;
  /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/ppapi/cpp/dev/
scriptable_object_deprecated.cc 43 bool HasProperty(void* object, PP_Var name, PP_Var* exception) {
45 return static_cast<ScriptableObject*>(object)->HasProperty(
130 &HasProperty,
143 bool ScriptableObject::HasProperty(const Var& /*name*/, Var* /*exception*/) {
scriptable_object_deprecated.h 39 virtual bool HasProperty(const Var& name, Var* exception);
  /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...]
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3-sources.jar 
  /external/chromium_org/content/shell/tools/plugin/Tests/
NPRuntimeRemoveProperty.cpp 51 bool hasProperty(NPIdentifier propertyName)
139 bool hasProperty(NPIdentifier propertyName)
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)
  /external/chromium_org/ppapi/c/dev/
ppp_class_deprecated.h 44 bool (*HasProperty)(void* object,
63 * a call HasProperty() for the same |name| would return false.
  /external/chromium_org/ppapi/tests/
test_var_deprecated.cc 301 ASSERT_TRUE(window.HasProperty("scrollX", &exception));
306 // Regular method (also counts as HasProperty).
307 ASSERT_TRUE(window.HasProperty("find", &exception));
313 ASSERT_FALSE(window.HasProperty("superEvilBit", &exception));
319 ASSERT_FALSE(window.HasProperty(3.14159, &exception));
329 ASSERT_FALSE(string_object.HasProperty("find", &exception));
340 ASSERT_FALSE(var_interface_->HasProperty(invalid_object,
355 ASSERT_FALSE(window.HasProperty("find", &exception));
  /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')) {
  /external/chromium_org/content/test/plugin/
plugin_npobject_identity_test.cc 34 NULL, // HasProperty
  /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/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/
PluginTest.h 63 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
203 bool hasProperty(NPIdentifier propertyName) {
259 return static_cast<T*>(npObject)->hasProperty(propertyName);
  /developers/samples/android/
build.gradle 112 def task = project.hasProperty(taskName) ? project.tasks[taskName] : project.task(taskName)
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParser.cpp 55 ASSERT_UNUSED(success, success == stylePropertySet->hasProperty(propertyID));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1790.js 29 // array functions is specification conform (i.e. [[HasProperty]] might return
  /external/chromium_org/ppapi/cpp/private/
var_private.cc 52 bool VarPrivate::HasProperty(const Var& name, Var* exception) const {
55 return get_interface<PPB_Var_Deprecated>()->HasProperty(

Completed in 583 milliseconds

1 2 3 4