Searched refs:up (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/cmds/bootanimation/
H A DAndroid.mk8 # need "-lrt" on Linux simulator to pick up clock_gettime
/frameworks/base/media/libstagefright/omx/
H A DAndroid.mk4 # Set up the OpenCore variables.
/frameworks/base/core/jni/android/opengl/
H A Dpoly_clip.cpp62 float *up, *vp, *wp; local
80 up = (float *)u;
83 for(int i = 0; i < 4; i++, wp++, up++, vp++) {
84 *wp = *up+t*(*vp-*up);
149 /* if result ended up in p2 then copy it to p1 */
/frameworks/base/tests/FrameworkTest/tests/src/com/android/frameworktest/gridview/
H A DGridScrollListenerTest.java80 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP,
83 inst.sendKeySync(up);
/frameworks/base/tests/FrameworkTest/tests/src/com/android/frameworktest/listview/
H A DListScrollListenerTest.java77 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP,
80 inst.sendKeySync(up);
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java123 KeyEvent up = new KeyEvent(now, now, KeyEvent.ACTION_UP, eventCode, 0);
129 .injectKeyEvent(up, true);
/frameworks/base/libs/surfaceflinger/
H A DAndroid.mk26 # need "-lrt" on Linux simulator to pick up clock_gettime
/frameworks/base/core/java/android/util/
H A DDayOfMonthCursor.java26 * <li>Provides methods to move the cursor up / down / left / right.</li>
96 * Move up one box, potentially flipping to the previous month.
100 public boolean up() { method in class:DayOfMonthCursor
102 // within current month, just move up
/frameworks/base/tests/CoreTests/android/util/
H A DDayOfMonthCursorTest.java112 // up, same month
113 assertFalse(mc.up());
118 // up, flips back
119 assertTrue(mc.up());
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java359 String[] up =
361 if (up != null && up[0] != null) {
362 setUsernamePassword(up[0], up[1]);
563 // list. But the set up is not done until this method is returned.
/frameworks/base/core/java/android/text/method/
H A DLinkMovementMethod.java53 protected boolean up(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
58 return super.up(widget, buffer);
H A DScrollingMovementMethod.java92 * Scrolls the text up if possible.
94 protected boolean up(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
163 handled |= up(widget, buffer);
H A DArrowKeyMovementMethod.java36 private boolean up(TextView widget, Spannable buffer) { method in class:ArrowKeyMovementMethod
151 handled |= up(widget, buffer);
217 // If we have scrolled, then the up shouldn't move the cursor,
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCrossing.java559 int up = 0;
563 up++;
578 if (up != 0) {
/frameworks/base/core/java/android/widget/
H A DScrollView.java623 * <p>Handles scrolling in response to a "page up/down" shortcut press. This
624 * method will scroll the view by one page up or down and give the focus
630 * to go one page up or
708 boolean up = direction == View.FOCUS_UP;
710 View newFocused = findFocusableViewInBounds(up, top, bottom);
718 int delta = up ? (top - containerTop) : (bottom - containerBottom);
731 * Handle scrolling in response to an up or down arrow click.
778 // it up (take it back to ourselves)
1023 // need to move up to get it in view: move up jus
[all...]
H A DTextView.java358 * Look the appearance up without checking first if it exists because
2897 // not in password mode, clean up typeface and transformation
3097 * key down/up pair to go through the normal key handling.
4178 // of down and up events until we have done the complete repeatCount.
4181 KeyEvent up = KeyEvent.changeAction(event, KeyEvent.ACTION_UP);
4183 mInput.onKeyUp(this, (Editable)mText, keyCode, up);
4186 mInput.onKeyUp(this, (Editable)mText, keyCode, up);
4193 mMovement.onKeyUp(this, (Spannable)mText, keyCode, up);
4196 mMovement.onKeyUp(this, (Spannable)mText, keyCode, up);
6182 // XXX Make the start and end move together if this ends up
[all...]
H A DAbsListView.java935 // be ready to bring up a window yet
1474 public void setScrollIndicators(View up, View down) { argument
1475 mScrollUp = up;
2463 // Don't need to move views up if the bottom of the last position is already visible
2565 * @param down true if the scroll is going down, false if it is going up
2813 // Looking down didn't work -- try looking up
2830 // Nothing is selected. Give up and reset everything.
3511 * @param position The position to look up in mActiveViews
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java88 * and running in fullscreen mode), but it is up to a particular implementor
1472 * otherwise the user can see and interact with the pop-up window of
1590 * possibly hide it when the key goes up (if not canceled or long pressed). In
1632 * Override this to intercept key up events before they are processed by the
1722 KeyEvent up = KeyEvent.changeAction(event, KeyEvent.ACTION_UP);
1724 (Spannable)eet.getText(), keyCode, up);
1729 (Spannable)eet.getText(), keyCode, up);
1752 * current input connection is a key down + key up event pair. The sent
H A DKeyboardView.java116 * Called when the user quickly moves the finger from up to down.
121 * Called when the user quickly moves the finger from down to up.
456 mMiniKeyboardCache.clear(); // Not really necessary to do every time, but will free up views
457 // Switching to a different keyboard should abort any pending keys so that the key up
570 // Round up a little
1068 // Convert multi-pointer up/down events to single up/down events to
1082 // If it's an up action, then deliver the up as well.
1087 // Send an up even
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DEditStyledText.java1491 private boolean up(TextView widget, Spannable buffer) { method in class:EditStyledText.StyledTextArrowKeyMethod
1493 Log.d(LOG_TAG, "--- up:");
1568 handled |= up(widget, buffer);

Completed in 313 milliseconds