Home
last modified time | relevance | path

Searched refs:Operation (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/media/src/android/media/cts/
DVolumeShaperTest.java152 private static final VolumeShaper.Operation[] ALL_STANDARD_OPERATIONS = {
153 VolumeShaper.Operation.PLAY,
154 VolumeShaper.Operation.REVERSE,
530 for (VolumeShaper.Operation operation : ALL_STANDARD_OPERATIONS) { in testVolumeShaperOperationParcelable()
543 final VolumeShaper.Operation restoredOperation = in testVolumeShaperOperationParcelable()
544 VolumeShaper.Operation.CREATOR.createFromParcel(dstParcel); in testVolumeShaperOperationParcelable()
743 volumeShaper.apply(VolumeShaper.Operation.PLAY); in testPlayerJoin()
756 VolumeShaper.Operation.PLAY, true /* join */); in testPlayerJoin()
788 volumeShaper.apply(VolumeShaper.Operation.PLAY); in testPlayerCubicMonotonic()
800 VolumeShaper.Operation.PLAY, true /* join */); in testPlayerCubicMonotonic()
[all …]
/cts/libs/install/src/com/android/cts/install/lib/
DInstallUtils.java420 private interface Operation { interface in InstallUtils
433 Operation operation) { in assertThrows()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-3913/
Dpoc.cpp116 const sp<VolumeShaper::Operation> &operation) { in applyVolumeShaper()
/cts/hostsidetests/scopedstorage/libs/ScopedStorageTestLib/src/android/scopedstorage/cts/lib/
DTestUtils.java868 public static <T extends Exception> void assertThrows(Class<T> clazz, Operation<Exception> r) in assertThrows()
877 Class<T> clazz, String errMsg, Operation<Exception> r) throws Exception { in assertThrows()
900 public interface Operation<T extends Exception> { interface in TestUtils