HomeSort by relevance Sort by last modified time
    Searched refs:repeatCount (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
RepeatAction.java 24 private int repeatCount, executedCount;
28 if (executedCount == repeatCount) return true;
31 if (repeatCount > 0) executedCount++;
32 if (executedCount == repeatCount) return true;
51 this.repeatCount = count;
55 return repeatCount;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimation.java 22 private int repeatCount;
78 public void setRepeatCount(int repeatCount) {
79 this.repeatCount = repeatCount;
84 return repeatCount;
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/
Timer.java 63 public Task scheduleTask (Task task, float delaySeconds, float intervalSeconds, int repeatCount) {
64 if (task.repeatCount != CANCELLED) throw new IllegalArgumentException("The same task may not be scheduled twice.");
67 task.repeatCount = repeatCount;
109 if (task.repeatCount != CANCELLED) {
110 if (task.repeatCount == 0) {
112 task.repeatCount = CANCELLED;
116 if (task.repeatCount == CANCELLED) {
123 if (task.repeatCount > 0) task.repeatCount--;
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Timer.java 65 public Task scheduleTask (Task task, float delaySeconds, float intervalSeconds, int repeatCount) {
67 if (task.repeatCount != CANCELLED) throw new IllegalArgumentException("The same task may not be scheduled twice.");
70 task.repeatCount = repeatCount;
123 if (task.repeatCount != CANCELLED) {
124 if (task.repeatCount == 0) task.repeatCount = CANCELLED;
127 if (task.repeatCount == CANCELLED) {
134 if (task.repeatCount > 0) task.repeatCount--;
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_rtttldata.h 59 EAS_U8 repeatCount; /* repeat counter */
eas_tcdata.h 56 EAS_I8 repeatCount; /* note repeat counter */
eas_imelodydata.h 61 EAS_I16 repeatCount; /* repeat counter */
eas_data.h 75 EAS_I32 repeatCount;
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 103 * are repeatCount = 1, and mirror = false.
105 public void setRepeatMirror(float repeatCount, boolean mirror) {
106 if (repeatCount >= 0) {
107 nativeSetRepeatMirror(native_instance, repeatCount, mirror);
161 private static native void nativeSetRepeatMirror(long native_instance, float repeatCount, boolean mirror);
  /frameworks/base/libs/hwui/
PropertyValuesAnimatorSet.cpp 26 Interpolator* interpolator, nsecs_t startDelay, nsecs_t duration, int repeatCount,
30 interpolator, startDelay, duration, repeatCount, repeatMode);
34 if (repeatCount == -1) {
131 nsecs_t startDelay, nsecs_t duration, int repeatCount,
135 if (repeatCount < 0) {
138 mRepeatCount = repeatCount;
165 // This makes sure we only set the fraction = repeatCount + 1 once. It is needed because there
PropertyValuesAnimatorSet.h 29 nsecs_t duration, int repeatCount, RepeatMode repeatMode);
34 // fraction range: [0, 1], iteration range [0, repeatCount]
61 nsecs_t durations, int repeatCount, RepeatMode repeatMode);
  /cts/tests/tests/media/src/android/media/cts/
JetPlayerTest.java 91 int repeatCount = 0;
95 repeatCount, transpose,
105 repeatCount, transpose,
118 int repeatCount = 1;
121 assertTrue(mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount,
125 repeatCount = 1;
127 assertTrue(mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount,
132 assertTrue(mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount,
214 public void onJetUserIdUpdate(JetPlayer player, int userId, int repeatCount) {
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 40 static void Interpolator_setRepeatMirror(JNIEnv* env, jobject clazz, jlong interpHandle, jfloat repeatCount, jboolean mirror)
43 if (repeatCount > 32000)
44 repeatCount = 32000;
46 interp->setRepeatCount(repeatCount);
  /external/skia/include/utils/
SkInterpolator.h 50 @param repeatCount Multiplies the total time by this scalar.
52 void setRepeatCount(SkScalar repeatCount) { fRepeat = repeatCount; }
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardActionListener.java 29 * @param repeatCount how many times the key was repeated. Zero if it is the first press.
32 public void onPressKey(int primaryCode, int repeatCount, boolean isSinglePointer);
108 public void onPressKey(int primaryCode, int repeatCount, boolean isSinglePointer) {}
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
TimerProxy.java 40 * @param repeatCount the number of times that the key is repeating. Starting from 1.
43 public void startKeyRepeatTimerOf(@Nonnull PointerTracker tracker, int repeatCount, int delay);
110 public void startKeyRepeatTimerOf(@Nonnull PointerTracker tracker, int repeatCount,
  /frameworks/base/media/java/android/media/
JetPlayer.java 268 * @param repeatCount the number of times the segment will be repeated. 0 means the segment will
283 public boolean queueJetSegment(int segmentNum, int libNum, int repeatCount,
285 return native_queueJetSegment(segmentNum, libNum, repeatCount,
296 * @param repeatCount the number of times the segment will be repeated. 0 means the segment will
312 public boolean queueJetSegmentMuteArray(int segmentNum, int libNum, int repeatCount,
317 return native_queueJetSegmentMuteArray(segmentNum, libNum, repeatCount,
515 * @param repeatCount the repetition count for the segment (0 means it plays once)
517 void onJetUserIdUpdate(JetPlayer player, int userId, int repeatCount);
550 int repeatCount, int transpose, int muteFlags, byte userID);
552 int repeatCount, int transpose, boolean[] muteArray, byte userID)
    [all...]
  /frameworks/base/core/java/android/text/method/
NumberKeyListener.java 114 int repeatCount = event != null ? event.getRepeatCount() : 0;
115 if (repeatCount == 0) {
126 } else if (i == '0' && repeatCount == 1) {
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 83 int repeatCount, int repeatMode,
87 valueAnimator.setRepeatCount(repeatCount);
98 public ValueAnimator createAnimatorWithRepeatCount(int repeatCount) {
99 return createAnimator(view.newBall, "y", 1000, repeatCount, ValueAnimator.REVERSE,
114 long duration, int repeatCount, int repeatMode, TimeInterpolator timeInterpolator,
119 objAnimator.setRepeatCount(repeatCount);
  /cts/tests/tests/view/src/android/view/cts/
MockTextView.java 140 public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
142 return super.onKeyMultiple(keyCode, repeatCount, event);
  /cts/tests/tests/widget/src/android/widget/cts/
MockTextView.java 140 public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
142 return super.onKeyMultiple(keyCode, repeatCount, event);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 46 int keyCode, int repeatCount, int metaState,
53 mRepeatCount = repeatCount;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeAdapter.java 54 final int repeatCount = binding.getRepeatCount();
62 for (int r = 0 ; r < repeatCount ; r++) {
  /cts/libs/deviceutil/src/android/cts/util/
KeyEventUtil.java 167 int repeatCount = event.getRepeatCount();
183 final KeyEvent newEvent = new KeyEvent(downTime, eventTime, action, code, repeatCount,
  /frameworks/base/core/java/com/android/internal/widget/
NumericTextView.java 249 public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
252 || super.onKeyMultiple(keyCode, repeatCount, event);

Completed in 1666 milliseconds

1 2 3 4 5 6 7 8 910