/external/oprofile/libpp/ |
symbol_sort.cpp | 30 return image_names.name(l).compare(image_names.name(r)); 31 return image_names.basename(l).compare(image_names.basename(r)); 38 return debug_names.name(l).compare(debug_names.name(r)); 39 return debug_names.basename(l).compare(debug_names.basename(r)); 55 return symbol_names.demangle(lhs.name).compare(
|
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/ |
ApiLookup.java | 548 private static int compare(byte[] data, int offset, byte terminator, String s, int max) { method in class:ApiLookup 722 // Compare the api info at the given index. 724 int compare = compare(mData, offset, (byte) 0, owner, classNameLength); local 725 if (compare == 0) { 729 if (compare < 0) { 731 } else if (compare > 0) { 734 assert false; // compare == 0 already handled above 758 int compare = entryClass - classNumber; local 759 if (compare == 0) [all...] |
/cts/tools/signature-tools/src/signature/compare/ |
ApiComparator.java | 17 package signature.compare; 19 import signature.compare.model.IAnnotationDelta; 20 import signature.compare.model.IAnnotationElementDelta; 21 import signature.compare.model.IAnnotationFieldDelta; 22 import signature.compare.model.IApiDelta; 23 import signature.compare.model.IClassDefinitionDelta; 24 import signature.compare.model.IConstructorDelta; 25 import signature.compare.model.IDelta; 26 import signature.compare.model.IEnumConstantDelta; 27 import signature.compare.model.IFieldDelta 105 public IApiDelta compare(IApi from, IApi to) { method in class:ApiComparator [all...] |
/cts/tools/signature-tools/src/signature/io/html/ |
ClassOverviewPage.java | 25 import signature.compare.model.IAnnotationFieldDelta; 26 import signature.compare.model.IClassDefinitionDelta; 27 import signature.compare.model.IConstructorDelta; 28 import signature.compare.model.IEnumConstantDelta; 29 import signature.compare.model.IFieldDelta; 30 import signature.compare.model.IMethodDelta; 31 import signature.compare.model.impl.SigDelta;
|
/external/icu4c/i18n/unicode/ |
coll.h | 37 * 02/10/98 damiba Added compare() with length as parameter. 105 * The following example shows how to compare two strings using the 110 * // Compare two strings in the default locale 113 * if (myCollator->compare("abc", "ABC") < 0) 137 * if (usCollator->compare("abc", "ABC") == 0) 143 * For comparing strings exactly once, the <code>compare</code> method 145 * is generally necessary to compare each string multiple times. In this case, 218 * string in the compare() method. 220 * string in the compare() method. 222 * target string in the compare() method [all...] |
tblcoll.h | 39 * 6/17/97 helena Added IDENTICAL strength for compare, changed getRules to 44 * 02/10/98 damiba Added compare with "length" parameter 213 * @param other other RuleBasedCollator object to compare with. 279 virtual EComparisonResult compare(const UnicodeString& source, 295 virtual UCollationResult compare(const UnicodeString& source, 312 virtual EComparisonResult compare(const UnicodeString& source, 317 * Does the same thing as compare but limits the comparison to a specified 329 virtual UCollationResult compare(const UnicodeString& source, 350 * . myCollation->compare(abc, 3, ABC, 3); 354 * . result = myCollation->compare(abc, 3, ABC, 3) [all...] |
/external/proguard/src/proguard/evaluation/value/ |
LongValue.java | 203 public IntegerValue compare(LongValue other) method in class:LongValue 217 return compare(other).negate(); 358 public IntegerValue compare(SpecificLongValue other) method in class:LongValue 373 return compare(other).negate(); 514 public IntegerValue compare(ParticularLongValue other) method in class:LongValue 516 return compare((SpecificLongValue)other); 529 return compare(other).negate();
|
/external/guava/guava-tests/test/com/google/common/collect/ |
GeneralRangeTest.java | 92 assertEquals(ORDERING.compare(i, 3) == 0, range.contains(i)); 100 assertEquals(ORDERING.compare(i, 3) > 0 101 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 102 assertEquals(ORDERING.compare(i, 3) < 0 103 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooLow(i)); 113 assertEquals(ORDERING.compare(i, 3) < 0 114 || (ORDERING.compare(i, 3) == 0 && lBoundType == CLOSED), range.contains(i)); 115 assertEquals(ORDERING.compare(i, 3) > 0 116 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooHigh(i));
|
/cts/tools/signature-tools/src/signature/compare/model/impl/ |
SigDelta.java | 17 package signature.compare.model.impl; 26 import signature.compare.model.IDelta; 27 import signature.compare.model.DeltaType;
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
CatchHandlerList.java | 149 int compare = thisEntry.compareTo(otherEntry); local 150 if (compare != 0) { 151 return compare;
|
/dalvik/dx/src/com/android/dx/dex/code/ |
CatchHandlerList.java | 149 int compare = thisEntry.compareTo(otherEntry); local 150 if (compare != 0) { 151 return compare;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
CatchHandlerList.java | 149 int compare = thisEntry.compareTo(otherEntry); local 150 if (compare != 0) { 151 return compare;
|
/external/guava/guava/src/com/google/common/primitives/ |
UnsignedBytes.java | 106 * @param a the first {@code byte} to compare 107 * @param b the second {@code byte} to compare 111 public static int compare(byte a, byte b) { method in class:UnsignedBytes 182 * #compare(byte, byte)}), the first pair of values that follow any common 278 // @Override public int compare(byte[] left, byte[] right) { 283 // * Compare 8 bytes at a time. Benchmarking shows comparing 8 bytes at a 294 // return UnsignedLongs.compare(lw, rw); 323 // int result = UnsignedBytes.compare(left[i], right[i]); 337 @Override public int compare(byte[] left, byte[] right) { method in class:UnsignedBytes.LexicographicalComparatorHolder.PureJavaComparator 340 int result = UnsignedBytes.compare(left[i], right[i]) [all...] |
/external/icu4c/common/ |
uvector.cpp | 114 // Compare using this object's comparer 436 * as defined by 'compare'. The current elements are assumed to 439 void UVector::sortedInsert(void* obj, USortComparator *compare, UErrorCode& ec) { 442 sortedInsert(tok, compare, ec); 447 * as defined by 'compare'. The current elements are assumed to 450 void UVector::sortedInsert(int32_t obj, USortComparator *compare, UErrorCode& ec) { 453 sortedInsert(tok, compare, ec); 457 void UVector::sortedInsert(UHashTok tok, USortComparator *compare, UErrorCode& ec) { 466 int8_t c = (*compare)(elements[probe], tok); 496 USortComparator *compare = *static_cast<USortComparator * const *>(context) local [all...] |
/external/stlport/src/ |
sparc_atomic.s | 18 ! swap [%o0], %o3 ! Do the compare and swap 37 ! swap [%o0], %o3 ! Do the compare and swap 59 ! swap [%o0], %o3 ! Do the compare and swap
|
sparc_atomic64.s | 16 casx [%o0], %o2, %o3 ! Do the compare and swap 35 casx [%o0], %o2, %o3 ! Do the compare and swap 55 casx [%o0], %o2, %o3 ! Do the compare and swap
|
/libcore/luni/src/main/java/libcore/icu/ |
RuleBasedCollatorICU.java | 66 public int compare(String source, String target) { method in class:RuleBasedCollatorICU 67 return NativeCollation.compare(address, source, target); 131 return (compare(source, target) == 0);
|
/libcore/luni/src/test/java/libcore/java/lang/ |
CharacterTest.java | 110 assertEquals(0, Character.compare('a', 'a')); 111 assertTrue(Character.compare('a', 'b') < 0); 112 assertTrue(Character.compare('b', 'a') > 0);
|
/ndk/sources/cxx-stl/stlport/src/ |
sparc_atomic.s | 18 ! swap [%o0], %o3 ! Do the compare and swap 37 ! swap [%o0], %o3 ! Do the compare and swap 59 ! swap [%o0], %o3 ! Do the compare and swap
|
sparc_atomic64.s | 16 casx [%o0], %o2, %o3 ! Do the compare and swap 35 casx [%o0], %o2, %o3 ! Do the compare and swap 55 casx [%o0], %o2, %o3 ! Do the compare and swap
|
/cts/tools/signature-tools/src/signature/compare/model/subst/ |
ArrayTypeProjection.java | 17 package signature.compare.model.subst;
|
ClassReferenceProjection.java | 17 package signature.compare.model.subst;
|
ParameterProjection.java | 17 package signature.compare.model.subst;
|
WildcardTypeProjection.java | 17 package signature.compare.model.subst;
|
/external/bluetooth/glib/tests/ |
module-test.c | 48 compare (const gchar *desc, const gchar *expected, const gchar *found) function 64 compare ("global", global, global_state); 65 compare ("Plugin A", gplugin_a, *gplugin_a_state); 66 compare ("Plugin B", gplugin_b, *gplugin_b_state);
|