HomeSort by relevance Sort by last modified time
    Searched refs:delay (Results 126 - 150 of 1094) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
delay.h 15 #include <asm/delay.h>
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
delay.h 15 #include <asm/delay.h>
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
delay.h 15 #include <asm/delay.h>
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
delay.h 15 #include <asm/delay.h>
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
delay.h 15 #include <asm/delay.h>
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
delay.h 15 #include <asm/delay.h>
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
apic_32.h 22 #include <linux/delay.h>
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
delay.h 15 #include <asm/delay.h>
  /external/iptables/extensions/
libxt_LED.c 30 {.name = "led-delay", .id = O_LED_DELAY, .type = XTTYPE_STRING},
42 "--led-delay ms leave the LED on for this number of\n"
61 led->delay = -1;
62 else if (!xtables_strtoui(cb->arg, NULL, &led->delay, 0, UINT32_MAX))
64 "Delay value must be within range 0..%u",
88 if (led->delay == -1)
89 printf(" led-delay:inf");
91 printf(" led-delay:%dms", led->delay);
111 /* Only print the delay if it's not zero (the default) *
    [all...]
  /frameworks/base/core/java/android/view/animation/
LayoutAnimationController.java 33 * is used by {@link android.view.ViewGroup} to compute the delay by which each
34 * child's animation start must be offset. The delay is computed by using
37 * This standard implementation computes the delay by multiplying a fixed
41 * of computing the delay. For instance, a
43 * delay based on the column and row indices of the child in its parent view
46 * Information used to compute the animation delay of each child are stored
128 * Creates a new layout animation controller with a delay of 50%
138 * Creates a new layout animation controller with the specified delay
142 * @param delay the delay by which each child's animation must be offse
323 final long delay = getDelayForView(view) + mAnimation.getStartOffset(); local
378 final float delay = mDelay * mAnimation.getDuration(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
TimerHandler.java 87 final int delay) {
89 if (key == null || delay == 0) {
93 obtainMessage(MSG_REPEAT_KEY, key.getCode(), repeatCount, tracker), delay); local
110 public void startLongPressTimerOf(@Nonnull final PointerTracker tracker, final int delay) {
119 sendMessageDelayed(obtainMessage(messageId, tracker), delay); local
220 public void postDismissKeyPreview(@Nonnull final Key key, final long delay) {
221 sendMessageDelayed(obtainMessage(MSG_DISMISS_KEY_PREVIEW, key), delay); local
224 public void postDismissGestureFloatingPreviewText(final long delay) {
225 sendMessageDelayed(obtainMessage(MSG_DISMISS_GESTURE_FLOATING_PREVIEW_TEXT), delay); local
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationUtils.java 92 long delay = columns[0]; local
101 creator.createAnimation(objects[row], delay, mDuration,
120 long delay = columns[col]; local
125 creator.createAnimation(objects[row][col], delay, mDuration,
139 long delay = calculateDelay(row, 0); local
140 mProperties.delays[row][0] = delay;
141 if (items[row] != null && delay > maxDelay) {
142 maxDelay = delay;
159 long delay = calculateDelay(row, col); local
160 mProperties.delays[row][col] = delay;
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
TransitionDrawableTest.java 173 private void assertTransition(int colorFrom, int colorTo, long delay) {
175 assertTransitionInProgress(colorFrom, colorTo, delay / 2);
176 assertTransitionEnd(colorTo, delay);
185 private void assertTransitionInProgress(int colorFrom, int colorTo, long delay) {
186 drawAfterDelaySync(delay);
191 private void assertTransitionEnd(int colorTo, long delay) {
192 drawAfterDelaySync(delay);
212 private void makeReverseTransitionInProgress(int duration, int delay) {
218 assertTransitionInProgress(COLOR1, COLOR0, delay);
221 private void makeTransitionInProgress(int duration, int delay) {
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
DelaySensorOperation.java 36 * @param operation the child {@link SensorOperation} to perform after the delay
37 * @param delay the amount of time to delay
38 * @param timeUnit the unit of the delay
40 public DelaySensorOperation(SensorOperation operation, long delay, TimeUnit timeUnit) {
43 mDelay = delay;
  /external/valgrind/drd/tests/
annotate_ignore_rw.c 26 const struct timespec delay = { 0, 100 * 1000 * 1000 }; local
45 nanosleep(&delay, 0);
55 * Insert a delay here in order to make sure the load of s_c happens
std_atomic.cpp 18 timespec delay = { 0, 100 * 1000 * 1000 }; local
19 nanosleep(&delay, NULL);
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 41 public RankingReconsideration(String key, long delay) {
42 mDelay = delay;
  /packages/apps/Camera2/src/com/android/camera/async/
ResettingDelayedExecutor.java 25 * An executor which executes with a delay, discarding pending executions such
40 public ResettingDelayedExecutor(ScheduledExecutorService executor, long delay, TimeUnit
43 mDelay = delay;
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
ProfilerTest.java 112 delay(millis);
116 delay(millis);
120 delay(millis);
132 void delay(int millis) { method in class:ProfilerTest
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationTemplateViewWrapper.java 117 public void setDark(boolean dark, boolean fade, long delay) {
120 mInvertHelper.fade(dark, delay);
127 fadeIconColorFilter(mIcon, dark, delay);
128 fadeIconAlpha(mIcon, dark, delay);
130 fadeGrayscale(mIcon, dark, delay);
140 setPictureGrayscale(dark, fade, delay);
143 protected void setPictureGrayscale(boolean grayscale, boolean fade, long delay) {
146 fadeGrayscale(mPicture, grayscale, delay);
154 boolean dark, long delay, Animator.AnimatorListener listener) {
161 animator.setStartDelay(delay);
    [all...]
NotificationOverflowContainer.java 54 public void setDark(boolean dark, boolean fade, long delay) {
55 super.setDark(dark, fade, delay);
59 mViewInvertHelper.fade(dark, delay);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_threading.py 16 #delay = random.random() * 2
17 delay = 0
19 print 'task', self.name, 'will run for', delay, 'sec'
26 time.sleep(delay)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_threading.py 16 #delay = random.random() * 2
17 delay = 0
19 print 'task', self.name, 'will run for', delay, 'sec'
26 time.sleep(delay)
  /system/extras/tests/bionic/libc/common/
test_pthread_mutex.c 83 time_sleep(double delay)
88 ts.tv_sec = (time_t)delay;
89 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9);
319 static void do_test_mutex_3(pthread_mutexattr_t *attr, double delay)
326 s->waitDelay = delay;
327 s->spinDelay = delay/20.;
335 time_sleep(delay);
343 static void do_test_3(double delay)
347 do_test_mutex_3(NULL, delay);
354 do_test_mutex_3(attr, delay);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUServiceThreadTest.java 130 private final long delay; field in class:ICUServiceThreadTest.TestThread
133 public TestThread(String name, ICUService service, long delay, TestLog log) {
136 this.delay = delay;
149 if (delay > 0) {
150 Thread.sleep(delay);
205 RegisterFactoryThread(String name, ICUService service, long delay, TestLog log) {
206 super("REG " + name, service, delay, log);
220 UnregisterFactoryThread(String name, ICUService service, long delay, TestLog log) {
221 super("UNREG " + name, service, delay, log)
    [all...]

Completed in 1247 milliseconds

1 2 3 4 56 7 8 91011>>