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.java35 postDelayed(action, 0);
38 public void postDelayed(Runnable action, long delayMillis) { method in class:HandlerActionQueue
87 handler.postDelayed(handlerAction.action, handlerAction.delay);
H A DView.java11142 postDelayed(mUnsetPressedState,
11173 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
13839 * @see #postDelayed
13873 public boolean postDelayed(Runnable action, long delayMillis) { method in class:View
13876 return attachInfo.mHandler.postDelayed(action, delayMillis);
13881 getRunQueue().postDelayed(action, delayMillis);
13926 getRunQueue().postDelayed(action, delayMillis);
13941 * @see #postDelayed
14110 postDelayed(mSendViewScrolledAccessibilityEvent,
15518 * high-level events via {@link #post(Runnable)}, {@link #postDelayed(Runnabl
[all...]
/frameworks/base/core/java/android/os/
H A DHandler.java39 * {@link #postDelayed}, {@link #sendEmptyMessage},
408 public final boolean postDelayed(Runnable r, long delayMillis) method in class:Handler

Completed in 1872 milliseconds