Home
last modified time | relevance | path

Searched refs:objectArray (Results 1 – 2 of 2) sorted by relevance

/art/test/011-array-copy/src/
DMain.java30 Object[] objectArray = new Object[8]; in testObjectCopy() local
36 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); in testObjectCopy()
38 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); in testObjectCopy()
40 objectArray[4] = new ImplA(); in testObjectCopy()
42 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length); in testObjectCopy()
/art/runtime/
Dtransaction_test.cc444 mirror::ObjectArray<mirror::Object>* objectArray = in TEST_F() local
446 ASSERT_TRUE(objectArray != nullptr); in TEST_F()
447 ASSERT_EQ(objectArray->GetLength(), 1); in TEST_F()
448 ASSERT_EQ(objectArray->GetWithoutChecks(0), nullptr); in TEST_F()
469 objectArray->SetWithoutChecks<true>(0, h_obj.Get()); in TEST_F()
482 EXPECT_EQ(objectArray->GetWithoutChecks(0), nullptr); in TEST_F()