Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/view/
DSoundEffectConstantsTest.java40 assertTrue(SoundEffectConstants.isNavigationRepeat( in testIsNavigationRepeat()
42 assertTrue(SoundEffectConstants.isNavigationRepeat( in testIsNavigationRepeat()
45 SoundEffectConstants.isNavigationRepeat(SoundEffectConstants.NAVIGATION_REPEAT_UP)); in testIsNavigationRepeat()
46 assertTrue(SoundEffectConstants.isNavigationRepeat( in testIsNavigationRepeat()
48 assertFalse(SoundEffectConstants.isNavigationRepeat(SoundEffectConstants.NAVIGATION_RIGHT)); in testIsNavigationRepeat()
49 assertFalse(SoundEffectConstants.isNavigationRepeat(SoundEffectConstants.NAVIGATION_LEFT)); in testIsNavigationRepeat()
50 assertFalse(SoundEffectConstants.isNavigationRepeat(SoundEffectConstants.NAVIGATION_UP)); in testIsNavigationRepeat()
51 assertFalse(SoundEffectConstants.isNavigationRepeat(SoundEffectConstants.NAVIGATION_DOWN)); in testIsNavigationRepeat()
52 assertFalse(SoundEffectConstants.isNavigationRepeat(-1)); in testIsNavigationRepeat()
/frameworks/base/core/java/android/view/
DSoundEffectConstants.java146 public static boolean isNavigationRepeat(@NavigationSoundEffect int effectId) { in isNavigationRepeat() method in SoundEffectConstants
DViewRootImpl.java7898 && SoundEffectConstants.isNavigationRepeat(effectId)) { in playSoundEffect()