Home | History | Annotate | Download | only in os

Lines Matching defs:repeat

93      * To cause the pattern to repeat, pass the index into the pattern array at which
94 * to start the repeat, or -1 to disable repeating.
100 * @param repeat the index into pattern at which to repeat, or -1 if
101 * you don't want to repeat.
103 public void vibrate(long[] pattern, int repeat) {
104 vibrate(pattern, repeat, null);
117 * To cause the pattern to repeat, pass the index into the pattern array at which
118 * to start the repeat, or -1 to disable repeating.
124 * @param repeat the index into pattern at which to repeat, or -1 if
125 * you don't want to repeat.
131 public void vibrate(long[] pattern, int repeat, AudioAttributes attributes) {
132 vibrate(Process.myUid(), mPackageName, pattern, repeat, attributes);
148 public abstract void vibrate(int uid, String opPkg, long[] pattern, int repeat,