Home
last modified time | relevance | path

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

12345678910>>...24

/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
DAdapterHelperTest.java219 up(0, 5); in testChangeAll()
620 up(6, 2); in testScenerio29()
647 up(0, 39); in testScenerio32()
652 up(36, 29); in testScenerio32()
656 up(12, 69); in testScenerio32()
657 up(116, 13); in testScenerio32()
658 up(118, 19); in testScenerio32()
660 up(98, 21); in testScenerio32()
663 up(71, 8); in testScenerio32()
676 up(0, 5); in testScenerio32()
[all …]
DOpReorderTest.java273 up(s, len); in randOp()
300 UpdateOp up(int start, int count) { in up() method in OpReorderTest
579 up(1, 2); in testSwapMoveUpdate_0()
582 assertEquals(up(2, 2), mUpdateOps.get(0)); in testSwapMoveUpdate_0()
589 up(0, 4); in testSwapMoveUpdate_1()
592 assertEquals(up(0, 1), mUpdateOps.get(0)); in testSwapMoveUpdate_1()
593 assertEquals(up(1, 3), mUpdateOps.get(1)); in testSwapMoveUpdate_1()
600 up(1, 3); in testSwapMoveUpdate_2()
603 assertEquals(up(3, 1), mUpdateOps.get(0)); in testSwapMoveUpdate_2()
604 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/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 <singleTop>}</a>, or the <code>up</code> intent contains {@link
150 <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/cmds/ip-up-vpn/
DAndroid.mk20 LOCAL_SRC_FILES := ip-up-vpn.c
22 LOCAL_MODULE := ip-up-vpn
/frameworks/native/services/sensorservice/
DFusion.cpp294 vec3_t up(mData[0]); in checkInitComplete() local
298 east = normalize(cross_product(mData[1], up)); in checkInitComplete()
300 east = getOrthogonal(up); in checkInitComplete()
303 vec3_t north(cross_product(up, east)); in checkInitComplete()
304 R << east << north << up; in checkInitComplete()
370 const vec3_t up( getRotationMatrix() * Ba ); in handleMag() local
371 const vec3_t east( cross_product(m, up) ); in handleMag()
383 vec3_t north( cross_product(up, east) ); in handleMag()
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetNetworkFactory.java147 private void updateInterfaceState(String iface, boolean up) { in updateInterfaceState() argument
151 Log.d(TAG, "updateInterface: " + iface + " link " + (up ? "up" : "down")); in updateInterfaceState()
154 mLinkUp = up; in updateInterfaceState()
155 mNetworkInfo.setIsAvailable(up); in updateInterfaceState()
156 if (!up) { in updateInterfaceState()
165 mFactory.setScoreFilter(up ? NETWORK_SCORE : -1); in updateInterfaceState()
171 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() argument
172 updateInterfaceState(iface, up); in interfaceLinkStateChanged()
/frameworks/base/docs/html/training/backup/
Dautosyncapi.jd32 back up app data to the cloud. The system performs this automatic backup
48 exclude data that you don't want the system to back up.
55 Each app can store up to 25MB. Once its backed-up data reaches 25MB, the app no longer sends
72 On devices running Android 6.0 (API level 23) or higher, the default system behavior is to back up
76 limit and configure what data the system backs up.
106 up. The following example code shows a configuration file that excludes a specific file,
120 Most apps do not need to, and in fact should not, back up all data. For example, the system
121 should not back up temporary files and caches. For this reason, the automatic backup
163 back up, instead of having the system back up all data in your app by default. If you specify
164 an <code>&lt;include&gt;</code> element, the system backs up <em>only the resources specified</em>
[all …]
Dbackupapi.jd44 <a href="{@docRoot}training/backup/autosyncapi.html">automatically back up</a>
90 specialized classes for backing up certain kinds of data. The Android framework
94 and point it at the data you want to back up, just add it to the
100 <p>Here's an example that backs up a high scores file.</p>
124 have backed up both a high scores file and a game progress file just by adding
133 <p>Backing up preferences is similarly easy. Create a {@link
165 android.app.backup.FileBackupHelper} handles all the files that you need to back up, and one
167 preferencegroups you need backed up.
187 up to the cloud. At some point in the future, the backup manager then calls
/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/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/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/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/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/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/docs/html/training/appbar/
Dup-action.jd2 page.tags="appbar","actionbar", "up"
19 <a href="#enable-up">Enable the Up Button</a>
50 To support the up functionality in an activity, you need to declare the
95 <h2 id="enable-up">Enable the Up Button</h2>
128 You do <em>not</em> need to catch the up action in the activity's {@link
Dindex.jd56 to implement an app bar—for example, some themes set up an {@link
58 {@link android.support.v7.widget.Toolbar} makes it easy to set up an app bar
67 <b><a href="setting-up.html">Setting Up the App Bar</a></b>
85 <b><a href="up-action.html">Adding an Up Action</a></b>
/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) {
/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/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/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/guide/topics/connectivity/
Dindex.jd22 <h4>Backing up App Data to the Cloud</h4>
24 This class covers techniques for backing up data to the cloud so that users can restore

12345678910>>...24