/cts/tests/app/src/android/app/cts/ |
D | RecoverableSecurityExceptionTest.java | 43 final RecoverableSecurityException after = parcel.readParcelable(null); in testParcelable() local 45 assertEquals(before.getMessage(), after.getMessage()); in testParcelable() 46 assertEquals(before.getUserMessage(), after.getUserMessage()); in testParcelable() 47 assertEquals(before.getUserAction().getTitle(), after.getUserAction().getTitle()); in testParcelable()
|
/cts/tests/tests/provider/src/android/provider/cts/media/ |
D | MediaStorePlacementTest.java | 137 final File after = ProviderTestUtils.getRelativeFile(uri); in testDisplayName_SameMime() local 138 assertEquals(before.getParent(), after.getParent()); in testDisplayName_SameMime() 139 assertEquals(name, after.getName()); in testDisplayName_SameMime() 155 final File after = ProviderTestUtils.getRelativeFile(uri); in testDisplayName_DifferentMime() local 156 assertTrue(after.getName().startsWith(name)); in testDisplayName_DifferentMime() 157 assertTrue(after.getName().endsWith(".jpg")); in testDisplayName_DifferentMime() 171 final File after = ProviderTestUtils.getRelativeFile(uri); in testDirectory_Valid() local 172 assertEquals("Pictures", after.getParent()); in testDirectory_Valid() 177 final File after = ProviderTestUtils.getRelativeFile(uri); in testDirectory_Valid() local 178 assertEquals("DCIM/Vacation", after.getParent()); in testDirectory_Valid() [all …]
|
/cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/ |
D | UriGrantsTest.java | 120 long after = System.currentTimeMillis(); in testGrantPersistableUriPermission() local 121 assertPersistedUriPermission(target, Intent.FLAG_GRANT_READ_URI_PERMISSION, before, after); in testGrantPersistableUriPermission() 138 assertPersistedUriPermission(target, Intent.FLAG_GRANT_READ_URI_PERMISSION, before, after); in testGrantPersistableUriPermission() 148 after = System.currentTimeMillis(); in testGrantPersistableUriPermission() 149 assertPersistedUriPermission(target, Intent.FLAG_GRANT_READ_URI_PERMISSION, before, after); in testGrantPersistableUriPermission() 155 after = System.currentTimeMillis(); in testGrantPersistableUriPermission() 158 before, after); in testGrantPersistableUriPermission() 162 assertPersistedUriPermission(target, Intent.FLAG_GRANT_WRITE_URI_PERMISSION, before, after); in testGrantPersistableUriPermission() 248 long after = System.currentTimeMillis(); in testGrantPersistablePrefixUriPermission() local 249 assertPersistedUriPermission(target, Intent.FLAG_GRANT_READ_URI_PERMISSION, before, after); in testGrantPersistablePrefixUriPermission() [all …]
|
/cts/tests/tests/preference/src/android/preference/cts/ |
D | PreferenceActivityLegacyFlowTest.java | 85 Bitmap after = mTestUtils.takeScreenshot(); in legacyActivityRecreateTest() local 86 assertScreenshotsAreEqual(before, after); in legacyActivityRecreateTest() 105 private void assertScreenshotsAreEqual(Bitmap before, Bitmap after) { in assertScreenshotsAreEqual() argument 106 assertTrue("Screenshots do not match!", BitmapUtils.compareBitmaps(before, after)); in assertScreenshotsAreEqual()
|
D | PreferenceActivityFlowTest.java | 321 Bitmap after = mTestUtils.takeScreenshot(); in startWithFragmentAndRecreateInner() local 322 assertScreenshotsAreEqual(before, after); in startWithFragmentAndRecreateInner() 430 Bitmap after = mTestUtils.takeScreenshot(); in recreateTest() local 431 assertScreenshotsAreEqual(before, after); in recreateTest() 478 Bitmap after = mTestUtils.takeScreenshot(); in recreateInnerFragmentTest() local 480 assertScreenshotsAreEqual(before, after); in recreateInnerFragmentTest() 483 private void assertScreenshotsAreEqual(Bitmap before, Bitmap after) { in assertScreenshotsAreEqual() argument 485 if (!BitmapUtils.compareBitmaps(before, after, 0.99)) { in assertScreenshotsAreEqual() 491 afterFile = dumpBitmap(after, testName + "-after.png"); in assertScreenshotsAreEqual()
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | BitmapRGBAF16Test.java | 133 int after = mOpaqueBitmap.getPixel(5, 5); in testSetPixel() local 134 assertTrue(before != after); in testSetPixel() 135 ColorUtils.verifyColor(0x7f102030, after, 1); in testSetPixel() 139 after = mTransparentBitmap.getPixel(5, 5); in testSetPixel() 140 assertTrue(before != after); in testSetPixel() 141 ColorUtils.verifyColor(0x7f102030, after, 1); in testSetPixel()
|
/cts/tests/openglperf2/jni/graphics/ |
D | ProgramNode.cpp | 25 void ProgramNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in after() function in ProgramNode 26 program.after(model, view, projection); in after()
|
D | Program.cpp | 25 void Program::after(Matrix& model, Matrix& view, Matrix& projection) { in after() function in Program
|
D | Program.h | 26 virtual void after(Matrix& model, Matrix& view, Matrix& projection);
|
D | PerspectiveMeshNode.h | 29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
D | MeshNode.h | 28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
|
D | TexturedMeshNode.h | 29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
D | TransformationNode.cpp | 32 void TransformationNode::after(Program& program, Matrix& model, Matrix& view, in after() function in TransformationNode
|
D | TransformationNode.h | 28 virtual void after(Program& program, Matrix& model, Matrix& view,
|
D | SceneGraphNode.h | 28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
|
D | SceneGraphNode.cpp | 31 after(program, model, view, projection); in draw()
|
D | TexturedMeshNode.cpp | 39 void TexturedMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in after() function in TexturedMeshNode
|
/cts/tests/tests/appop/src/android/app/appops/cts/ |
D | AttributionTest.kt | 98 val after = getOpEntry(uid, PKG, OPSTR_READ_CONTACTS)!! in manifestReceiverTagging() constant 99 assertThat(after.attributedOpEntries[ATTRIBUTION_1]!! in manifestReceiverTagging() 103 assertThat(after.attributedOpEntries[ATTRIBUTION_2]!! in manifestReceiverTagging() 107 assertThat(after.attributedOpEntries[ATTRIBUTION_3]!! in manifestReceiverTagging()
|
/cts/tests/openglperf2/jni/reference/scene/flocking/ |
D | WaterMeshNode.h | 29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
/cts/tests/openglperf2/jni/reference/scene/glowing/ |
D | BlurMeshNode.h | 29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/ |
D | AntiTrimmerTextWatcher.java | 48 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument
|
/cts/tests/framework/base/windowmanager/src/android/server/wm/ |
D | WindowInsetsAnimationImeTests.java | 105 WindowInsets after = mActivity.mLastWindowInsets; in testAnimationCallbacks_overlapping_opposite() local 139 assertEquals(after.getInsets(statusBars()), in testAnimationCallbacks_overlapping_opposite() 145 assertEquals(after.getInsets(ime()), in testAnimationCallbacks_overlapping_opposite()
|
D | WindowInsetsAnimationTestBase.java | 76 WindowInsets after = activity.mLastWindowInsets; in commonAnimationAssertions() local 83 ? after.getInsets(types) in commonAnimationAssertions() 98 assertBeforeAfterState(callback.animationSteps, before, after); in commonAnimationAssertions() 103 WindowInsets after) { in assertBeforeAfterState() argument 105 assertEquals(after, steps.get(steps.size() - 1).insets); in assertBeforeAfterState()
|
/cts/tests/tests/print/src/android/print/cts/ |
D | PrintJobStateTransitionsTest.java | 173 private static boolean isStateTransitionAllowed(int before, int after) { 176 switch (after) { 187 switch (after) { 195 switch (after) {
|
/cts/hostsidetests/securitybulletin/src/android/security/cts/ |
D | RegexUtils.java | 92 private static String getInputContext(String input, int start, int end, int before, int after) { in getInputContext() argument 94 end = Math.min(input.length(), end + after); in getInputContext()
|