Home
last modified time | relevance | path

Searched refs:HasProperty (Results 1 – 25 of 61) sorted by relevance

123

/external/chromium-trace/catapult/devil/devil/android/sdk/
Dshared_prefs_test.py66 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
Dshared_prefs.py331 def HasProperty(self, key): member in SharedPrefs
/external/v8/src/builtins/
Darray-reverse.tq98 // 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);
Darray.tq191 // 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);
Darray-copywithin.tq65 // c. Let fromPresent be ? HasProperty(O, fromKey).
66 const from_present: Boolean = HasProperty(context, object, from);
Darray-foreach.tq15 // 6b. Let kPresent be ? HasProperty(O, Pk).
16 const kPresent: Boolean = HasProperty(context, o, pK);
/external/v8/src/compiler/
Dnode-matchers.h31 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()
Dnode-properties.cc131 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()
Dcheckpoint-elimination.cc23 while (effect->op()->HasProperty(Operator::kNoWrite) && in IsRedundantCheckpoint()
Doperator.cc53 if (HasProperty(Operator::k##name)) { \ in PrintPropsTo()
Dconstant-folding-reducer.cc27 node->op()->HasProperty(Operator::kEliminatable)) { in Reduce()
Dvalue-numbering-reducer.cc28 if (!node->op()->HasProperty(Operator::kIdempotent)) return NoChange(); in Reduce()
Doperator.h92 bool HasProperty(Property property) const { in NON_EXPORTED_BASE()
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
DHasPropertyTest.java7 import static org.hamcrest.beans.HasProperty.hasProperty;
/external/llvm/lib/CodeGen/
DMachineFunction.cpp61 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/
Dinterpreter-intrinsics.h28 V(HasProperty, has_property, 2) \
/external/pdfium/xfa/fxfa/parser/
Dcxfa_nodehelper.cpp49 if (!parent->HasProperty(pNode->GetElementType()) && in CountSiblings()
388 return parent && refNode && parent->HasProperty(refNode->GetElementType()); in NodeIsProperty()
Dcxfa_node.h88 bool HasProperty(XFA_Element property) const;
Dcxfa_node.cpp335 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/
Djs-proxy.h63 V8_WARN_UNUSED_RESULT static Maybe<bool> HasProperty(Isolate* isolate,
/external/v8/src/
Dcontexts.cc149 Maybe<bool> found = JSReceiver::HasProperty(it); in UnscopableLookup()
361 Maybe<bool> found = JSReceiver::HasProperty(&it); in Lookup()
Dproperty-descriptor.cc26 Maybe<bool> has_property = JSReceiver::HasProperty(&it); in GetPropertyIfPresent()
/external/pdfium/fxjs/
Dcfxjse_resolveprocessor.cpp247 if (curNode->HasProperty(pChild->GetElementType())) in ResolveNormal()
418 if (parentNode->HasProperty(child->GetElementType())) { in ResolveNormal()
/external/v8/src/runtime/
Druntime-object.cc338 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/
Dinstruction-selector-x64.cc446 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()

123