Searched defs:objectArray (Results 1 - 2 of 2) sorted by relevance

/art/test/530-instanceof-checkcast/src/
H A DMain.java24 static Object objectArray = new Object[2]; field in class:Main
56 check(false, objectArray instanceof int[]);
61 check(false, objectArray instanceof ExactCheck[]);
67 check(false, objectArray instanceof NormalCheck[]);
73 check(true, objectArray instanceof Object[]);
95 check(false, objectArray instanceof int[]);
100 check(false, objectArray instanceof ExactCheck[]);
106 check(false, objectArray instanceof NormalCheck[]);
112 check(true, objectArray instanceof Object[]);
164 field = (int[])objectArray;
[all...]
/art/runtime/
H A Dtransaction_test.cc444 mirror::ObjectArray<mirror::Object>* objectArray = local
446 ASSERT_TRUE(objectArray != nullptr);
447 ASSERT_EQ(objectArray->GetLength(), 1);
448 ASSERT_EQ(objectArray->GetWithoutChecks(0), nullptr);
469 objectArray->SetWithoutChecks<true>(0, h_obj.Get());
482 EXPECT_EQ(objectArray->GetWithoutChecks(0), nullptr);

Completed in 235 milliseconds