Home
last modified time | relevance | path

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

/art/test/045-reflect-array/src/
DMain.java200 int[][][] array3 = (int[][][]) intIntIntArray; in testMultiInt() local
202 array3[0][0][0] = 123; // trouble in testMultiInt()
203 array3[2][1][0] = 456; in testMultiInt()
206 array3[2][1][1] = 768; in testMultiInt()
219 String[][][] array3 = (String[][][]) strStrStrArray; in testMulti() local
221 array3[0][0][0] = "zero zero zero"; in testMulti()
222 array3[0][1][2] = "zero one two"; in testMulti()
225 array3[1][0][0] = "bad store"; in testMulti()
240 array3[0][1] = strar; in testMulti()
241 System.out.println(array3[0][1][2]); in testMulti()
[all …]
/art/compiler/utils/
Ddedupe_set_test.cc80 const std::vector<uint8_t>* array3; in TEST() local
84 array3 = deduplicator.Add(self, test3); in TEST()
85 ASSERT_NE(array3, nullptr); in TEST()
86 ASSERT_NE(array3, array1); in TEST()
87 ASSERT_TRUE(std::equal(test3.begin(), test3.end(), array3->begin())); in TEST()