/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
D | AdapterHelperTest.java | 213 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 …]
|
D | OpReorderTest.java | 252 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/ |
D | poly_clip.cpp | 62 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/ |
D | Android.mk | 20 LOCAL_SRC_FILES := ip-up-vpn.c 22 LOCAL_MODULE := ip-up-vpn
|
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/ |
D | EthernetNetworkFactory.java | 128 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/ |
D | ancestral.jd | 2 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/base/docs/html/design/patterns/ |
D | gestures.jd | 39 … 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/ |
D | INetworkManagementEventObserver.aidl | 34 void interfaceStatusChanged(String iface, boolean up); in interfaceStatusChanged() argument 43 void interfaceLinkStateChanged(String iface, boolean up); in interfaceLinkStateChanged() argument
|
/frameworks/native/services/sensorservice/ |
D | Fusion.cpp | 261 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/ |
D | EventLogTags.logtags | 17 ## 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/ |
D | EventLogTags.logtags | 17 ## 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/ |
D | BaseNetworkObserver.java | 31 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/ |
D | ActionBarDrawerToggleHoneycomb.java | 131 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/ |
D | ActionBarDrawerToggleHoneycomb.java | 132 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/ |
D | crossfade.jd | 17 <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/ |
D | index.jd | 7 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—your application will work normally, but will either back up
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothPbap.java | 114 public void onBluetoothStateChange(boolean up) { 115 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 116 if (!up) {
|
D | BluetoothAvrcpController.java | 73 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/ |
D | ListScrollListenerTest.java | 77 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/ |
D | GridScrollListenerTest.java | 80 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP, in testKeyScrolling() local 83 inst.sendKeySync(up); in testKeyScrolling()
|
/frameworks/base/docs/html/training/cloudsync/ |
D | backupapi.jd | 84 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/ |
D | GestureUtils.java | 15 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/ |
D | setting-up.jd | 15 <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/ |
D | contact.jd | 2 page.metaDescription=Developers, sign up to receive information about Google Play for Education. 19 will unlock learning in the classroom — sign up to receive information about
|
/frameworks/base/docs/html/distribute/googleplay/ |
D | start.jd | 22 <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>
|