Home
last modified time | relevance | path

Searched refs:up (Results 1 – 25 of 535) sorted by relevance

12345678910>>...22

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DAdapterHelperTest.java213 up(0, 5); in testChangeAll()
564 up(6,2); in testScenerio29()
588 up(0,39); in testScenerio32()
593 up(36,29); in testScenerio32()
597 up(12,69); in testScenerio32()
598 up(116,13); in testScenerio32()
599 up(118,19); in testScenerio32()
601 up(98,21); in testScenerio32()
604 up(71,8); in testScenerio32()
617 up(0,5); in testScenerio32()
[all …]
DOpReorderTest.java252 up(s, len); in randOp()
279 UpdateOp up(int start, int count) { in up() method in OpReorderTest
541 up(1, 2); in testSwapMoveUpdate_0()
544 assertEquals(up(2, 2), mUpdateOps.get(0)); in testSwapMoveUpdate_0()
550 up(0, 4); in testSwapMoveUpdate_1()
553 assertEquals(up(0, 1), mUpdateOps.get(0)); in testSwapMoveUpdate_1()
554 assertEquals(up(1, 3), mUpdateOps.get(1)); in testSwapMoveUpdate_1()
560 up(1, 3); in testSwapMoveUpdate_2()
563 assertEquals(up(3, 1), mUpdateOps.get(0)); in testSwapMoveUpdate_2()
564 assertEquals(up(0, 2), mUpdateOps.get(1)); in testSwapMoveUpdate_2()
/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp62 float *up, *vp, *wp; in poly_clip_to_halfspace() local
80 up = (float *)u; in poly_clip_to_halfspace()
83 for(int i = 0; i < 4; i++, wp++, up++, vp++) { in poly_clip_to_halfspace()
84 *wp = *up+t*(*vp-*up); in poly_clip_to_halfspace()
/frameworks/native/cmds/ip-up-vpn/
DAndroid.mk20 LOCAL_SRC_FILES := ip-up-vpn.c
22 LOCAL_MODULE := ip-up-vpn
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetNetworkFactory.java128 private void updateInterfaceState(String iface, boolean up) { in updateInterfaceState() argument
132 Log.d(TAG, "updateInterface: " + iface + " link " + (up ? "up" : "down")); in updateInterfaceState()
135 mLinkUp = up; in updateInterfaceState()
136 mNetworkInfo.setIsAvailable(up); in updateInterfaceState()
137 if (!up) { in updateInterfaceState()
145 mFactory.setScoreFilter(up ? NETWORK_SCORE : -1); in updateInterfaceState()
151 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() argument
152 updateInterfaceState(iface, up); in interfaceLinkStateChanged()
/frameworks/base/docs/html/training/implementing-navigation/
Dancestral.jd2 page.tags=up navigation,NavUtils,TaskStackBuilder
14 <li><a href="#up">Add Up Action</a></li>
52 <img src="{@docRoot}images/training/implementing-navigation-up.png" id="figure-up">
108 <h2 id="up">Add Up Action</h2>
130 <p>To navigate up when the user presses the app icon, you can use the {@link
143 &lt;singleTop>}</a>, or the <code>up</code> intent contains {@link
150 &lt;standard>}</a>, and the <code>up</code> intent does not contain
178 <h3 id="BuildBackStack">Navigate up with a new back stack</h3>
186 with the appropriate back stack before navigating up.</p>
206 // when navigating up, with a synthesized back stack.
[all …]
/frameworks/base/docs/html/design/patterns/
Dgestures.jd39 … quick and affect the screen even after the finger is picked up. Drags are slower and more precise,
40 and the screen stops responding when the finger is picked up.</p>
68 <p> Scales up a standard amount around the target with each repeated gesture until reaching
69 maximum scale. For nested views, scales up the smallest targetable view, or returns it to
86 <p>A single touch followed in quick succession by a drag up or down:</p>
88 <li>Dragging up decreases content scale</li>
/frameworks/base/core/java/android/net/
DINetworkManagementEventObserver.aidl34 void interfaceStatusChanged(String iface, boolean up); in interfaceStatusChanged() argument
43 void interfaceLinkStateChanged(String iface, boolean up); in interfaceLinkStateChanged() argument
/frameworks/native/services/sensorservice/
DFusion.cpp261 vec3_t up(mData[0]); in checkInitComplete() local
262 vec3_t east(cross_product(mData[1], up)); in checkInitComplete()
264 vec3_t north(cross_product(up, east)); in checkInitComplete()
265 R << east << north << up; in checkInitComplete()
312 const vec3_t up( getRotationMatrix() * Ba ); in handleMag() local
313 const vec3_t east( cross_product(m, up) ); in handleMag()
325 vec3_t north( cross_product(up, east) ); in handleMag()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DEventLogTags.logtags17 ## secure: 1: The user has set up a secure unlock method (PIN, password, etc.)
18 ## currentlyInsecure: 1: No secure unlock method set up (!secure), or trusted environment (TrustMan…
30 ## type: 1: SWIPE_UP_UNLOCK Swiped up to dismiss the lockscreen.
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
DEventLogTags.logtags17 ## secure: 1: The user has set up a secure unlock method (PIN, password, etc.)
18 ## currentlyInsecure: 1: No secure unlock method set up (!secure), or trusted environment (TrustMan…
30 ## type: 1: SWIPE_UP_UNLOCK Swiped up to dismiss the lockscreen.
/frameworks/base/core/java/com/android/server/net/
DBaseNetworkObserver.java31 public void interfaceStatusChanged(String iface, boolean up) { in interfaceStatusChanged() argument
51 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DActionBarDrawerToggleHoneycomb.java131 final View up = first.getId() == android.R.id.home ? second : first; in SetIndicatorInfo() local
133 if (up instanceof ImageView) { in SetIndicatorInfo()
135 upIndicatorView = (ImageView) up; in SetIndicatorInfo()
/frameworks/support/v4/honeycomb/android/support/v4/app/
DActionBarDrawerToggleHoneycomb.java132 final View up = first.getId() == android.R.id.home ? second : first; in SetIndicatorInfo() local
134 if (up instanceof ImageView) { in SetIndicatorInfo()
136 upIndicatorView = (ImageView) up; in SetIndicatorInfo()
/frameworks/base/docs/html/training/animation/
Dcrossfade.jd17 <a href="#setup">Set up the Animation</a>
109 Set up the Animation
112 To set up the animation:
119 android.view.View#GONE}. This prevents the view from taking up layout space and omits it
120 from layout calculations, speeding up processing.
163 Now that the views are properly set up, crossfade them by doing the following:
178 up layout space and omits it from layout calculations, speeding up processing.
/frameworks/base/docs/html/google/backup/
Dindex.jd7 to copy a user's persistent app data to remote "cloud" storage. Backing up persistent data
14 transport on most devices that include Google Play Store and backs up your app data to Google
24 Service does not guarantee that it will always back up data using this service
26 data backup in your application, then it will back up using whichever transport is enabled
27 on the device. Registering with Android Backup Service allows your application to back up
60 Backup Service Key are ignored&mdash;your application will work normally, but will either back up
/frameworks/base/core/java/android/bluetooth/
DBluetoothPbap.java114 public void onBluetoothStateChange(boolean up) {
115 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
116 if (!up) {
DBluetoothAvrcpController.java73 public void onBluetoothStateChange(boolean up) {
74 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
75 if (!up) {
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListScrollListenerTest.java77 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP, in testKeyScrolling() local
80 inst.sendKeySync(up); in testKeyScrolling()
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
DGridScrollListenerTest.java80 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP, in testKeyScrolling() local
83 inst.sendKeySync(up); in testKeyScrolling()
/frameworks/base/docs/html/training/cloudsync/
Dbackupapi.jd84 specialized classes for backing up certain kinds of data. The Android framework
88 and point it at the data you want to back up, just add it to the
94 <p>Here's an example that backs up a high scores file.</p>
118 have backed up both a high scores file and a game progress file just by adding
127 <p>Backing up preferences is similarly easy. Create a {@link
159 android.app.backup.FileBackupHelper} handles all the files that you need to back up, and one
161 preferencegroups you need backed up.
181 up to the cloud. At some point in the future, the backup manager then calls
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DGestureUtils.java15 public static boolean isTap(MotionEvent down, MotionEvent up, int tapTimeSlop, in isTap() argument
17 return eventsWithinTimeAndDistanceSlop(down, up, tapTimeSlop, tapDistanceSlop, actionIndex); in isTap()
/frameworks/base/docs/html/google/play/licensing/
Dsetting-up.jd15 <li><a href="#runtime-setup">Setting up the runtime environment</a></li>
25 <li><a href="#test-acct-setup">Setting up test accounts</a></li>
34 <p>Before you start adding license verification to your application, you need to set up your Google
48 Developer Console to set up licensing.</p>
66 <li>Set up multiple "test accounts," identified by email address. The licensing
68 license checks and receive static test responses. You can set up accounts in the
93 <p>Setting up your environment for licensing involves these tasks:</p>
96 <li><a href="#runtime-setup">Setting up the runtime environment</a> for development</li>
98 <li><a href="#lvl-setup">Setting up the Licensing Verification Library</a></li>
106 <p>To get started, you need to set up a proper runtime environment on which
[all …]
/frameworks/base/docs/html/distribute/googleplay/edu/
Dcontact.jd2 page.metaDescription=Developers, sign up to receive information about Google Play for Education.
19 will unlock learning in the classroom &mdash; sign up to receive information about
/frameworks/base/docs/html/distribute/googleplay/
Dstart.jd22 <li>Setting up a Google Wallet Merchant Account, if you will sell apps or
85 you don't have a Google Wallet account, you can quickly set one up during the
108 need a Google Wallet Merchant Account. You can set one up at any time, but
113 To set up a Google Wallet Merchant Account:<br>

12345678910>>...22