Searched defs:repeat (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/os/
H A DVibrator.java55 * and then after that it alternates. If you want to repeat, pass the
56 * index into the pattern at which to start the repeat.
59 * @param repeat the index into pattern at which to repeat, or -1 if
60 * you don't want to repeat.
62 public void vibrate(long[] pattern, int repeat) argument
67 if (repeat < pattern.length) {
69 mService.vibratePattern(pattern, repeat, mToken);
/frameworks/base/libs/surfaceflinger/
H A DBlurFilter.cpp231 int repeat)
255 // Apply the blur 'repeat' times, this is used to approximate
257 for (int k=0 ; k<repeat ; k++) {
305 *fb++ = current.to(areaShift, k==repeat-1, dither);
314 *fb++ = current.to(areaShift, k==repeat-1, dither);
322 *fb++ = current.to(areaShift, k==repeat-1, dither);
356 int repeat);
361 int repeat)
365 err = blurFilter< BlurColor565<0x80> >(image, image, kernelSizeUser, repeat);
367 err = blurFilter< BlurColor888X<0x80> >(image, image, kernelSizeUser, repeat);
227 blurFilter( GGLSurface const* dst, GGLSurface const* src, int kernelSizeUser, int repeat) argument
358 blurFilter( GGLSurface const* image, int kernelSizeUser, int repeat) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DVibratorService.java54 Vibration(IBinder token, long[] pattern, int repeat) { argument
55 this(token, 0, pattern, repeat);
59 int repeat) {
64 mRepeat = repeat;
144 public void vibratePattern(long[] pattern, int repeat, IBinder token) { argument
164 || repeat >= pattern.length || token == null) {
168 Vibration vib = new Vibration(token, pattern, repeat);
178 if (repeat >= 0) {
182 // A negative repeat means that this pattern is not meant
183 // to repeat
58 Vibration(IBinder token, long millis, long[] pattern, int repeat) argument
[all...]
/frameworks/base/core/java/android/view/
H A DKeyEvent.java282 * This flag is set for the first key repeat that occurs after the
417 * @param repeat A repeat count for down events (> 0 if this is after the
421 int code, int repeat) {
426 mRepeatCount = repeat;
439 * @param repeat A repeat count for down events (> 0 if this is after the
444 int code, int repeat, int metaState) {
449 mRepeatCount = repeat;
463 * @param repeat
420 KeyEvent(long downTime, long eventTime, int action, int code, int repeat) argument
443 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState) argument
469 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int device, int scancode) argument
499 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int device, int scancode, int flags) argument
[all...]

Completed in 164 milliseconds