Searched defs:down (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java61 private boolean down(TextView widget, Spannable buffer) { method in class:ArrowKeyMovementMethod
154 handled |= down(widget, buffer);
H A DLinkMovementMethod.java62 protected boolean down(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
67 return super.down(widget, buffer);
H A DScrollingMovementMethod.java116 * Scrolls the text down if possible.
118 protected boolean down(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
167 handled |= down(widget, buffer);
/frameworks/base/core/java/android/util/
H A DDayOfMonthCursor.java26 * <li>Provides methods to move the cursor up / down / left / right.</li>
116 * Move down one box, potentially flipping to the next month.
120 public boolean down() { method in class:DayOfMonthCursor
122 // within current month, just move down
/frameworks/base/services/java/com/android/server/
H A DInputDevice.java51 boolean down = false; field in class:InputDevice.MotionState
157 if (down != lastDown) {
159 lastDown = down;
160 if (down) {
H A DKeyInputQueue.java171 long eventTime, boolean down, int keycode, int repeatCount,
175 down ? KeyEvent.ACTION_DOWN : KeyEvent.ACTION_UP,
271 boolean down;
273 down = true;
276 down = false;
281 newKeyEvent(di, di.mDownTime, curTime, down,
289 di.mAbs.down = ev.value != 0;
294 di.mRel.down = ev.value != 0;
366 private static final int makeMetaState(int keycode, boolean down, int old) { argument
388 & (down
170 newKeyEvent(InputDevice device, long downTime, long eventTime, boolean down, int keycode, int repeatCount, int scancode, int flags) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java537 * @param down Is this a key press (true) or release (false)?
538 * @param repeatCount Number of times a key down has repeated.
543 int metaKeys, boolean down, int repeatCount);
778 * For example for a motion event like down or up or move, if the size exceeds
542 interceptKeyTi(WindowState win, int code, int metaKeys, boolean down, int repeatCount) argument
/frameworks/base/core/java/android/widget/
H A DGridView.java172 void fillGap(boolean down) { argument
178 if (down) {
202 * Fills the list from pos down to the end of the list view.
525 // Don't pull the top too far down
529 // Move everything down
787 * Case 1: Scrolling down.
1033 // Remember stuff we will need down below
1446 * Scrolls up or down by the number of items currently present on screen.
1759 // we are too high, slide all views down to align with bottom
H A DListView.java219 // we are too high, slide all views down to align with bottom
555 // need to MOVE DOWN to get it in view: move down just enough so
603 void fillGap(boolean down) { argument
605 if (down) {
619 * Fills the list from pos down to the end of the list view.
700 * down from there. This method forces mSelectedPosition to the center.
883 * Case 1: Scrolling down.
1201 * up and down from there.
1252 * everything back down.
1281 // Don't pull the top too far down
[all...]
H A DAbsListView.java115 * Indicates we have waited for everything we can wait for, but the user's finger is still down
243 * The down scroll indicator
254 * The position of the view that received the down motion event
259 * The offset to the top of the mMotionPosition view when the down motion event was received
269 * The X value associated with the the down motion event
274 * The Y value associated with the the down motion event
1469 public void setScrollIndicators(View up, View down) { argument
1471 mScrollDown = down;
1930 // If we couldn't find a view to click on, but the down event was touching
2289 // (e.g. finger moving down mean
2524 fillGap(boolean down) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DEditStyledText.java1514 private boolean down(TextView widget, Spannable buffer) { method in class:EditStyledText.StyledTextArrowKeyMethod
1516 Log.d(LOG_TAG, "--- down:");
1571 handled |= down(widget, buffer);
/frameworks/policies/base/mid/com/android/internal/policy/impl/
H A DMidWindowManager.java528 public boolean interceptKeyTi(WindowState win, int code, int metaKeys, boolean down, argument
531 Log.d(TAG, "interceptKeyTi code=" + code + " down=" + down + " repeatCount="
538 if ((code == KeyEvent.KEYCODE_HOME) && !down) {
549 if (!down) {
572 if (repeatCount == 0 && down) {
579 if (down && repeatCount == 0) {
589 if (down && repeatCount == 0) {
611 if (down) {
627 if (down) {
[all...]
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DPhoneWindowManager.java777 public boolean interceptKeyTi(WindowState win, int code, int metaKeys, boolean down, argument
782 Log.d(TAG, "interceptKeyTi code=" + code + " down=" + down + " repeatCount="
789 if ((code == KeyEvent.KEYCODE_HOME) && !down) {
800 if (!down) {
854 if (down && repeatCount == 0) {
865 if (down && repeatCount == 0) {
888 if (down) {
904 if (down) {
921 if (down
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java339 String currentText, int keyCode, int keyValue, boolean down,
668 // Time to take down the world. Cancel all pending
338 passToJs(int frame, int node, int x, int y, int gen, String currentText, int keyCode, int keyValue, boolean down, boolean cap, boolean fn, boolean sym) argument

Completed in 449 milliseconds