Searched refs:value1 (Results 1 – 3 of 3) sorted by relevance
/art/test/410-floats/src/ |
D | Main.java | 103 public static void testArrayOperations(float[] a, int index, float value1, float value2) { in testArrayOperations() argument 104 a[0] = value1; in testArrayOperations() 106 assertEquals(value1 + value2, a[0] + a[1]); in testArrayOperations() 110 a[index] = value1; in testArrayOperations() 112 assertEquals(value1 + value2, a[0] + a[1]); in testArrayOperations() 117 public static void testArrayOperations(double[] a, int index, double value1, double value2) { in testArrayOperations() argument 118 a[0] = value1; in testArrayOperations() 120 assertEquals(value1 + value2, a[0] + a[1]); in testArrayOperations() 124 a[index] = value1; in testArrayOperations() 126 assertEquals(value1 + value2, a[0] + a[1]); in testArrayOperations()
|
/art/runtime/ |
D | jni_internal_test.cc | 1681 #define EXPECT_STATIC_PRIMITIVE_FIELD(expect_eq, type, field_name, sig, value1, value2) \ argument 1685 env_->SetStatic ## type ## Field(c, fid, value1); \ 1686 expect_eq(value1, env_->GetStatic ## type ## Field(c, fid)); \ 1694 env_->SetStatic ## type ## Field(nullptr, fid, value1); \ 1699 env_->SetStatic ## type ## Field(c, nullptr, value1); \ 1705 env_->SetStatic ## type ## Field(nullptr, fid, value1); \ 1709 env_->SetStatic ## type ## Field(c, nullptr, value1); \ 1714 #define EXPECT_PRIMITIVE_FIELD(expect_eq, instance, type, field_name, sig, value1, value2) \ argument 1718 env_->Set ## type ## Field(instance, fid, value1); \ 1719 expect_eq(value1, env_->Get ## type ## Field(instance, fid)); \ [all …]
|
/art/test/083-compiler-regressions/src/ |
D | Main.java | 9697 int value1 = link1.value; in causeNPE1() local 9699 System.out.println("LVNTests.testNPE1 fails with " + value1 + " and " + value2); in causeNPE1() 9716 int value1 = link1.value; in causeNPE2() local 9718 System.out.println("LVNTests.testNPE2 fails with " + value1 + " and " + value2); in causeNPE2()
|