/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | shared_prefs_test.py | 66 self.assertTrue(prefs.HasProperty('myValue')) 69 self.assertFalse(prefs.HasProperty('myValue')) 168 self.assertFalse(prefs.HasProperty('someHashValue')) 170 self.assertTrue(prefs.HasProperty('databaseVersion')) # still there
|
D | shared_prefs.py | 331 def HasProperty(self, key): member in SharedPrefs
|
/external/v8/src/builtins/ |
D | array-reverse.tq | 98 // d. Let lowerExists be ? HasProperty(O, lowerP). 99 const lower_exists: Boolean = HasProperty(context, object, lower); 107 // f. Let upperExists be ? HasProperty(O, upperP). 108 const upper_exists: Boolean = HasProperty(context, object, upper);
|
D | array.tq | 191 // b. Let fromPresent be ? HasProperty(O, from). 192 let fromPresent: Oddball = HasProperty(context, o, from); 229 // iii. Let fromPresent be ? HasProperty(O, from). 230 let fromPresent: Oddball = HasProperty(context, o, from); 272 // iii. Let fromPresent be ? HasProperty(O, from). 273 let fromPresent: Oddball = HasProperty(context, o, from);
|
D | array-copywithin.tq | 65 // c. Let fromPresent be ? HasProperty(O, fromKey). 66 const from_present: Boolean = HasProperty(context, object, from);
|
D | array-foreach.tq | 15 // 6b. Let kPresent be ? HasProperty(O, Pk). 16 const kPresent: Boolean = HasProperty(context, o, pK);
|
/external/v8/src/compiler/ |
D | node-matchers.h | 31 bool HasProperty(Operator::Property property) const { in HasProperty() function 32 return op()->HasProperty(property); in HasProperty() 240 if (HasProperty(Operator::kCommutative)) PutConstantOnRight(); in BinopMatcher() 361 : BinopMatcher(node, node->op()->HasProperty(Operator::kCommutative)), in AddMatcher() 364 Initialize(node, node->op()->HasProperty(Operator::kCommutative)); in AddMatcher() 450 (node->op()->HasProperty(Operator::kCommutative) in BaseWithIndexAndDisplacementMatcher()
|
D | node-properties.cc | 131 if (node->op()->HasProperty(Operator::kNoThrow)) return false; in IsExceptionalCall() 145 if (node->op()->HasProperty(Operator::kNoThrow)) return node; in FindSuccessfulControlProjection() 320 DCHECK(!node->op()->HasProperty(Operator::kNoThrow)); in CollectControlProjections() 324 DCHECK(!node->op()->HasProperty(Operator::kNoThrow)); in CollectControlProjections() 488 if (!effect->op()->HasProperty(Operator::kNoWrite)) { in InferReceiverMaps()
|
D | checkpoint-elimination.cc | 23 while (effect->op()->HasProperty(Operator::kNoWrite) && in IsRedundantCheckpoint()
|
D | operator.cc | 53 if (HasProperty(Operator::k##name)) { \ in PrintPropsTo()
|
D | constant-folding-reducer.cc | 27 node->op()->HasProperty(Operator::kEliminatable)) { in Reduce()
|
D | value-numbering-reducer.cc | 28 if (!node->op()->HasProperty(Operator::kIdempotent)) return NoChange(); in Reduce()
|
D | operator.h | 92 bool HasProperty(Property property) const { in NON_EXPORTED_BASE()
|
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/ |
D | HasPropertyTest.java | 7 import static org.hamcrest.beans.HasProperty.hasProperty;
|
/external/llvm/lib/CodeGen/ |
D | MachineFunction.cpp | 61 bool HasProperty = Properties[i]; in print() local 62 if (OnlySet && !HasProperty) in print() 66 ROS << (HasProperty ? "SSA, " : "Post SSA, "); in print() 69 ROS << (HasProperty ? "" : "not ") << "tracking liveness, "; in print() 72 ROS << (HasProperty ? "AllVRegsAllocated" : "HasVRegs"); in print()
|
/external/v8/src/interpreter/ |
D | interpreter-intrinsics.h | 28 V(HasProperty, has_property, 2) \
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_nodehelper.cpp | 49 if (!parent->HasProperty(pNode->GetElementType()) && in CountSiblings() 388 return parent && refNode && parent->HasProperty(refNode->GetElementType()); in NodeIsProperty()
|
D | cxfa_node.h | 88 bool HasProperty(XFA_Element property) const;
|
D | cxfa_node.cpp | 335 bool CXFA_Node::HasProperty(XFA_Element property) const { in HasProperty() function in CXFA_Node 420 if (!HasProperty(pChild->GetElementType())) { in GetNodeList() 783 if (bOnlyChild && HasProperty(pNode->GetElementType())) in CountChildren() 797 if (bOnlyChild && HasProperty(pNode->GetElementType())) in GetChildInternal()
|
/external/v8/src/objects/ |
D | js-proxy.h | 63 V8_WARN_UNUSED_RESULT static Maybe<bool> HasProperty(Isolate* isolate,
|
/external/v8/src/ |
D | contexts.cc | 149 Maybe<bool> found = JSReceiver::HasProperty(it); in UnscopableLookup() 361 Maybe<bool> found = JSReceiver::HasProperty(&it); in Lookup()
|
D | property-descriptor.cc | 26 Maybe<bool> has_property = JSReceiver::HasProperty(&it); in GetPropertyIfPresent()
|
/external/pdfium/fxjs/ |
D | cfxjse_resolveprocessor.cpp | 247 if (curNode->HasProperty(pChild->GetElementType())) in ResolveNormal() 418 if (parentNode->HasProperty(child->GetElementType())) { in ResolveNormal()
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 338 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() 357 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() 711 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name); in RUNTIME_FUNCTION()
|
/external/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 446 if (node->op()->HasProperty(Operator::kCommutative) && in VisitBinop() 1681 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWordCompare() 1702 node->op()->HasProperty(Operator::kCommutative)); in VisitWordCompare() 1715 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWord64Compare() 1736 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWord64Compare()
|