Searched defs:up (Results 1 - 5 of 5) 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/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/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...]

Completed in 824 milliseconds