Home
last modified time | relevance | path

Searched refs:expectedPath (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/base/core/tests/coretests/src/android/text/
H A DLayoutBidiCursorPathTest.java71 final Path expectedPath = new Path(); in testGetCursorPathSegments() local
73 expectedPath.moveTo(h1, top); in testGetCursorPathSegments()
74 expectedPath.lineTo(h1, bottom); in testGetCursorPathSegments()
104 expectedPath.moveTo(h1, top); in testGetCursorPath_whenShiftIsPressed()
105 expectedPath.lineTo(h1, bottom); in testGetCursorPath_whenShiftIsPressed()
107 expectedPath.moveTo(h1, bottom); in testGetCursorPath_whenShiftIsPressed()
114 expectedPath.lineTo(h1, bottom); in testGetCursorPath_whenShiftIsPressed()
143 expectedPath.moveTo(h1, top); in testGetCursorPath_whenAltIsPressed()
144 expectedPath.lineTo(h1, bottom); in testGetCursorPath_whenAltIsPressed()
146 expectedPath.moveTo(h1, top); in testGetCursorPath_whenAltIsPressed()
[all …]
/aosp12/build/soong/etc/
H A Dprebuilt_etc_test.go253 expectedPath string
261 expectedPath: filepath.Join(targetPath, "system/etc/firmware"),
271 expectedPath: filepath.Join(targetPath, "vendor/firmware/sub_dir"),
277 android.AssertPathRelativeToTopEquals(t, "install dir", tt.expectedPath, p.installDirPath)
287 expectedPath string
295 expectedPath: filepath.Join(targetPath, "system/etc/dsp"),
305 expectedPath: filepath.Join(targetPath, "vendor/dsp/sub_dir"),
311 android.AssertPathRelativeToTopEquals(t, "install dir", tt.expectedPath, p.installDirPath)
321 expectedPath string
329 expectedPath: filepath.Join(targetPath, "system/lib/rfsa"),
[all …]
/aosp12/build/soong/java/
H A Drro_test.go105 expectedPath := []string{"build/make/target/product/security/platform.x509.pem"}
106 if !reflect.DeepEqual(path, expectedPath) {
107 t.Errorf("Unexpected LOCAL_CERTIFICATE value: %v, expected: %v", path, expectedPath)
112 expectedPath = []string{shared.JoinPath("out/target/product/test_device/product/overlay")}
113 …android.AssertStringPathsRelativeToTopEquals(t, "LOCAL_MODULE_PATH", result.Config, expectedPath, …
119 expectedPath = []string{shared.JoinPath("out/target/product/test_device/product/overlay/faza")}
120 …android.AssertStringPathsRelativeToTopEquals(t, "LOCAL_MODULE_PATH", result.Config, expectedPath, …
163expectedPath := []string{shared.JoinPath("out/target/product/test_device/product/overlay/default_t…
164 android.AssertStringPathsRelativeToTopEquals(t, "LOCAL_MODULE_PATH", config, expectedPath, path)
180 expectedPath = []string{shared.JoinPath("out/target/product/test_device/system/overlay")}
[all …]
H A Dapp_import_test.go466 expectedPath := "."
479 } else if actualPath[0] != expectedPath {
480 t.Errorf("LOCAL_PATH mismatch, actual: %s, expected: %s", actualPath[0], expectedPath)
/aosp12/frameworks/base/core/tests/coretests/src/android/graphics/
H A DPathOffsetTest.java50 Path expectedPath = new Path(); in testPathOffset() local
51 expectedPath.addRect(START_X + OFFSET_X, START_Y + OFFSET_Y, START_X + OFFSET_X + SQUARE, in testPathOffset()
54 assertPaths(actualPath, expectedPath); in testPathOffset()
68 Path expectedPath = new Path(); in testPathOffsetWithDestination() local
69 expectedPath.addRect(START_X + OFFSET_X, START_Y + OFFSET_Y, START_X + OFFSET_X + SQUARE, in testPathOffsetWithDestination()
72 assertPaths(actualPath, expectedPath); in testPathOffsetWithDestination()
/aosp12/frameworks/base/libs/hwui/tests/unit/
H A DVectorDrawableTests.cpp278 SkPath expectedPath; in TEST() local
279 testData.skPathLamda(&expectedPath); in TEST()
282 EXPECT_EQ(expectedPath, actualPath); in TEST()
295 SkPath expectedPath; in TEST() local
296 testData.skPathLamda(&expectedPath); in TEST()
297 EXPECT_EQ(expectedPath, actualPath); in TEST()
/aosp12/build/soong/sh/
H A Dsh_binary_test.go56 expectedPath := "out/target/product/test_device/data/nativetest64/foo_test"
58 …android.AssertStringPathRelativeToTopEquals(t, "LOCAL_MODULE_PATH[0]", config, expectedPath, actua…
78 expectedPath := "out/target/product/test_device/data/nativetest64/foo"
80 …android.AssertStringPathRelativeToTopEquals(t, "LOCAL_MODULE_PATH[0]", config, expectedPath, actua…
/aosp12/frameworks/base/core/tests/coretests/src/android/app/usage/
H A DUsageStatsTest.java130 final String expectedPath = "/data/system_ce/" + userId + "/usagestats"; in testDataIsInCe() local
133 assertEquals(expectedPath, actualPath); in testDataIsInCe()
/aosp12/packages/providers/MediaProvider/src/com/android/providers/media/util/
H A DFileUtils.java1576 Optional<String> expectedPath = readString(nomedia);
1579 return !expectedPath.isPresent()
1580 || !expectedPath.get().equals(dir.getPath());
/aosp12/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java3328 final String expectedPath = c.getString(1); in ensureFileColumns() local
3330 if (!Objects.equals(expectedPath, actualPath)) { in ensureFileColumns()
3332 + " item not allowed in relation to " + expectedPath + " item"); in ensureFileColumns()