Home
last modified time | relevance | path

Searched refs:testKey (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/media/src/android/media/cts/
DMediaController2Test.java215 final String testKey = "test_key"; in testBuilder_setConnectionHints_withFrameworkParcelable() local
218 connectionHints.putParcelable(testKey, frameworkParcelable); in testBuilder_setConnectionHints_withFrameworkParcelable()
226 assertTrue(connectionHintsOut.containsKey(testKey)); in testBuilder_setConnectionHints_withFrameworkParcelable()
227 assertEquals(frameworkParcelable, connectionHintsOut.getParcelable(testKey)); in testBuilder_setConnectionHints_withFrameworkParcelable()
235 final String testKey = "test_key"; in testBuilder_setConnectionHints_withCustomParcelable() local
240 connectionHints.putParcelable(testKey, customParcelable); in testBuilder_setConnectionHints_withCustomParcelable()
DMediaSession2Test.java175 final String testKey = "test_key"; in testBuilder_setExtras_withFrameworkParcelable() local
180 extras.putParcelable(testKey, frameworkParcelable); in testBuilder_setExtras_withFrameworkParcelable()
187 assertTrue(extrasOut.containsKey(testKey)); in testBuilder_setExtras_withFrameworkParcelable()
188 assertEquals(frameworkParcelable, extrasOut.getParcelable(testKey)); in testBuilder_setExtras_withFrameworkParcelable()
194 final String testKey = "test_key"; in testBuilder_setExtras_withCustomParcelable() local
198 extras.putParcelable(testKey, customParcelable); in testBuilder_setExtras_withCustomParcelable()
DMediaSessionTest.java791 final String testKey = "test_key"; in testSessionInfoWithFrameworkParcelable() local
795 sessionInfo.putParcelable(testKey, frameworkParcelable); in testSessionInfoWithFrameworkParcelable()
802 assertTrue(sessionInfoOut.containsKey(testKey)); in testSessionInfoWithFrameworkParcelable()
803 assertEquals(frameworkParcelable, sessionInfoOut.getParcelable(testKey)); in testSessionInfoWithFrameworkParcelable()
813 final String testKey = "test_key"; in testSessionInfoWithCustomParcelable() local
818 sessionInfo.putParcelable(testKey, customParcelable); in testSessionInfoWithCustomParcelable()
DAudioMetadataTest.java57 public void testKey() throws Exception { in testKey() method in AudioMetadataTest
/cts/tests/tests/view/src/android/view/cts/
DKeyEventInterceptTest.java75 testKey(KeyEvent.KEYCODE_HOME); in testKeyCodeHome()
120 private void testKey(int keyCode) { in testKey() method in KeyEventInterceptTest