Searched defs:up (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/services/java/com/android/server/net/
H A DNetworkAlertObserver.java26 public void interfaceStatusChanged(String iface, boolean up) { argument
36 public void interfaceLinkStateChanged(String iface, boolean up) { argument
/frameworks/base/core/java/android/text/method/
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
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...]
/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/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/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;
/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/services/java/com/android/server/connectivity/
H A DVpn.java259 public synchronized void interfaceStatusChanged(String interfaze, boolean up) { argument
260 if (!up && mLegacyVpnRunner != null) {
267 public void interfaceLinkStateChanged(String interfaze, boolean up) { argument
397 * Bringing up a VPN connection takes time, and that is all this thread
400 * requests will be piled up. This can be done in a Handler as a state
478 throw new IllegalStateException("Time is up");
483 // Catch all exceptions so we can clean up few things.
H A DTethering.java206 public void interfaceStatusChanged(String iface, boolean up) { argument
207 if (VDBG) Log.d(TAG, "interfaceStatusChanged " + iface + ", " + up);
222 if (up) {
241 public void interfaceLinkStateChanged(String iface, boolean up) { argument
242 if (VDBG) Log.d(TAG, "interfaceLinkStateChanged " + iface + ", " + up);
243 interfaceStatusChanged(iface, up);
741 // notification that this interface is up
1117 // we received notice that the cellular DUN connection is up
1314 * requests to keep trying to bring up something we can use.
1323 // we think mobile should be coming up
[all...]
/frameworks/base/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/base/services/java/com/android/server/
H A DNetworkManagementService.java207 private void notifyInterfaceStatusChanged(String iface, boolean up) { argument
211 mObservers.getBroadcastItem(i).interfaceStatusChanged(iface, up);
222 private void notifyInterfaceLinkStateChanged(String iface, boolean up) { argument
226 mObservers.getBroadcastItem(i).interfaceLinkStateChanged(iface, up);
367 * "NNN Iface changed <name> <up/down>"
368 * "NNN Iface linkstatus <name> <up/down>"
381 notifyInterfaceStatusChanged(cooked[3], cooked[4].equals("up"));
384 notifyInterfaceLinkStateChanged(cooked[3], cooked[4].equals("up"));
522 IPv6 addresses on interface down, but we need to do full clean up here */
H A DThrottleService.java177 public void interfaceStatusChanged(String iface, boolean up) { argument
178 if (up) {
185 public void interfaceLinkStateChanged(String iface, boolean up) { argument
425 // queue up a poll to happen in a little while - after ntp and imsi are avail
625 } // else already up!
667 // TODO - fix up intent
/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 DCarouselView.java526 public void setLookAt(float[] eye, float[] at, float[] up) { argument
527 mController.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]);
/frameworks/base/core/java/android/widget/
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
H A DAbsListView.java207 * The list allows up to one choice
1012 // this may end up selecting the value we just cleared but this way
1126 * List allows up to one item to be in a chosen state. By setting the choiceMode to
1773 // and the user wouldn't expect to end up somewhere else when
1882 // be ready to bring up a window yet
2608 public void setScrollIndicators(View up, View down) { argument
2609 mScrollUp = up;
3947 // This was our active pointer going up. Choose a new
5023 // calls to bubble up from the children all the way to the top
5086 * @param down true if the scroll is going down, false if it is going up
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DTouchExplorer.java117 // Slop between the down and up tap to be a tap.
525 // needed anymore since the last pointer just went up.
533 // If the pointer that went up was not active we have nothing to do.
819 * Sends up events to the view hierarchy for all active pointers which are
856 // No active pointers and the one that just went up was not
863 // If the action pointer going up/down is not active we have nothing to do.
873 // If the pointer is active or the pointer that just went up
887 * Sends an up and down events.
1143 public boolean isTap(MotionEvent down, MotionEvent up) { argument
1144 return eventsWithinTimeoutAndDistance(down, up, mTapTimeou
[all...]
/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);

Completed in 358 milliseconds