/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | shared_prefs_test.py | 63 self.assertTrue(prefs.HasProperty('myValue')) 66 self.assertFalse(prefs.HasProperty('myValue')) 145 self.assertFalse(prefs.HasProperty('someHashValue')) 147 self.assertTrue(prefs.HasProperty('databaseVersion')) # still there
|
D | shared_prefs.py | 282 def HasProperty(self, key): member in SharedPrefs
|
/external/v8/src/runtime/ |
D | runtime-forin.cc | 34 Maybe<bool> result = JSReceiver::HasProperty(receiver, name); in RUNTIME_FUNCTION() 59 Maybe<bool> result = JSReceiver::HasProperty(receiver, name); in RUNTIME_FUNCTION()
|
D | runtime-object.cc | 644 maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() 698 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name); in RUNTIME_FUNCTION()
|
D | runtime.h | 435 F(HasProperty, 2, 1) \
|
/external/v8/src/compiler/ |
D | node-matchers.h | 27 bool HasProperty(Operator::Property property) const { in HasProperty() function 28 return op()->HasProperty(property); in HasProperty() 213 if (HasProperty(Operator::kCommutative)) PutConstantOnRight(); in BinopMatcher() 329 : BinopMatcher(node, node->op()->HasProperty(Operator::kCommutative)), in AddMatcher() 332 Initialize(node, node->op()->HasProperty(Operator::kCommutative)); in AddMatcher() 400 Initialize(node, node->op()->HasProperty(Operator::kCommutative)); in BaseWithIndexAndDisplacementMatcher()
|
D | load-elimination.cc | 75 if (!effect->op()->HasProperty(Operator::kNoWrite) || in ReduceLoadField()
|
D | node-properties.cc | 276 DCHECK(!node->op()->HasProperty(Operator::kNoThrow)); in CollectControlProjections() 280 DCHECK(!node->op()->HasProperty(Operator::kNoThrow)); in CollectControlProjections()
|
D | value-numbering-reducer.cc | 53 if (!node->op()->HasProperty(Operator::kIdempotent)) return NoChange(); in Reduce()
|
D | operator.h | 83 bool HasProperty(Property property) const { in HasProperty() function
|
D | verifier.cc | 220 CHECK(!input->op()->HasProperty(Operator::kNoThrow)); in Check() 228 CHECK(!input->op()->HasProperty(Operator::kNoThrow)); in Check()
|
D | js-operator.h | 547 const Operator* HasProperty();
|
D | bytecode-graph-builder.cc | 1554 BuildCompareOp(javascript()->HasProperty(), iterator); in VisitTestIn() 1944 if (!result->op()->HasProperty(Operator::kNoThrow)) { in MakeNode()
|
D | js-operator.cc | 502 V(HasProperty, Operator::kNoProperties, 2, 1) \
|
D | ast-graph-builder.cc | 2866 op = javascript()->HasProperty(); in VisitCompareOperation() 4124 if (!result->op()->HasProperty(Operator::kNoThrow) && inside_try_scope) { in MakeNode() 4140 if (!result->op()->HasProperty(Operator::kNoThrow)) { in MakeNode()
|
D | instruction-selector.cc | 268 if (!node->op()->HasProperty(Operator::kEliminatable)) return true; in IsUsed()
|
D | scheduler.cc | 1420 if (!node->op()->HasProperty(Operator::kPure)) return block; in SplitNode()
|
/external/v8/src/ |
D | property-descriptor.cc | 23 Maybe<bool> has_property = JSReceiver::HasProperty(&it); in GetPropertyIfPresent()
|
D | contexts.cc | 152 Maybe<bool> found = JSReceiver::HasProperty(it); in UnscopableLookup()
|
/external/v8/test/unittests/compiler/ |
D | js-operator-unittest.cc | 80 SHARED(HasProperty, Operator::kNoProperties, 2, 1, 1, 1, 1, 1, 2),
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 432 if (node->op()->HasProperty(Operator::kCommutative) && in VisitBinop() 1018 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWordCompare() 1022 node->op()->HasProperty(Operator::kCommutative)); in VisitWordCompare() 1037 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWordCompare()
|
/external/v8/src/compiler/x87/ |
D | instruction-selector-x87.cc | 393 if (node->op()->HasProperty(Operator::kCommutative) && in VisitBinop() 1035 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWordCompare() 1039 node->op()->HasProperty(Operator::kCommutative)); in VisitWordCompare() 1054 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWordCompare()
|
/external/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 375 if (node->op()->HasProperty(Operator::kCommutative) && in VisitBinop() 1345 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWordCompare() 1349 node->op()->HasProperty(Operator::kCommutative)); in VisitWordCompare() 1365 if (!node->op()->HasProperty(Operator::kCommutative)) cont->Commute(); in VisitWord64Compare()
|
/external/v8/src/debug/ |
D | debug-scopes.cc | 659 Maybe<bool> maybe = JSReceiver::HasProperty(ext, variable_name); in SetLocalVariableValue()
|
/external/v8/test/cctest/compiler/ |
D | test-machine-operator-reducer.cc | 197 CHECK(!binop->HasProperty(Operator::kCommutative)); in CheckDontPutConstantOnRight()
|