Searched refs:repeat (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/os/
H A DVibrator.java63 * To cause the pattern to repeat, pass the index into the pattern array at which
64 * to start the repeat, or -1 to disable repeating.
70 * @param repeat the index into pattern at which to repeat, or -1 if
71 * you don't want to repeat.
73 public abstract void vibrate(long[] pattern, int repeat); argument
H A DNullVibrator.java46 public void vibrate(long[] pattern, int repeat) { argument
47 if (repeat >= pattern.length) {
H A DIVibratorService.aidl24 void vibratePattern(in long[] pattern, int repeat, IBinder token);
H A DSystemVibrator.java64 public void vibrate(long[] pattern, int repeat) { argument
72 if (repeat < pattern.length) {
74 mService.vibratePattern(pattern, repeat, mToken);
/frameworks/base/services/java/com/android/server/
H A DVibratorService.java83 Vibration(IBinder token, long[] pattern, int repeat, int uid) { argument
84 this(token, 0, pattern, repeat, uid);
88 int repeat, int uid) {
93 mRepeat = repeat;
202 public void vibratePattern(long[] pattern, int repeat, IBinder token) { argument
223 || repeat >= pattern.length || token == null) {
227 Vibration vib = new Vibration(token, pattern, repeat, uid);
237 if (repeat >= 0) {
241 // A negative repeat means that this pattern is not meant
242 // to repeat
87 Vibration(IBinder token, long millis, long[] pattern, int repeat, int uid) argument
[all...]
/frameworks/base/core/java/android/hardware/input/
H A DIInputManager.aidl57 void vibrate(int deviceId, in long[] pattern, int repeat, IBinder token);
H A DInputManager.java801 public void vibrate(long[] pattern, int repeat) { argument
802 if (repeat >= pattern.length) {
806 mIm.vibrate(mDeviceId, pattern, repeat, mToken);
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css436 background-repeat:repeat-x;
546 background-repeat: no-repeat;
667 background-repeat:repeat-x;
698 background-repeat:repeat-x;
715 background-repeat:no-repeat;
[all...]
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1198 * This flag is set for the first key repeat that occurs after the
1370 * @param repeat A repeat count for down events (> 0 if this is after the
1374 int code, int repeat) {
1379 mRepeatCount = repeat;
1393 * @param repeat A repeat count for down events (> 0 if this is after the
1398 int code, int repeat, int metaState) {
1403 mRepeatCount = repeat;
1418 * @param repeat
1373 KeyEvent(long downTime, long eventTime, int action, int code, int repeat) argument
1397 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState) argument
1424 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode) argument
1454 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode, int flags) argument
1486 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode, int flags, int source) argument
1588 obtain(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode, int flags, int source, String characters) argument
[all...]
/frameworks/base/docs/html/guide/google/gcm/client-javadoc/
H A Ddefault.css283 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
319 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
410 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
425 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
617 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
647 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
657 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
667 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
683 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
716 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scrol
[all...]
/frameworks/base/docs/html/guide/google/gcm/server-javadoc/
H A Ddefault.css283 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
319 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
410 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
425 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
617 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
647 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
657 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
667 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
683 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
716 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scrol
[all...]
/frameworks/base/core/java/android/text/method/
H A DBaseMovementMethod.java56 final int repeat = event.getRepeatCount();
58 for (int i = 0; i < repeat; i++) {
/frameworks/base/services/input/
H A DInputReader.h338 ssize_t repeat, int32_t token) = 0;
407 ssize_t repeat, int32_t token);
539 void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token);
934 virtual void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat,
982 virtual void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat,
H A DInputReader.cpp676 ssize_t repeat, int32_t token) {
682 device->vibrate(pattern, patternSize, repeat, token);
1050 void InputDevice::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, argument
1055 mapper->vibrate(pattern, patternSize, repeat, token);
1768 void InputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, argument
1874 void VibratorInputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, argument
1884 ALOGD("vibrate: deviceId=%d, pattern=[%s], repeat=%ld, token=%d",
1885 getDeviceId(), patternStr.string(), repeat, token);
1891 mRepeat = repeat;
2102 // key repeat, b
675 vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token) argument
[all...]
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java183 int repeat, int token);
1154 public void vibrate(int deviceId, long[] pattern, int repeat, IBinder token) { argument
1155 if (repeat >= pattern.length) {
1176 nativeVibrate(mPtr, deviceId, pattern, repeat, v.mTokenValue);
182 nativeVibrate(int ptr, int deviceId, long[] pattern, int repeat, int token) argument
/frameworks/base/core/tests/coretests/src/android/util/
H A DJsonReaderTest.java887 String spaces = repeat(' ', 8192);
904 private String repeat(char c, int count) { method in class:JsonReaderTest
/frameworks/base/services/java/com/android/server/am/
H A DActiveServices.java908 boolean repeat;
910 repeat = false;
919 repeat = true;
923 } while (repeat);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java78 * For keys that repeat, this is only called once.
86 * For keys that repeat, this is only called once.
267 Message repeat = Message.obtain(this, MSG_REPEAT);
268 sendMessageDelayed(repeat, REPEAT_INTERVAL);
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp1224 jint repeat, jint token) {
1244 im->getInputManager()->getReader()->vibrate(deviceId, pattern, patternSize, repeat, token);
1222 nativeVibrate(JNIEnv* env, jclass clazz, jint ptr, jint deviceId, jlongArray patternObj, jint repeat, jint token) argument

Completed in 207 milliseconds