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

/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java73 public static final int EDGE_BOTTOM = 0x08; field in class:Keyboard
175 * {@link Keyboard#EDGE_TOP EDGE_TOP} and {@link Keyboard#EDGE_BOTTOM EDGE_BOTTOM}
270 * {@link Keyboard#EDGE_BOTTOM}.
462 boolean bottomEdge = (edgeFlags & EDGE_BOTTOM) > 0;
599 row.rowEdgeFlags = EDGE_TOP | EDGE_BOTTOM;
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java82 public static final int EDGE_BOTTOM = 1 << 3; field in class:ViewDragHelper
87 public static final int EDGE_ALL = EDGE_LEFT | EDGE_TOP | EDGE_RIGHT | EDGE_BOTTOM;
213 * @see #EDGE_BOTTOM
239 * @see #EDGE_BOTTOM
435 * @see #EDGE_BOTTOM
1256 if (checkNewEdgeDrag(dy, dx, pointerId, EDGE_BOTTOM)) {
1257 dragsStarted |= EDGE_BOTTOM;
1375 * {@link #EDGE_TOP}, {@link #EDGE_RIGHT}, {@link #EDGE_BOTTOM} and
1395 * {@link #EDGE_TOP}, {@link #EDGE_RIGHT}, {@link #EDGE_BOTTOM} and
1494 if (y > mParentView.getBottom() - mEdgeSize) result |= EDGE_BOTTOM;
[all...]
/frameworks/base/core/java/android/view/
H A DMotionEvent.java470 public static final int EDGE_BOTTOM = 0x00000002; field in class:MotionEvent
2834 * @see #EDGE_BOTTOM

Completed in 7390 milliseconds