Lines Matching defs:what

539  * what will take input.  If the device has touch capabilities, however, and the user
3808 // know what the expected parent size is going to be, so e.g. list items can size
3877 * what is specified in any of the styles.
5444 * gives it focus no matter what. It should only be called internally by framework
5445 * code that knows what it is doing, namely {@link #requestFocus(int, Rect)}.
5621 * This is what clears the old focus.
6664 * regardles of what traversal strategy it is using.
6708 * regardles of what traversal strategy it is using.
8290 * See also {@link #focusSearch(int)}, which is what you call to say that you
8321 * See also {@link #focusSearch(int)}, which is what you call to say that you
8386 * See also {@link #focusSearch(int)}, which is what you call to say that you
8400 * descendants and give it a hint about what direction focus is heading.
8406 * See also {@link #focusSearch(int)}, which is what you call to say that you
8436 * See also {@link #focusSearch(int)}, which is what you call to say that you
11494 * a final visual translucency result, which is what is passed into the DisplayList.
11524 * a final visual translucency result, which is what is passed into the DisplayList.
14935 * Indicates what type of layer is currently associated with this view. By default
16798 * @param what the action to run on the drawable
16803 public void scheduleDrawable(Drawable who, Runnable what, long when) {
16804 if (verifyDrawable(who) && what != null) {
16808 Choreographer.CALLBACK_ANIMATION, what, who,
16811 ViewRootImpl.getRunQueue().postDelayed(what, delay);
16820 * @param what the action to cancel
16823 public void unscheduleDrawable(Drawable who, Runnable what) {
16824 if (verifyDrawable(who) && what != null) {
16827 Choreographer.CALLBACK_ANIMATION, what, who);
16829 ViewRootImpl.getRunQueue().removeCallbacks(what);
19650 * in DragEvent. The method uses these to determine what is happening in the drag and drop
20097 * <p>Nested pre-scroll events are to nested scroll events what touch intercept is to touch.
20177 * <p>Nested pre-fling events are to nested fling events what touch intercept is to touch
20178 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
21372 * state, not what the application is requesting.
21384 * flags, not what your app is currently applying.