HomeSort by relevance Sort by last modified time
    Searched refs:another (Results 1 - 25 of 240) sorted by null

1 2 3 4 5 6 7 8 910

  /dalvik/tests/069-field-type/src2/
Blah.java 6 public int compareTo(Object another) {
  /libcore/luni/src/main/java/java/lang/
Comparable.java 42 * @param another
44 * @return a negative integer if this instance is less than {@code another};
46 * {@code another}; 0 if this instance has the same order as
47 * {@code another}.
49 * if {@code another} cannot be converted into something
52 int compareTo(T another);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/jgss/kerberos/
KerberosNameTest.java 40 KerberosName another = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE); local
41 assertEquals(one, another);
44 another = new KerberosName("service/localhost", GSSName.NT_HOSTBASED_SERVICE);
45 assertEquals(one, another);
48 another = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
49 assertEquals(one, another);
52 another = new KerberosName("service/localhost", GSSName.NT_USER_NAME);
53 assertFalse(one.equals(another));
57 another = new KerberosName("service@localhost", KRB5_PRINCIPAL_NAMETYPE);
58 assertEquals(one, another);
    [all...]
  /libcore/luni/src/main/java/java/security/acl/
Permission.java 24 boolean equals(Object another);
  /external/valgrind/main/gdbserver_tests/
mcmain_pic.stdout.exp 2 another func called msg called from gdb
4 another func called msg called from main
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiConstructor.java 41 public int compareTo(ApiConstructor another) {
42 return mParameterTypes.size() - another.mParameterTypes.size();
ApiMethod.java 44 public int compareTo(ApiMethod another) {
45 return mName.compareTo(another.mName);
ApiClass.java 41 public int compareTo(ApiClass another) {
42 return mName.compareTo(another.mName);
  /external/webkit/LayoutTests/fast/url/script-tests/
relative.js 6 ["http://host/a", "http://another/", "http://another/"],
7 ["http://host/a", "http:////another/", "http://another/"],
14 ["http://foo/bar", " another ", "http://foo/another"],
70 ["http://host/a", "//another", "http://another/"],
71 ["http://host/a", "//another/path?query#ref", "http://another/path?query#ref"]
    [all...]
relative-unix.js 7 ["http://host/a", "\\\\\\\\Another\\\\path", "http://another/path"],
  /ndk/tests/build/import-install/path1/
Android.mk 3 # another library
  /frameworks/base/core/java/android/hardware/input/
KeyboardLayout.java 96 public int compareTo(KeyboardLayout another) {
97 int result = mLabel.compareToIgnoreCase(another.mLabel);
99 result = mCollection.compareToIgnoreCase(another.mCollection);
  /libcore/luni/src/main/java/java/net/
Proxy.java 136 Proxy another = (Proxy) obj; local
138 return (type == another.type) && address.equals(another.address);
  /frameworks/base/core/java/com/android/internal/util/
CharSequences.java 114 * @param another The other CharSequence.
117 public static int compareToIgnoreCase(CharSequence me, CharSequence another) {
119 int myLen = me.length(), anotherLen = another.length();
125 - Character.toLowerCase(another.charAt(anotherPos++))) != 0) {
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java 141 public int compareTo(Preference another) {
142 if (!(another instanceof ShortcutPreference)) return super.compareTo(another);
145 char other = ((ShortcutPreference) another).mShortcut;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Face.java 61 public int compareTo(Face another) {
62 return mName.compareTo(another.mName);
  /external/clang/test/SemaCXX/
constexpr-printing.cpp 27 constexpr U(const int *p) : T(), another(), p(p) {}
28 constexpr U(const U &u) : T(), another(), p(u.p) {}
29 T another; member in struct:U
39 static_assert(test_printing(12, 39.762, 3 + 4i, 12.9 + 3.6i, &u2.arr[4], u2.another.arr[2], (vector_int){5, 1, 2, 3}, u1) == 0, ""); // \
41 expected-note {{in call to 'test_printing(12, 3.976200e+01, 3+4i, 1.290000e+01+3.600000e+00i, &u2.T::arr[4], u2.another.arr[2], {5, 1, 2, 3}, {{{}}, {{}}, &u1.T::arr[2]})'}}
  /frameworks/base/core/java/android/net/
NetworkPolicy.java 135 public int compareTo(NetworkPolicy another) {
136 if (another == null || another.limitBytes == LIMIT_DISABLED) {
140 if (limitBytes == LIMIT_DISABLED || another.limitBytes < limitBytes) {
  /frameworks/base/core/tests/coretests/src/android/net/http/
HttpResponseCacheTest.java 58 HttpResponseCache another = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024); local
59 assertSame(first, another);
64 HttpResponseCache another = HttpResponseCache.install(cacheDir, 8 * 1024 * 1024); local
65 assertNotSame(first, another);
  /dalvik/tests/071-dexfile/src/
Main.java 79 anotherClass = dexClassLoader.loadClass("Another");
81 throw new RuntimeException("Another?");
84 Object another; local
86 another = anotherClass.newInstance();
88 throw new RuntimeException("new another", ie);
90 throw new RuntimeException("new another", ie);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 44 public int compareTo(LookupKeySegment another) {
45 if (contactId > another.contactId) {
48 if (contactId < another.contactId) {
  /external/markdown/MarkdownTest/Tests_2004/
Ordered and unordered lists.text 104 Here's another:
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 104 Here's another:
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 104 Here's another:
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
AbstractResult.java 80 public int compareTo(AbstractResult another) {
81 return getRelativePath().compareTo(another.getRelativePath());

Completed in 561 milliseconds

1 2 3 4 5 6 7 8 910