Home
last modified time | relevance | path

Searched refs:absolute (Results 1 – 3 of 3) sorted by relevance

/cts/hostsidetests/compilation/assets/
Dpackage-dex-usage.textproto32 dex_file: "/absolute/path/bad_3.apk"
45 dex_file: "/absolute/path/bad_4.apk"
59 dex_file: "/absolute/path/good_1.apk"
72 dex_file: "/absolute/path/good_2.apk"
85 dex_file: "/absolute/path/good_3.apk"
/cts/tests/tests/graphics/src/android/graphics/cts/
DColorSpaceTest.java604 float[] absolute = connector.transform(source[0], source[1], source[2]); in testAdaptedConnectorWithRenderIntent() local
605 assertNotNull(absolute); in testAdaptedConnectorWithRenderIntent()
606 assertEquals(3, absolute.length); in testAdaptedConnectorWithRenderIntent()
607 assertArrayNotEquals(source, absolute, 1e-5f); in testAdaptedConnectorWithRenderIntent()
608 assertArrayNotEquals(relative, absolute, 1e-5f); in testAdaptedConnectorWithRenderIntent()
609 assertArrayEquals(new float[] { 0.8475f, 0.9217f, 0.8203f }, absolute, 1e-4f); in testAdaptedConnectorWithRenderIntent()
/cts/tests/tests/widget/src/android/widget/cts/
DRemoteViewsActivityTest.java75 assertTrue("AbsoluteLayout not inflated", result.findViewById(R.id.absolute) != null); in testGood()