/frameworks/base/core/tests/coretests/src/android/net/http/ |
D | HttpResponseCacheTest.java | 54 HttpResponseCache another = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024); in testSecondEquivalentInstallDoesNothing() local 55 assertSame(first, another); in testSecondEquivalentInstallDoesNothing() 60 HttpResponseCache another = HttpResponseCache.install(cacheDir, 8 * 1024 * 1024); in testInstallClosesPreviouslyInstalled() local 61 assertNotSame(first, another); in testInstallClosesPreviouslyInstalled()
|
/frameworks/base/core/java/android/net/ |
D | NetworkPolicy.java | 88 public int compareTo(NetworkPolicy another) { in compareTo() argument 89 if (another == null || another.limitBytes == LIMIT_DISABLED) { in compareTo() 93 if (limitBytes == LIMIT_DISABLED || another.limitBytes < limitBytes) { in compareTo()
|
D | NetworkStats.java | 285 public void combineAllValues(NetworkStats another) { in combineAllValues() argument 287 for (int i = 0; i < another.size; i++) { in combineAllValues() 288 entry = another.getValues(i, entry); in combineAllValues()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | CharSequences.java | 117 public static int compareToIgnoreCase(CharSequence me, CharSequence another) { 119 int myLen = me.length(), anotherLen = another.length(); 125 - Character.toLowerCase(another.charAt(anotherPos++))) != 0) {
|
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
D | AbstractResult.java | 80 public int compareTo(AbstractResult another) { in compareTo() argument 81 return getRelativePath().compareTo(another.getRelativePath()); in compareTo()
|
/frameworks/base/docs/html/guide/practices/design/ |
D | index.jd | 4 …e and how to use them. Later, you learn the nuances of the platform. Put another way: first you le… 13 qualities at one time or another. However, each platform achieves them in
|
/frameworks/base/core/java/android/preference/ |
D | Preference.java | 1059 public int compareTo(Preference another) { in compareTo() argument 1061 || (mOrder == DEFAULT_ORDER && another.mOrder != DEFAULT_ORDER)) { in compareTo() 1063 return mOrder - another.mOrder; in compareTo() 1066 } else if (another.mTitle == null) { in compareTo() 1070 return CharSequences.compareToIgnoreCase(mTitle, another.mTitle); in compareTo()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | LocalePicker.java | 75 public int compareTo(LocaleInfo another) { in compareTo() argument 76 return sCollator.compare(this.label, another.label); in compareTo()
|
/frameworks/base/libs/rs/scriptc/ |
D | rs_allocation.rsh | 77 * Copy part of an allocation from another allocation. 97 * Copy a rectangular region into the allocation from another
|
D | rs_quaternion.rsh | 43 * Set the quaternion from another quaternion 69 * Multiply quaternion by another quaternion
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | animation.jd | 22 another.</p> 63 after another, like a roll of film. This method of animation is useful if you want to animate
|
/frameworks/base/docs/html/resources/articles/ |
D | timed-ui-updates.jd | 97 put another postDelayed at the tail of the mUpdateTimeTask run() 127 the clock update, the task sets up another call to itself from the 144 <p>Handler is actually a better choice than Timer for another reason
|
D | layout-tricks-reuse.jd | 30 suggests; it includes another XML layout. Using this tag is straightforward as 79 include another layout which exists in two flavors, in <code>layout-land/</code>
|
/frameworks/base/docs/html/resources/faq/ |
D | framework.jd | 12 from one Activity/Service to another?</a></li> 32 another process.</p> 92 keys. When an activity wants to pass an object to another activity, it
|
/frameworks/base/core/java/android/widget/ |
D | ExpandableListConnector.java | 905 public int compareTo(GroupMetadata another) { in compareTo() argument 906 if (another == null) { in compareTo() 910 return gPos - another.gPos; in compareTo()
|
D | ActivityChooserModel.java | 904 public int compareTo(ActivityResolveInfo another) { in compareTo() argument 905 return Float.floatToIntBits(another.weight) - Float.floatToIntBits(weight); in compareTo()
|
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/ |
D | DirListActivity.java | 133 public int compareTo(ListItem another) { in compareTo() argument 134 return mRelativePath.compareTo(another.getRelativePath()); in compareTo()
|
/frameworks/base/docs/html/guide/topics/security/ |
D | security.jd | 45 e-mails), reading or writing another application's files, performing 77 the same Linux identity</a> as another application.</p> 350 only be used when you are executing a call coming in from another process, 352 given to another process.</p> 355 the pid of another process, you can use the Context method {@link 357 to check a permission against that pid. If you have the package name of another
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | permission-element.jd | 33 whether to grant the permission to another application. 70 or another application. If this attribute is not set, the permission
|
/frameworks/base/docs/html/guide/topics/fundamentals/ |
D | services.jd | 70 user switches to another application. Additionally, a component can bind to a service to 90 another application component is bound to it. Multiple components can bind to the service at once, 146 <dd>The system calls this method when another component, such as an activity, 154 <dd>The system calls this method when another component wants to bind with the 173 remains running until it stops itself with {@link android.app.Service#stopSelf()} or another 240 service declares an intent filter that matches the intent another application passes to {@link 275 <p>A started service is one that another component starts by calling {@link 282 is done by calling {@link android.app.Service#stopSelf stopSelf()}, or another component can stop it 452 // the service in the middle of handling another job 582 the service must stop itself by calling {@link android.app.Service#stopSelf stopSelf()} or another [all …]
|
D | activities.jd | 61 activity can then start another activity in order to perform different actions. Each time a new 233 <p>You can start another activity by calling {@link android.app.Activity#startActivity 243 using the class name. For example, here's how one activity starts another activity named {@code 257 launches the appropriate activity from another application. If there are 365 another activity is visible on top of this one and that activity is partially transparent or doesn't 371 <dd>The activity is completely obscured by another activity (the activity is now in the 538 <td>Called when the system is about to start resuming another 553 may happen because it is being destroyed, or because another activity 580 executing another line of the activity's code. Three methods are marked "yes": ({@link 734 <p>When one activity starts another, they both experience lifecycle transitions. The first activity [all …]
|
/frameworks/base/docs/html/guide/tutorials/views/ |
D | hello-formstuff.jd | 146 in another way (such as when loading a saved {@link android.preference.CheckBoxPreference}), 205 RadioButton in another way (such as when loading a saved {@link android.preference.CheckBoxPreferen… 247 in another way (such as when loading a saved {@link android.preference.CheckBoxPreference}),
|
D | hello-linearlayout.jd | 101 …its child elements vertically. The first child is another LinearLayout that uses a horizontal layo…
|
/frameworks/base/docs/html/guide/topics/ |
D | fundamentals.jd | 119 emails, another activity to compose an email, and another activity for reading emails. Although 191 <p>A unique aspect of the Android system design is that any application can start another 193 photo with the device camera, there's probably another application that does that and your 209 another application. The Android system, however, can. So, to activate a component in 210 another application, you must deliver a message to the system that specifies your <em>intent</em> to 220 to your application or another.</p> 498 define the device configuration for which those resources should be used. As another
|
/frameworks/base/docs/html/guide/developing/ |
D | index.jd | 9 <p>However, you may choose to develop with another IDE or a simple text editor and invoke the 43 builds are generated each time you project is saved. If you're using another IDE,
|