Searched refs:doubleArray (Results 1 – 3 of 3) sorted by relevance
/art/test/530-instanceof-checkcast/src/ |
D | Main.java | 26 static Object doubleArray = new double[2]; field in Main 58 check(false, doubleArray instanceof int[]); in checkInstanceOfNonTryCatch() 62 check(false, doubleArray instanceof ExactCheck[]); in checkInstanceOfNonTryCatch() 68 check(false, doubleArray instanceof NormalCheck[]); in checkInstanceOfNonTryCatch() 74 check(false, doubleArray instanceof Object[]); in checkInstanceOfNonTryCatch() 97 check(false, doubleArray instanceof int[]); in checkInstanceOfTryCatch() 101 check(false, doubleArray instanceof ExactCheck[]); in checkInstanceOfTryCatch() 107 check(false, doubleArray instanceof NormalCheck[]); in checkInstanceOfTryCatch() 113 check(false, doubleArray instanceof Object[]); in checkInstanceOfTryCatch() 170 field = (int[])doubleArray; in checkCheckCast() [all …]
|
/art/runtime/ |
D | transaction_test.cc | 436 mirror::DoubleArray* doubleArray = doubleArrayField->GetObject(h_klass.Get())->AsDoubleArray(); in TEST_F() local 437 ASSERT_TRUE(doubleArray != nullptr); in TEST_F() 438 ASSERT_EQ(doubleArray->GetLength(), 1); in TEST_F() 439 ASSERT_DOUBLE_EQ(doubleArray->GetWithoutChecks(0), static_cast<double>(0.0f)); in TEST_F() 468 doubleArray->SetWithoutChecks<true>(0, 1.0); in TEST_F() 481 EXPECT_DOUBLE_EQ(doubleArray->GetWithoutChecks(0), static_cast<double>(0.0f)); in TEST_F()
|
/art/test/510-checker-try-catch/smali/ |
D | Runtime.smali | 153 sget-object v0, LRuntime;->doubleArray:[D 359 sget-object v0, LRuntime;->doubleArray:[D 451 sget-object v0, LRuntime;->doubleArray:[D 519 sput-object v0, LRuntime;->doubleArray:[D 555 .field public static doubleArray:[D
|