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

/packages/apps/Browser/src/com/android/browser/
H A DNetworkStateHandler.java47 // Find out if the network is currently up.
98 * @param up true if net has come up, false if net has gone down
100 void onNetworkToggle(boolean up) { argument
101 if (up == mIsNetworkUp) {
104 mIsNetworkUp = up;
107 w.setNetworkAvailable(up);
/packages/apps/VoiceDialer/
H A DAndroid.mk17 # SREC_CONFIG_TARGET_FILES is from external/srec/config/en.us/config.mk and now can be cleaned up.
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerAlertFullScreen.java76 // Handle key down and key up on a few of the system keys.
77 boolean up = event.getAction() == KeyEvent.ACTION_UP;
85 if (up) {
/packages/apps/Calendar/src/com/android/calendar/
H A DDayOfMonthCursor.java28 * <li>Provides methods to move the cursor up / down / left / right.</li>
98 * Move up one box, potentially flipping to the previous month.
102 public boolean up() { method in class:DayOfMonthCursor
104 // within current month, just move up
/packages/apps/Camera/tests/src/com/android/camera/activity/
H A DCameraTestCase.java197 MotionEvent up = MotionEvent.obtain(0, 0,
201 parent.dispatchTouchEvent(up);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAlarmAlertFullScreen.java329 boolean up = event.getAction() == KeyEvent.ACTION_UP;
341 if (up) {
/packages/inputmethods/LatinIME/native/jni/
H A DAndroid.mk101 #################### Clean up the tmp vars
/packages/apps/Camera/jni/
H A Dfeature_mos_jni.cpp317 int up = vp + frameSize; local
319 for (int i = 0; i < width; i++, yp++, vp++, up++)
325 u = (0xff & yuv420sp[up]) - 128;
/packages/apps/LegacyCamera/jni/
H A Dfeature_mos_jni.cpp317 int up = vp + frameSize; local
319 for (int i = 0; i < width; i++, yp++, vp++, up++)
325 u = (0xff & yuv420sp[up]) - 128;
/packages/apps/Music/src/com/android/music/
H A DTrackBrowserActivity.java222 // Worst case, we end up doing the same query twice.
273 // we end up here in case we never registered the listeners
321 * This listener gets called when the media scanner starts up or finishes, and
771 // In order to use alt-up/down as a shortcut for moving the selected item
838 private void moveItem(boolean up) { argument
841 if ( (up && curpos < 1) || (!up && curpos >= curcount - 1)) {
847 c.moveItem(curpos, up ? curpos - 1 : curpos + 1);
851 if (up) {
867 if (up) {
[all...]
/packages/apps/Browser/src/com/android/browser/view/
H A DScrollerView.java792 // This was our active pointer going up. Choose a new
1047 * <p>Handles scrolling in response to a "page up/down" shortcut press. This
1048 * method will scroll the view by one page up or down and give the focus
1054 * to go one page up or
1131 boolean up = direction == View.FOCUS_UP;
1133 View newFocused = findFocusableViewInBounds(up, top, bottom);
1141 int delta = up ? (top - containerTop) : (bottom - containerBottom);
1151 * Handle scrolling in response to an up or down arrow click.
1196 // it up (take it back to ourselves)
1573 // need to move up t
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboardView.java112 * Called when the user quickly moves the finger from up to down.
117 * Called when the user quickly moves the finger from down to up.
1161 MotionEvent up = MotionEvent.obtain(now, now, MotionEvent.ACTION_UP,
1163 result = onModifiedTouchEvent(up, true);
1164 up.recycle();

Completed in 1233 milliseconds