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

/frameworks/base/core/java/android/os/
H A DHandler.java39 * {@link #postDelayed}, {@link #sendEmptyMessage},
389 public final boolean postDelayed(Runnable r, long delayMillis) method in class:Handler
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4633 mHandler.postDelayed(mSendWindowContentChangedAccessibilityEvent,
5221 postDelayed(action, 0);
5224 void postDelayed(Runnable action, long delayMillis) { method in class:ViewRootImpl.RunQueue
5254 handler.postDelayed(handlerAction.action, handlerAction.delay);
H A DView.java8225 postDelayed(mUnsetPressedState,
8252 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
10557 * @see #postDelayed
10589 public boolean postDelayed(Runnable action, long delayMillis) { method in class:View
10592 return attachInfo.mHandler.postDelayed(action, delayMillis);
10595 ViewRootImpl.getRunQueue().postDelayed(action, delayMillis);
10638 ViewRootImpl.getRunQueue().postDelayed(action, delayMillis);
10653 * @see #postDelayed
10824 postDelayed(mSendViewScrolledAccessibilityEvent,
14169 ViewRootImpl.getRunQueue().postDelayed(wha
[all...]

Completed in 365 milliseconds