HomeSort by relevance Sort by last modified time
    Searched refs:HasProperty (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
HasPropertyTest.java 7 import static org.hamcrest.beans.HasProperty.hasProperty;
22 Matcher<Object> matcher = hasProperty("irrelevant");
30 assertMatches(hasProperty("writeOnlyProperty"), bean);
35 assertDoesNotMatch(hasProperty("aNonExistentProp"), bean);
40 assertDescription("hasProperty(\"property\")", hasProperty("property"));
46 hasProperty("aNonExistentProp"), bean);
  /external/v8/src/compiler/
checkpoint-elimination.cc 23 while (effect->op()->HasProperty(Operator::kNoWrite) &&
operator.cc 53 if (HasProperty(Operator::k##name)) { \
node-matchers.h 30 bool HasProperty(Operator::Property property) const {
31 return op()->HasProperty(property);
236 if (HasProperty(Operator::kCommutative)) PutConstantOnRight();
354 : BinopMatcher(node, node->op()->HasProperty(Operator::kCommutative)),
357 Initialize(node, node->op()->HasProperty(Operator::kCommutative));
444 (node->op()->HasProperty(Operator::kCommutative)
node-properties.cc 130 if (node->op()->HasProperty(Operator::kNoThrow)) return false;
287 DCHECK(!node->op()->HasProperty(Operator::kNoThrow));
291 DCHECK(!node->op()->HasProperty(Operator::kNoThrow));
410 if (!effect->op()->HasProperty(Operator::kNoWrite)) {
value-numbering-reducer.cc 63 if (!node->op()->HasProperty(Operator::kIdempotent)) return NoChange();
operator.h 92 bool HasProperty(Property property) const {
typed-optimization.cc 36 node->op()->HasProperty(Operator::kEliminatable)) {
bytecode-graph-builder.cc 600 DCHECK(effect->op()->HasProperty(Operator::kNoWrite));
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/sdk/
shared_prefs_test.py 64 self.assertTrue(prefs.HasProperty('myValue'))
67 self.assertFalse(prefs.HasProperty('myValue'))
150 self.assertFalse(prefs.HasProperty('someHashValue'))
152 self.assertTrue(prefs.HasProperty('databaseVersion')) # still there
shared_prefs.py 299 def HasProperty(self, key):
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
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
shared_prefs.py 282 def HasProperty(self, key):
  /external/v8/src/interpreter/
interpreter-intrinsics.h 31 V(HasProperty, has_property, 2) \
interpreter-intrinsics.cc 240 Node* IntrinsicsHelper::HasProperty(Node* input, Node* arg_count,
243 CodeFactory::HasProperty(isolate()));
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 61 bool HasProperty = Properties[i];
62 if (OnlySet && !HasProperty)
66 ROS << (HasProperty ? "SSA, " : "Post SSA, ");
69 ROS << (HasProperty ? "" : "not ") << "tracking liveness, ";
72 ROS << (HasProperty ? "AllVRegsAllocated" : "HasVRegs");
    [all...]
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /external/v8/src/builtins/
builtins-reflect.cc 160 JSReceiver::HasProperty(Handle<JSReceiver>::cast(target), name);
builtins.h 61 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty, 1) \
    [all...]
  /external/v8/src/
code-factory.h 183 static Callable HasProperty(Isolate* isolate);
property-descriptor.cc 24 // 4. Let hasEnumerable be HasProperty(Obj, "enumerable").
25 Maybe<bool> has_property = JSReceiver::HasProperty(&it);
contexts.cc 174 Maybe<bool> found = JSReceiver::HasProperty(it);
369 Maybe<bool> found = JSReceiver::HasProperty(&it);
  /external/v8/src/runtime/
runtime-object.cc 170 Maybe<bool> maybe = JSReceiver::HasProperty(&it);
189 Maybe<bool> maybe = JSReceiver::HasProperty(&it);
484 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name);
    [all...]
  /prebuilts/misc/common/robolectric/lib/
hamcrest-library-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar 

Completed in 896 milliseconds

1 2 3