HomeSort by relevance Sort by last modified time
    Searched defs:compare (Results 476 - 500 of 930) sorted by null

<<11121314151617181920>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
Util.java 82 public int compare(Object o1, Object o2) { method in class:Util.BuildDateComparator
  /external/icu4c/common/unicode/
unistr.h 43 * Compare strings in code point order instead of code unit order.
222 * compare equal (to be transitive and prevent endless loops in sorting),
276 * @param text The UnicodeString to compare to this one.
285 * @param text The UnicodeString to compare to this one.
294 * @param text The UnicodeString to compare to this one.
303 * @param text The UnicodeString to compare to this one.
312 * @param text The UnicodeString to compare to this one.
321 * @param text The UnicodeString to compare to this one.
329 * Compare the characters bitwise in this UnicodeString to
331 * @param text The UnicodeString to compare to this one
3710 UnicodeString::compare(const UnicodeString& text) const function in class:UnicodeString
3714 UnicodeString::compare(int32_t start, function in class:UnicodeString
3720 UnicodeString::compare(const UChar *srcChars, function in class:UnicodeString
3725 UnicodeString::compare(int32_t start, function in class:UnicodeString
3733 UnicodeString::compare(int32_t start, function in class:UnicodeString
3739 UnicodeString::compare(int32_t start, function in class:UnicodeString
    [all...]
  /external/icu4c/i18n/
coll.cpp 434 Collator::EComparisonResult Collator::compare(const UnicodeString& source, function in class:Collator
438 return (EComparisonResult)compare(source, target, ec);
442 Collator::EComparisonResult Collator::compare(const UnicodeString& source, function in class:Collator
447 return (EComparisonResult)compare(source, target, length, ec);
451 Collator::EComparisonResult Collator::compare(const UChar* source, int32_t sourceLength, function in class:Collator
456 return (EComparisonResult)compare(source, sourceLength, target, targetLength, ec);
459 UCollationResult Collator::compare(UCharIterator &/*sIter*/, function in class:Collator
478 return compare(sIter, tIter, status);
485 return (compare(source, target, ec) == UCOL_EQUAL);
492 return (compare(source, target, ec) != UCOL_LESS)
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 76 /// integers here because the actual compare logic below considers pointers and
85 /// functions that will compare equal, without looking at the instructions
172 bool compare();
176 bool compare(const BasicBlock *BB1, const BasicBlock *BB2);
183 /// Compare two Instructions for equivalence, similar to
189 /// Compare two GEPs for equivalent pointer arithmetic.
196 /// Compare two Types, treating all pointer types as equal.
380 // Compare two values used by the two functions under pair-wise comparison. If
424 bool FunctionComparator::compare(const BasicBlock *BB1, const BasicBlock *BB2) { function in class:FunctionComparator
467 bool FunctionComparator::compare() { function in class:FunctionComparator
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 459 ImmediateValue::compare(CondCode cc, float fval) const function in class:nv50_ir::ImmediateValue
  /external/openssh/openbsd-compat/
glob.c 141 static int compare(const void *, const void *);
553 pglob->gl_pathc - oldpathc, sizeof(char *), compare);
558 compare(const void *p, const void *q) function
  /external/skia/src/animator/
SkScript.cpp 292 SkOp compare; local
294 compare = fOpStack.index(idx);
295 if ((compare & kArtificialOp) == 0)
299 signed char topPrecedence = gPrecedence[compare];
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
StringUtils.java 245 public int compare(Calendar o1, Calendar o2) {
478 compare: {
485 case '0': buf.append(' '); i+=2; break compare; local
486 case '2': buf.append('"'); i+=2; break compare; local
487 case '6': buf.append('&'); i+=2; break compare; local
488 case '7': buf.append('\''); i+=2; break compare; local
489 case 'f': buf.append('/'); i+=2; break compare; local
494 case 'a': buf.append(':'); i+=2; break compare; local
495 case 'c': buf.append('<'); i+=2; break compare; local
496 case 'e': buf.append('>'); i+=2; break compare; local
503 break compare; local
510 break compare; local
    [all...]
  /external/stlport/stlport/stl/
_string.h 1026 int compare(const _Self& __s) const function in class:basic_string
1029 int compare(size_type __pos1, size_type __n1, const _Self& __s) const { function in class:basic_string
1037 int compare(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
1047 int compare(const _CharT* __s) const { function in class:basic_string
1052 int compare(size_type __pos1, size_type __n1, const _CharT* __s) const { function in class:basic_string
1061 int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const { function in class:basic_string
    [all...]
  /external/stlport/test/unit/
string_test.cpp 74 CPPUNIT_TEST(compare);
130 void compare();
904 void StringTest::compare() function in class:StringTest
910 CPPUNIT_ASSERT( str1.compare(str2) == 0 );
912 CPPUNIT_ASSERT( str1.compare(str2) > 0 );
914 CPPUNIT_ASSERT( str1.compare(str2) < 0 );
916 CPPUNIT_ASSERT( str1.compare("abcdef") == 0 );
917 CPPUNIT_ASSERT( str1.compare("abcde") > 0 );
918 CPPUNIT_ASSERT( str1.compare("abcdefg") < 0 );
921 CPPUNIT_ASSERT( str1.compare(2, 3, str2) == 0 )
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 289 * Compare two {@code Time} objects and return a negative number if {@code
293 * @param a first {@code Time} instance to compare
294 * @param b second {@code Time} instance to compare
301 public static int compare(Time a, Time b) { method in class:Time
615 * @param that a given Time object to compare against
619 return Time.compare(this, that) < 0;
627 * @param that a given Time object to compare against
631 return Time.compare(this, that) > 0;
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.cpp 255 int TextLayoutCacheKey::compare(const TextLayoutCacheKey& lhs, const TextLayoutCacheKey& rhs) { function in class:android::TextLayoutCacheKey
    [all...]
  /frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
CameraPreviewActivity.java 204 public int compare(Camera.Size lhs, Camera.Size rhs) { method in class:CameraPreviewActivity.SizeCompare
  /libcore/luni/src/test/java/libcore/java/text/
OldDecimalFormatTest.java 600 private void compare(String testName, String format, String expected) { method in class:OldDecimalFormatTest
605 private boolean compare(int count, String format, String expected) { method in class:OldDecimalFormatTest
624 compare("00.0#E0: 0.0", df.format(0.0), "00.0E0");
625 compare("00.0#E0: 1.0", df.format(1.0), "10.0E-1");
626 compare("00.0#E0: 12.0", df.format(12.0), "12.0E0");
627 compare("00.0#E0: 123.0", df.format(123.0), "12.3E1");
628 compare("00.0#E0: 1234.0", df.format(1234.0), "12.34E2");
629 compare("00.0#E0: 12346.0", df.format(12346.0), "12.35E3");
630 compare("00.0#E0: 99999.0", df.format(99999.0), "10.0E4");
631 compare("00.0#E0: 1.2", df.format(1.2), "12.0E-1")
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string.h 1026 int compare(const _Self& __s) const function in class:basic_string
1029 int compare(size_type __pos1, size_type __n1, const _Self& __s) const { function in class:basic_string
1037 int compare(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
1047 int compare(const _CharT* __s) const { function in class:basic_string
1052 int compare(size_type __pos1, size_type __n1, const _CharT* __s) const { function in class:basic_string
1061 int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const { function in class:basic_string
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 74 CPPUNIT_TEST(compare);
130 void compare();
904 void StringTest::compare() function in class:StringTest
910 CPPUNIT_ASSERT( str1.compare(str2) == 0 );
912 CPPUNIT_ASSERT( str1.compare(str2) > 0 );
914 CPPUNIT_ASSERT( str1.compare(str2) < 0 );
916 CPPUNIT_ASSERT( str1.compare("abcdef") == 0 );
917 CPPUNIT_ASSERT( str1.compare("abcde") > 0 );
918 CPPUNIT_ASSERT( str1.compare("abcdefg") < 0 );
921 CPPUNIT_ASSERT( str1.compare(2, 3, str2) == 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 74 CPPUNIT_TEST(compare);
130 void compare();
904 void StringTest::compare() function in class:StringTest
910 CPPUNIT_ASSERT( str1.compare(str2) == 0 );
912 CPPUNIT_ASSERT( str1.compare(str2) > 0 );
914 CPPUNIT_ASSERT( str1.compare(str2) < 0 );
916 CPPUNIT_ASSERT( str1.compare("abcdef") == 0 );
917 CPPUNIT_ASSERT( str1.compare("abcde") > 0 );
918 CPPUNIT_ASSERT( str1.compare("abcdefg") < 0 );
921 CPPUNIT_ASSERT( str1.compare(2, 3, str2) == 0 )
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountType.java 310 public int compare(DataKind object1, DataKind object2) {
509 * Compare two {@link AccountType} by their {@link AccountType#getDisplayLabel} with the
527 public int compare(AccountType lhs, AccountType rhs) { method in class:AccountType.DisplayLabelComparator
528 return mCollator.compare(getDisplayLabel(lhs), getDisplayLabel(rhs));
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DataManager.java 94 public int compare(MediaItem item1, MediaItem item2) { method in class:DataManager.DateTakenComparator
95 return -Utils.compare(item1.getDateInMs(), item2.getDateInMs());
TimeClustering.java 88 public int compare(SmallItem item1, SmallItem item2) { method in class:TimeClustering.DateComparator
89 return -Utils.compare(item1.dateInMs, item2.dateInMs);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 450 public int compare(final SuggestedWordInfo o1, final SuggestedWordInfo o2) { method in class:Suggest.SuggestedWordInfoComparator
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
vstring.h 1891 compare(const __versa_string& __str) const function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
vstring.h 1921 compare(const __versa_string& __str) const function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
vstring.h 1921 compare(const __versa_string& __str) const function in class:__versa_string
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 1891 compare(const __versa_string& __str) const function in class:__versa_string
    [all...]

Completed in 1312 milliseconds

<<11121314151617181920>>