Home
last modified time | relevance | path

Searched refs:repeat (Results 1 – 25 of 37) sorted by relevance

12

/frameworks/base/docs/html/reference/renderscript/
Dtabs.css34 background-repeat:no-repeat;
48 background-repeat:repeat-x;
56 background-repeat:repeat-x;
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;
740 background-repeat:no-repeat;
778 background-repeat:repeat-x;
/frameworks/base/services/java/com/android/server/
DVibratorService.java82 Vibration(IBinder token, long[] pattern, int repeat, int uid) { in Vibration() argument
83 this(token, 0, pattern, repeat, uid); in Vibration()
87 int repeat, int uid) { in Vibration() argument
92 mRepeat = repeat; in Vibration()
192 public void vibratePattern(long[] pattern, int repeat, IBinder token) { in vibratePattern() argument
213 || repeat >= pattern.length || token == null) { in vibratePattern()
217 Vibration vib = new Vibration(token, pattern, repeat, uid); in vibratePattern()
227 if (repeat >= 0) { in vibratePattern()
466 int repeat = mVibration.mRepeat; in run() local
489 if (repeat < 0) { in run()
[all …]
/frameworks/base/core/java/android/os/
DSystemVibrator.java64 public void vibrate(long[] pattern, int repeat) { in vibrate() argument
72 if (repeat < pattern.length) { in vibrate()
74 mService.vibratePattern(pattern, repeat, mToken); in vibrate()
DNullVibrator.java46 public void vibrate(long[] pattern, int repeat) { in vibrate() argument
47 if (repeat >= pattern.length) { in vibrate()
DVibrator.java73 public abstract void vibrate(long[] pattern, int repeat); in vibrate() argument
DIVibratorService.aidl24 void vibratePattern(in long[] pattern, int repeat, IBinder token); in vibratePattern() argument
/frameworks/base/core/java/android/view/
DKeyEvent.java1374 int code, int repeat) { in KeyEvent() argument
1379 mRepeatCount = repeat; in KeyEvent()
1398 int code, int repeat, int metaState) { in KeyEvent() argument
1403 mRepeatCount = repeat; in KeyEvent()
1425 int code, int repeat, int metaState, in KeyEvent() argument
1431 mRepeatCount = repeat; in KeyEvent()
1455 int code, int repeat, int metaState, in KeyEvent() argument
1461 mRepeatCount = repeat; in KeyEvent()
1487 int code, int repeat, int metaState, in KeyEvent() argument
1493 mRepeatCount = repeat; in KeyEvent()
[all …]
/frameworks/base/core/java/android/hardware/input/
DIInputManager.aidl57 void vibrate(int deviceId, in long[] pattern, int repeat, IBinder token); in vibrate() argument
DInputManager.java801 public void vibrate(long[] pattern, int repeat) { in vibrate() argument
802 if (repeat >= pattern.length) { in vibrate()
806 mIm.vibrate(mDeviceId, pattern, repeat, mToken); in vibrate()
/frameworks/base/core/java/android/text/method/
DBaseMovementMethod.java56 final int repeat = event.getRepeatCount(); in onKeyOther() local
58 for (int i = 0; i < repeat; i++) { in onKeyOther()
/frameworks/base/services/input/
DInputReader.h289 ssize_t repeat, int32_t token) = 0;
358 ssize_t repeat, int32_t token);
490 void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token);
885 virtual void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat,
929 virtual void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat,
DInputReader.cpp692 ssize_t repeat, int32_t token) { in vibrate() argument
698 device->vibrate(pattern, patternSize, repeat, token); in vibrate()
1065 void InputDevice::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, in vibrate() argument
1070 mapper->vibrate(pattern, patternSize, repeat, token); in vibrate()
1783 void InputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, in vibrate() argument
1870 void VibratorInputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, in vibrate() argument
1881 getDeviceId(), patternStr.string(), repeat, token); in vibrate()
1887 mRepeat = repeat; in vibrate()
/frameworks/base/docs/html/guide/topics/media/
Djetplayer.jd59 // queue segment 5, repeat once, use General MIDI, transpose by -1 octave
/frameworks/base/docs/html/guide/topics/resources/
Danimation-resource.jd79 android:repeatMode=["repeat" | "reverse"]
88 android:repeatMode=["repeat" | "reverse"]
186 … <em>int</em>. How many times to repeat an animation. Set to <code>"-1"</code> to infinitely
187repeat or to a positive integer. For example, a value of <code>"1"</code> means that the animation
199 …to have the animation reverse direction with each iteration or <code>"repeat"</code> to have the a…
260 … <em>int</em>. How many times to repeat an animation. Set to <code>"-1"</code> to infinitely
261repeat or to a positive integer. For example, a value of <code>"1"</code> means that the animation
272 …to have the animation reverse direction with each iteration or <code>"repeat"</code> to have the a…
/frameworks/base/docs/html/develop/
Dindex.jd97 … <div class="feed-image" style="background:url('../images/emulator-wvga800l.png') no-repeat 0 0">
103 … <div class="feed-image" style="background:url('../images/develop/auth-code.png') no-repeat 0 0">
116 …e" style="background:url('http://developer.android.com/images/home/play_logo.png') no-repeat 0 0" >
/frameworks/base/services/java/com/android/server/input/
DInputManagerService.java176 int repeat, int token); in nativeVibrate() argument
1097 public void vibrate(int deviceId, long[] pattern, int repeat, IBinder token) { in vibrate() argument
1098 if (repeat >= pattern.length) { in vibrate()
1119 nativeVibrate(mPtr, deviceId, pattern, repeat, v.mTokenValue); in vibrate()
/frameworks/compile/mclinker/utils/gtest/src/
Dgtest-all.cpp564 repeat_ = GTEST_FLAG(repeat); in GTestFlagSaver()
585 GTEST_FLAG(repeat) = repeat_; in ~GTestFlagSaver()
1322 bool escaped, char ch, char repeat, const char* regex, const char* str);
1547 repeat,
4021 if (GTEST_FLAG(repeat) != 1) in OnTestIterationStart()
5507 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); in RunAllTests() local
5509 const bool forever = repeat < 0; in RunAllTests()
5510 for (int i = 0; forever || i != repeat; i++) { in RunAllTests()
6104 ParseInt32Flag(arg, kRepeatFlag, &GTEST_FLAG(repeat)) || in ParseGoogleTestFlagsOnlyImpl()
8098 bool escaped, char c, char repeat, const char* regex, in MatchRepetitionAndRegexAtHead() argument
[all …]
/frameworks/base/core/tests/coretests/src/android/util/
DJsonReaderTest.java887 String spaces = repeat(' ', 8192); in testFailWithPositionGreaterThanBufferSize()
904 private String repeat(char c, int count) { in repeat() method in JsonReaderTest
/frameworks/base/core/java/android/inputmethodservice/
DKeyboardView.java267 Message repeat = Message.obtain(this, MSG_REPEAT);
268 sendMessageDelayed(repeat, REPEAT_INTERVAL);
/frameworks/base/services/jni/
Dcom_android_server_input_InputManagerService.cpp1266 jint repeat, jint token) { in nativeVibrate() argument
1286 im->getInputManager()->getReader()->vibrate(deviceId, pattern, patternSize, repeat, token); in nativeVibrate()
/frameworks/base/docs/html/guide/topics/ui/notifiers/
Dnotifications.jd396 <p>If you want the sound to continuously repeat until the user responds to the notification
426 The pattern can be as long as you like, but it can't be set to repeat.
474 <dd>Add this to the <var>flags</var> field to repeat the audio until the
/frameworks/base/docs/html/guide/topics/media/jet/
Djetcreator_manual.jd430 segments start and stop time and each segments quantize, transpose, repeat and
494 mute flags, repeat and transpose settings and audition the segment as it will
499 <p><b>Note</b>: the audition attributes (mute flags, repeat and transpose) are <i
554 Indicates the number of times a segment should repeat during playback</li>
/frameworks/base/docs/html/training/custom-views/
Dcreate-view.jd146 <p>In order to avoid having to repeat the long namespace URI, the sample uses an {@code
/frameworks/base/docs/html/training/id-auth/
Dauthenticate.jd244 repeat the token acquisition dance one

12