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

/frameworks/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.java13052 postDelayed(mUnsetPressedState,
13091 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
15774 * @see #postDelayed
15808 public boolean postDelayed(Runnable action, long delayMillis) { method in class:View
15811 return attachInfo.mHandler.postDelayed(action, delayMillis);
15816 getRunQueue().postDelayed(action, delayMillis);
15861 getRunQueue().postDelayed(action, delayMillis);
15876 * @see #postDelayed
16045 postDelayed(mSendViewScrolledAccessibilityEvent,
17576 * 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},
427 public final boolean postDelayed(Runnable r, long delayMillis) method in class:Handler

Completed in 3504 milliseconds