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

/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DHandlerActionQueue_Delegate.java32 /*package*/ static void postDelayed(HandlerActionQueue thisQueue, Runnable action, long method in class:HandlerActionQueue_Delegate
/frameworks/base/core/java/android/view/
H A DHandlerActionQueue.java33 postDelayed(action, 0);
36 public void postDelayed(Runnable action, long delayMillis) { method in class:HandlerActionQueue
85 handler.postDelayed(handlerAction.action, handlerAction.delay);
H A DView.java12997 postDelayed(mUnsetPressedState,
13036 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
15706 * @see #postDelayed
15740 public boolean postDelayed(Runnable action, long delayMillis) { method in class:View
15743 return attachInfo.mHandler.postDelayed(action, delayMillis);
15748 getRunQueue().postDelayed(action, delayMillis);
15793 getRunQueue().postDelayed(action, delayMillis);
15808 * @see #postDelayed
15977 postDelayed(mSendViewScrolledAccessibilityEvent,
17508 * high-level events via {@link #post(Runnable)}, {@link #postDelayed(Runnabl
[all...]
/frameworks/base/core/java/android/os/
H A DHandler.java41 * {@link #postDelayed}, {@link #sendEmptyMessage},
426 public final boolean postDelayed(Runnable r, long delayMillis) method in class:Handler

Completed in 2886 milliseconds