Home
last modified time | relevance | path

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

12345678910>>...23

/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
DAdapterHelperTest.java217 up(0, 5); in testChangeAll()
606 up(6, 2); in testScenerio29()
633 up(0, 39); in testScenerio32()
638 up(36, 29); in testScenerio32()
642 up(12, 69); in testScenerio32()
643 up(116, 13); in testScenerio32()
644 up(118, 19); in testScenerio32()
646 up(98, 21); in testScenerio32()
649 up(71, 8); in testScenerio32()
662 up(0, 5); in testScenerio32()
[all …]
DOpReorderTest.java271 up(s, len); in randOp()
298 UpdateOp up(int start, int count) { in up() method in OpReorderTest
577 up(1, 2); in testSwapMoveUpdate_0()
580 assertEquals(up(2, 2), mUpdateOps.get(0)); in testSwapMoveUpdate_0()
587 up(0, 4); in testSwapMoveUpdate_1()
590 assertEquals(up(0, 1), mUpdateOps.get(0)); in testSwapMoveUpdate_1()
591 assertEquals(up(1, 3), mUpdateOps.get(1)); in testSwapMoveUpdate_1()
598 up(1, 3); in testSwapMoveUpdate_2()
601 assertEquals(up(3, 1), mUpdateOps.get(0)); in testSwapMoveUpdate_2()
602 assertEquals(up(0, 2), mUpdateOps.get(1)); in testSwapMoveUpdate_2()
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
DViewMatrix.java212 double[] up = {0, 0, 1}; in main() local
218 v.setUpVector(up); in main()
280 double[] up = new double[3]; in look() local
284 VectorUtil.cross(zv, rv, up); in look()
285 VectorUtil.cross(zv, up, rv); in look()
286 VectorUtil.cross(zv, rv, up); in look()
287 mUpVector = up; in look()
300 double[] up = new double[3]; in lookAt() local
304 VectorUtil.cross(zv, rv, up); in lookAt()
305 VectorUtil.cross(zv, up, rv); in lookAt()
[all …]
/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp61 float *up, *vp, *wp; in poly_clip_to_halfspace() local
79 up = (float *)u; in poly_clip_to_halfspace()
82 for(int i = 0; i < 4; i++, wp++, up++, vp++) { in poly_clip_to_halfspace()
83 *wp = *up+t*(*vp-*up); in poly_clip_to_halfspace()
/frameworks/base/docs/html/preview/backup/
Dindex.jd23 system help ensure a good experience for users in these circumstances by automatically backing up
31 automatic data backups. You can also choose to limit what data from your app is backed up.
35 This document describes the new system behavior and how to specify what data is backed up for
45 the M Preview period, users can store up to 25MB per Android app.
52 the backed up app, a restore operation copies the backed up data into the newly installed
66 Not all app data should be backed up, such as temporary files and caches, so the automatic backup
89 The data created by any app installed on an M Preview device is backed up, except for the
91 what data gets backed up from your app using settings in your app manifest.
122 up. The following example code shows a configuration file that excludes a specific file from
134 This example backup configuration only excludes a specific database file from being backed up.
[all …]
/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/native/cmds/ip-up-vpn/
DAndroid.mk20 LOCAL_SRC_FILES := ip-up-vpn.c
22 LOCAL_MODULE := ip-up-vpn
/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/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/android/net/
DINetworkManagementEventObserver.aidl34 void interfaceStatusChanged(String iface, boolean up); in interfaceStatusChanged() argument
43 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/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/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/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
Dindex.jd22 data is always backed up to the cloud.</p>
24 <p>This class covers strategies for backing up data using the cloud so that
/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/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/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 …]

12345678910>>...23