/external/junit/src/org/junit/runner/manipulation/ |
Sorter.java | 18 public int compare(Description o1, Description o2) { 43 public int compare(Description o1, Description o2) { method in class:Sorter 44 return fComparator.compare(o1, o2);
|
/external/mockito/src/org/mockito/internal/invocation/finder/ |
AllInvocationsFinder.java | 34 public int compare(Invocation o1, Invocation o2) { method in class:AllInvocationsFinder.SequenceNumberComparator
|
/external/proguard/src/proguard/classfile/editor/ |
ClassMemberSorter.java | 56 public int compare(Object object1, Object object2) method in class:ClassMemberSorter
|
/external/stlport/stlport/stl/ |
_collate.h | 50 int compare(const char* __low1, const char* __high1, function in class:collate 86 int compare(const wchar_t* __low1, const wchar_t* __high1, function in class:collate 166 return __coll.compare(__x.data(), __x.data() + __x.size(),
|
/external/strace/linux/ |
ioctlsort.c | 26 int compare(const void* a, const void* b) { function 43 qsort(ioctls, nioctls, sizeof(ioctls[0]), compare);
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/ |
Objects.java | 34 * Returns 0 if {@code a == b}, or {@code c.compare(a, b)} otherwise. 37 public static <T> int compare(T a, T b, Comparator<? super T> c) { method in class:Objects 41 return c.compare(a, b);
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
StringEntry.h | 57 bool compare(const llvm::StringRef& pX) function in class:mcld::StringEntry 58 { return (0 == key().compare(pX)); } 60 bool compare(const llvm::StringRef& pX) const function in class:mcld::StringEntry 61 { return (0 == key().compare(pX)); } 111 bool compare(const llvm::StringRef& pX) function in class:mcld::StringEntry 112 { return (0 == key().compare(pX)); } 114 bool compare(const llvm::StringRef& pX) const function in class:mcld::StringEntry 115 { return (0 == key().compare(pX)); }
|
/frameworks/opt/colorpicker/src/com/android/colorpicker/ |
HsvColorComparator.java | 29 public int compare(Integer lhs, Integer rhs) { method in class:HsvColorComparator
|
/libcore/luni/src/main/java/java/text/ |
RuleBasedCollator.java | 131 * This allows you to use a RuleBasedCollator to compare accented strings even 376 * {@code RuleBasedCollator.compare(String, String)} has better performance. 387 public int compare(String source, String target) { method in class:RuleBasedCollator 393 return icuColl.compare(source, target); 420 * the object to compare with this object.
|
/libcore/luni/src/main/java/java/util/ |
Objects.java | 29 * Returns 0 if {@code a == b}, or {@code c.compare(a, b)} otherwise. 32 public static <T> int compare(T a, T b, Comparator<? super T> c) { method in class:Objects 36 return c.compare(a, b);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x501/ |
AttributeTypeAndValueComparator.java | 47 public int compare(Object obj1, Object obj2) { method in class:AttributeTypeAndValueComparator
|
/libcore/luni/src/test/java/libcore/java/lang/ |
BooleanTest.java | 31 assertEquals(0, Boolean.compare(true, true)); 32 assertEquals(0, Boolean.compare(false, false)); 33 assertTrue(Boolean.compare(false, true) < 0); 34 assertTrue(Boolean.compare(true, false) > 0);
|
/libcore/luni/src/test/java/tests/api/java/lang/ |
StringTest.java | 47 assertTrue(String.CASE_INSENSITIVE_ORDER.compare(s1, s2) == 0);
|
/libcore/luni/src/test/java/tests/java/lang/String/ |
Tests.java | 46 assertTrue(String.CASE_INSENSITIVE_ORDER.compare(s1, s2) == 0);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_collate.h | 50 int compare(const char* __low1, const char* __high1, function in class:collate 86 int compare(const wchar_t* __low1, const wchar_t* __high1, function in class:collate 166 return __coll.compare(__x.data(), __x.data() + __x.size(),
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/ |
compare.hpp | 49 static int compare( CharT const* s1, CharT const* s2, std::size_t n ) function in struct:boost::unit_test::ut_detail::case_ins 69 return x.size() == y.size() && ut_detail::case_ins<CharT>::compare( x.begin(), y.begin(), x.size() ) == 0; 86 : ut_detail::case_ins<CharT>::compare( x.begin(), y.begin(), x.size() ) < 0; 104 : traits_type::compare( x.begin(), y.begin(), x.size() ) < 0;
|
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/ |
CityGmtOffsetComparator.java | 26 public int compare(CityObj c1, CityObj c2) { method in class:CityGmtOffsetComparator 31 getCityNameComparator().compare(c1, c2);
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
MediaSetUtils.java | 60 public int compare(MediaSet set1, MediaSet set2) { method in class:MediaSetUtils.NameComparator
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
ExtensionFileComparator.java | 27 * Compare the file name <b>extensions</b> for order
95 * Compare the extensions of two files the specified case sensitivity.
97 * @param obj1 The first file to compare
98 * @param obj2 The second file to compare
105 public int compare(File file1, File file2) {
method in class:ExtensionFileComparator
|
NameFileComparator.java | 26 * Compare the <b>names</b> of two files for order (see {@link File#getName()}).
92 * Compare the names of two files with the specified case sensitivity.
94 * @param obj1 The first file to compare
95 * @param obj2 The second file to compare
101 public int compare(File file1, File file2) {
method in class:NameFileComparator
|
PathFileComparator.java | 26 * Compare the <b>path</b> of two files for order (see {@link File#getPath()}).
92 * Compare the paths of two files the specified case sensitivity.
94 * @param obj1 The first file to compare
95 * @param obj2 The second file to compare
102 public int compare(File file1, File file2) {
method in class:PathFileComparator
|
SizeFileComparator.java | 26 * Compare the <b>length/size</b> of two files for order (see
98 * Compare the length of two files.
100 * @param obj1 The first file to compare
101 * @param obj2 The second file to compare
108 public int compare(File file1, File file2) {
method in class:SizeFileComparator
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/ |
UserDictionaryToolsListEN.java | 71 public int compare(WnnWord word1, WnnWord word2) { method in class:UserDictionaryToolsListEN.ListComparatorEN
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
UserDictionaryToolsListJAJP.java | 68 public int compare(WnnWord word1, WnnWord word2) { method in class:UserDictionaryToolsListJAJP.ListComparatorJAJP
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_collate.h | 50 int compare(const char* __low1, const char* __high1, function in class:collate 86 int compare(const wchar_t* __low1, const wchar_t* __high1, function in class:collate 166 return __coll.compare(__x.data(), __x.data() + __x.size(),
|