HomeSort by relevance Sort by last modified time
    Searched full:hasproperty (Results 1 - 25 of 97) 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...]
  /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/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...]
  /developers/samples/android/
build.gradle 47 def task = project.hasProperty(taskName) ? project.tasks[taskName] : project.task(taskName)
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_bindings.h 46 bool HasProperty(NPIdentifier name) const;
  /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/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 302 ASSERT_TRUE(window.HasProperty("scrollX", &exception));
307 // Regular method (also counts as HasProperty).
308 ASSERT_TRUE(window.HasProperty("find", &exception));
314 ASSERT_FALSE(window.HasProperty("superEvilBit", &exception));
320 ASSERT_FALSE(window.HasProperty(3.14159, &exception));
331 ASSERT_FALSE(string_object.HasProperty("find", &exception));
342 ASSERT_FALSE(var_interface_->HasProperty(invalid_object,
357 ASSERT_FALSE(window.HasProperty("find", &exception));
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPRuntimeRemoveProperty.cpp 47 bool hasProperty(NPIdentifier propertyName)
135 bool hasProperty(NPIdentifier propertyName)
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)
  /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')) {
  /external/chromium_org/content/test/plugin/
plugin_npobject_identity_test.cc 34 NULL, // HasProperty
  /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/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
  /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 {
  /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/ppapi/native_client/src/trusted/plugin/
scriptable_plugin.cc 130 bool ScriptablePlugin::HasProperty(const pp::Var& name, pp::Var* exception) {
132 PLUGIN_PRINTF(("ScriptablePlugin::HasProperty (this=%p, name=%s)\n",
139 bool has_property = plugin_->HasProperty(name.AsString());
140 PLUGIN_PRINTF(("ScriptablePlugin::HasProperty (has_property=%d)\n",
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1790.js 29 // array functions is specification conform (i.e. [[HasProperty]] might return
  /external/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 1175 milliseconds

1 2 3 4