Searched defs:compare (Results 101 - 125 of 489) sorted by relevance

1234567891011>>

/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DTransliterationChart.java96 if (Normalizer.compare(s,r,0) == 0) {
216 public int compare(Object o1, Object o2) { method in class:TransliterationChart.MyComparator
232 public int compare(Object o1, Object o2) { method in class:TransliterationChart.ReverseComparator
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DCollator.java88 * if (usCollator.compare("abc", "ABC") == 0) {
92 * The following example shows how to compare two strings using the
98 * if (myCollator.compare("à\u0325", "a\u0325̀") != 0) {
101 * if (myCollator.compare("à\u0325", "a\u0325̀") != 0) {
765 * @see #compare
771 return (compare(source, target) == 0);
805 public int compare(String source, String target) { method in class:Collator
806 return collator.compare(source, target);
820 public int compare(Object source, Object target) { method in class:Collator
821 return compare((Strin
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DTailoredSet.java93 compare(start, ce32, baseCE32);
98 private void compare(int c, int ce32, int baseCE32) { method in class:TailoredSet
281 compare(c, te.value, be.value);
335 compare(c, te.value, be.value);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DIDNA2003.java433 public static int compare(String s1, String s2, int options) throws StringPrepParseException{ method in class:IDNA2003
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDecimalFormatAPIC.java460 + format.format(object), compare(results, expectedResults));
466 private static boolean compare(List vector1, List vector2) { method in class:IntlTestDecimalFormatAPIC
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DConformanceTest.java226 compare(field[1],field[2]);
227 compare(field[0],field[1]);
228 compare(field[0],field[2]);
325 if((rc = Normalizer.compare(field[0], field[2], (options<<Normalizer.COMPARE_NORM_OPTIONS_SHIFT)|Normalizer.COMPARE_IGNORE_CASE))!=0){
326 errln("Normalizer.compare(original, NFD, case-insensitive) returned "+rc+" instead of 0 for equal");
337 private void compare(String s1, String s2){ method in class:ConformanceTest
339 if(Normalizer.compare(UTF16.charAt(s1,0),UTF16.charAt(s2,0),Normalizer.COMPARE_IGNORE_CASE)!=0){
340 errln("Normalizer.compare(int,int) failed for s1: "
345 if(Normalizer.compare(UTF16.charAt(s1,0),s2,Normalizer.COMPARE_IGNORE_CASE)!=0){
346 errln("Normalizer.compare(in
[all...]
/external/junit/src/main/java/org/junit/experimental/max/
H A DMaxHistory.java134 public int compare(Description o1, Description o2) { method in class:MaxHistory.TestComparator
/external/llvm/include/llvm/ADT/
H A DSmallString.h97 /// Check for string equality. This is more efficient than compare() when
110 int compare(StringRef RHS) const { function in class:llvm::SmallString
111 return str().compare(RHS);
H A DStringRef.h149 /// compare() when the relative ordering of inequal strings isn't needed.
161 /// compare - Compare two strings; the result is -1, 0, or 1 if this string
164 int compare(StringRef RHS) const { function in class:llvm::StringRef
185 /// \param Other the string to compare this string against.
603 return LHS.compare(RHS) == -1;
607 return LHS.compare(RHS) != 1;
611 return LHS.compare(RHS) == 1;
615 return LHS.compare(RHS) != -1;
/external/llvm/include/llvm/CodeGen/
H A DMachineDominanceFrontier.h96 bool compare(DominanceFrontierBase<MachineBasicBlock> &Other) const { function in class:llvm::MachineDominanceFrontier
97 return Base.compare(Other);
/external/lzma/CPP/7zip/UI/FileManager/
H A DSysIconUtils.cpp141 int compare = MyStringCompareNoCase(ext, vect[mid].Ext); local
142 if (compare == 0)
144 if (compare < 0)
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.h127 filter_func compare; member in struct:sp_sampler_variant
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c84 static boolean compare( unsigned cached_nr, function
109 if (compare(hwtnl->index_cache[prim][i].gen_nr, gen_nr, gen_type))
/external/mesa3d/src/mesa/program/
H A Dhash_table.c42 hash_compare_func_t compare; member in struct:hash_table
58 hash_compare_func_t compare)
72 ht->compare = compare;
121 if ((*ht->compare)(hn->key, key) == 0) {
163 if ((*ht->compare)(hn->key, key) == 0) {
57 hash_table_ctor(unsigned num_buckets, hash_func_t hash, hash_compare_func_t compare) argument
/external/pcre/pcrecpp/include/
H A Dpcre_stringpiece.h133 int compare(const StringPiece& x) const { function in class:pcrecpp::StringPiece
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_pagerendercache.cpp21 static int compare(const void* data1, const void* data2) { function
51 FXSYS_qsort(pCACHEINFO, nCount, sizeof(CACHEINFO), compare);
/external/proguard/src/proguard/evaluation/value/
H A DLongValue.java203 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();
H A DParticularLongValue.java154 public IntegerValue compare(LongValue other) method in class:ParticularLongValue
H A DSpecificLongValue.java134 public IntegerValue compare(LongValue other) method in class:SpecificLongValue
232 public IntegerValue compare(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownLongValue.java135 public IntegerValue compare(LongValue other) method in class:UnknownLongValue
/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectManager.java185 public int compare(BaseObject object1, BaseObject object2) { method in class:GameObjectManager.HorizontalPositionComparator
/external/selinux/libsemanage/src/
H A Ddatabase.h36 int (*compare) (const record_t * rec, const record_key_t * key); member in struct:record_table
/external/skia/tests/
H A DDrawTextTest.cpp34 static bool compare(const SkBitmap& ref, const SkIRect& iref, function
108 compare(drawTextBitmap, drawTextRect,
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringRef.h117 /// compare() when the relative ordering of inequal strings isn't needed.
128 /// compare - Compare two strings; the result is -1, 0, or 1 if this string
130 int compare(StringRef RHS) const { function in class:llvm::StringRef
151 /// \param Other the string to compare this string against.
448 return LHS.compare(RHS) == -1;
452 return LHS.compare(RHS) != 1;
456 return LHS.compare(RHS) == 1;
460 return LHS.compare(RHS) != -1;
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DDominanceFrontier.h115 /// compare - Return true if the other dominance frontier base matches
117 bool compare(DominanceFrontierBase &Other) const { function in class:llvm::DominanceFrontierBase

Completed in 565 milliseconds

1234567891011>>