Searched defs:up (Results 1 - 23 of 23) sorted by path

/frameworks/base/core/java/android/net/
H A DEthernetDataTracker.java72 public void interfaceStatusChanged(String iface, boolean up) { argument
73 Log.d(TAG, "Interface status changed: " + iface + (up ? "up" : "down"));
76 public void interfaceLinkStateChanged(String iface, boolean up) { argument
77 if (mIface.equals(iface) && mLinkUp != up) {
78 Log.d(TAG, "Interface " + iface + " link " + (up ? "up" : "down"));
79 mLinkUp = up;
80 mTracker.mNetworkInfo.setIsAvailable(up);
83 if (up) {
[all...]
/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java89 protected boolean up(TextView widget, Spannable buffer) { method in class:ArrowKeyMovementMethod
269 // If we have scrolled, then the up shouldn't move the cursor,
H A DBaseMovementMethod.java146 * such as {@link #down} and {@link #up}.
189 return up(widget, buffer);
269 * Performs an up movement action.
270 * Moves the cursor or scrolls up by one line.
276 protected boolean up(TextView widget, Spannable buffer) { method in class:BaseMovementMethod
293 * Performs a page-up movement action.
294 * Moves the cursor or scrolls up by one page.
499 * Performs a scroll up action.
500 * Scrolls up by the specified number of lines.
557 * Performs a scroll page up actio
[all...]
H A DLinkMovementMethod.java56 protected boolean up(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
61 return super.up(widget, buffer);
H A DScrollingMovementMethod.java39 protected boolean up(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
/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/core/java/android/widget/
H A DAbsListView.java207 * The list allows up to one choice
1026 // this may end up selecting the value we just cleared but this way
1140 * List allows up to one item to be in a chosen state. By setting the choiceMode to
1658 // and the user wouldn't expect to end up somewhere else when
1773 // be ready to bring up a window yet
2502 public void setScrollIndicators(View up, View down) { argument
2503 mScrollUp = up;
3841 // This was our active pointer going up. Choose a new
4917 // calls to bubble up from the children all the way to the top
4980 * @param down true if the scroll is going down, false if it is going up
[all...]
H A DStackView.java79 * Represent the two possible stack modes, one where items slide up, and the other
93 * Specifies how far you need to swipe (up or down) before it
100 * that views will be slid, either up or down
597 private void pacedScroll(boolean up) { argument
600 if (up) {
770 // Our primary pointer has gone up -- let's see if we can find
839 // Swipe threshold exceeded, swipe up
848 // Didn't swipe up far enough, snap back down
866 // Didn't swipe down far enough, snap back up
/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/services/java/com/android/server/
H A DNetworkManagementService.java232 private void notifyInterfaceStatusChanged(String iface, boolean up) { argument
236 mObservers.getBroadcastItem(i).interfaceStatusChanged(iface, up);
247 private void notifyInterfaceLinkStateChanged(String iface, boolean up) { argument
251 mObservers.getBroadcastItem(i).interfaceLinkStateChanged(iface, up);
409 * "NNN Iface changed <name> <up/down>"
410 * "NNN Iface linkstatus <name> <up/down>"
423 notifyInterfaceStatusChanged(cooked[3], cooked[4].equals("up"));
426 notifyInterfaceLinkStateChanged(cooked[3], cooked[4].equals("up"));
577 IPv6 addresses on interface down, but we need to do full clean up here */
H A DThrottleService.java178 public void interfaceStatusChanged(String iface, boolean up) { argument
179 if (up) {
186 public void interfaceLinkStateChanged(String iface, boolean up) { argument
427 // queue up a poll to happen in a little while - after ntp and imsi are avail
627 } // else already up!
669 // TODO - fix up intent
/frameworks/base/services/java/com/android/server/accessibility/
H A DGestureUtils.java15 public static boolean isTap(MotionEvent down, MotionEvent up, int tapTimeSlop, argument
17 return eventsWithinTimeAndDistanceSlop(down, up, tapTimeSlop, tapDistanceSlop, actionIndex);
H A DScreenMagnifier.java89 * viewport dragging mode until the finger goes up. One can think of this
94 * finger goes up the screen will clear zoom out. If the same user interaction
96 * be the same but when the finger goes up the screen will stay magnified.
723 private void onActionTap(MotionEvent up, int policyFlags) { argument
729 up.getX(), up.getY(), true);
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java208 public void interfaceStatusChanged(String iface, boolean up) { argument
209 if (VDBG) Log.d(TAG, "interfaceStatusChanged " + iface + ", " + up);
224 if (up) {
243 public void interfaceLinkStateChanged(String iface, boolean up) { argument
244 if (VDBG) Log.d(TAG, "interfaceLinkStateChanged " + iface + ", " + up);
245 interfaceStatusChanged(iface, up);
754 // notification that this interface is up
1130 // we received notice that the cellular DUN connection is up
1327 * requests to keep trying to bring up something we can use.
1336 // we think mobile should be coming up
[all...]
H A DVpn.java325 public synchronized void interfaceStatusChanged(String iface, boolean up) { argument
327 mObserver.interfaceStatusChanged(iface, up);
335 public void interfaceStatusChanged(String interfaze, boolean up) {
337 if (!up && mLegacyVpnRunner != null) {
586 // wait for old thread to completely finish before spinning up
618 * Bringing up a VPN connection takes time, and that is all this thread
621 * requests will be piled up. This can be done in a Handler as a state
685 throw new IllegalStateException("Time is up");
690 // Catch all exceptions so we can clean up few things.
/frameworks/base/services/java/com/android/server/net/
H A DBaseNetworkObserver.java29 public void interfaceStatusChanged(String iface, boolean up) { argument
39 public void interfaceLinkStateChanged(String iface, boolean up) { argument
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselController.java715 public void setLookAt(float[] eye, float[] at, float[] up) { argument
718 mUp = up;
720 mRenderScript.setLookAt(eye, at, up);
H A DCarouselRS.java286 public void setLookAt(float[] eye, float[] at, float[] up) { argument
290 mUp[i] = up[i];
292 mScript.invoke_lookAt(eye[0], eye[1], eye[2], at[0], at[1], at[2], up[0], up[1], up[2]);
H A DCarouselView.java526 public void setLookAt(float[] eye, float[] at, float[] up) { argument
527 mController.setLookAt(eye, at, up);
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2379 protected boolean up(TextView widget, Spannable buffer) { method in class:EditStyledText.StyledTextArrowKeyMethod
2381 Log.d(LOG_TAG, "--- up:");
2453 handled |= up(widget, buffer);
/frameworks/native/services/sensorservice/
H A DFusion.cpp261 vec3_t up(mData[0]);
262 vec3_t east(cross_product(mData[1], up));
264 vec3_t north(cross_product(up, east));
265 R << east << north << up; local
312 const vec3_t up( getRotationMatrix() * Ba );
313 const vec3_t east( cross_product(m, up) );
315 // If the m and up vectors align, the cross product magnitude will
325 vec3_t north( cross_product(up, east) );
/frameworks/wilhelm/src/itf/
H A DI3DLocation.c252 SLVec3D up = thiz->mOrientationVectors.mUp; local
255 *pUp = up;
H A DI3DMacroscopic.c165 SLVec3D up = thiz->mOrientationVectors.mUp; local
168 *pUp = up;

Completed in 1141 milliseconds