Searched refs:obj0 (Results 1 – 7 of 7) sorted by relevance
/external/v8/test/mjsunit/compiler/ |
D | proto-chain-constant.js | 37 var obj0 = c(obj1, { f0: { value: function() { return 0; }, writable: true }}); variable 41 assertEquals(4, get4(obj0)()); 42 assertEquals(4, get4(obj0)()); 44 assertEquals(4, get4(obj0)()); 46 assertEquals(5, get4(obj0)()); 50 assertEquals(3, get3(obj0)()); 51 assertEquals(3, get3(obj0)()); 53 assertEquals(3, get3(obj0)()); 55 assertEquals(6, get3(obj0)());
|
D | proto-chain-load.js | 36 var obj0 = Object.create(obj1, { f0: {value: 0} }); 40 assertEquals(4, get4(obj0)); 41 assertEquals(4, get4(obj0)); 43 assertEquals(4, get4(obj0)); 44 assertEquals(4, get4(obj0));
|
/external/skia/tests/ |
D | UtilsTest.cpp | 50 RefClass obj0(0); in test_autostarray() local 52 REPORTER_ASSERT(reporter, obj0.unique()); in test_autostarray() 62 tmp[0].reset(SkRef(&obj0)); in test_autostarray() 64 REPORTER_ASSERT(reporter, !obj0.unique()); in test_autostarray() 70 REPORTER_ASSERT(reporter, obj0.unique()); in test_autostarray() 75 tmp[0].reset(SkRef(&obj0)); in test_autostarray() 80 REPORTER_ASSERT(reporter, obj0.unique()); in test_autostarray() 88 tmp[0].reset(SkRef(&obj0)); in test_autostarray() 90 REPORTER_ASSERT(reporter, !obj0.unique()); in test_autostarray() 95 REPORTER_ASSERT(reporter, obj0.unique()); in test_autostarray() [all …]
|
/external/v8/test/mjsunit/ |
D | array-sort.js | 141 var obj0 = { toString: function() { return "a"; } }; variable in TestObjectSort 144 var a = [ obj2, obj0, obj1 ]; 146 assertArrayEquals([ obj0, obj1, obj2 ], a);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UnicodeRegex.java | 351 public int compare(Object obj0, Object obj1) { 352 String arg0 = obj0.toString();
|
/external/v8/test/cctest/ |
D | test-heap-profiler.cc | 1583 const v8::HeapGraphNode* obj0 = GetProperty( in TEST() local 1585 CHECK(obj0); in TEST() 1586 CHECK_EQ(v8::HeapGraphNode::kObject, obj0->GetType()); in TEST() 1588 obj0, v8::HeapGraphEdge::kInternal, "native"); in TEST()
|
D | test-api.cc | 8461 v8::Handle<v8::Object> obj0 = v8::Object::New(isolate); in THREADED_TEST() local 8466 CHECK_EQ(0, type_switch->match(obj0)); in THREADED_TEST() 8473 CHECK_EQ(0, type_switch->match(obj0)); in THREADED_TEST()
|