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.java8218 postDelayed(mUnsetPressedState,
8245 postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
10550 * @see #postDelayed
10582 public boolean postDelayed(Runnable action, long delayMillis) { method in class:View
10585 return attachInfo.mHandler.postDelayed(action, delayMillis);
10588 ViewRootImpl.getRunQueue().postDelayed(action, delayMillis);
10631 ViewRootImpl.getRunQueue().postDelayed(action, delayMillis);
10646 * @see #postDelayed
10817 postDelayed(mSendViewScrolledAccessibilityEvent,
14164 ViewRootImpl.getRunQueue().postDelayed(wha
[all...]

Completed in 245 milliseconds