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

<<11121314151617181920>>

  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_Format.java 65 + format.format(object), compare(results, expectedResults));
71 protected static boolean compare(Vector<FieldContainer> vector1, Vector<FieldContainer> vector2) { method in class:Support_Format
  /external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 111 function compare(a, b) { function
116 return compare(app1.name.toLowerCase(), app2.name.toLowerCase());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 111 function compare(a, b) { function
116 return compare(app1.name.toLowerCase(), app2.name.toLowerCase());
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum-dtoa.cc 221 int compare = Bignum::PlusCompare(*numerator, *numerator, *denominator); local
222 if (compare < 0) {
224 } else if (compare > 0) {
331 // by 10 so that we can compare more easily.
    [all...]
  /external/chromium_org/third_party/freetype/src/cache/
ftccache.c 494 FTC_Node_CompareFunc compare = cache->clazz.node_compare; local
512 compare( node, query, cache, &list_changed ) )
  /external/chromium_org/third_party/icu/source/i18n/
digitlst.cpp 158 int32_t DigitList::compare(const DigitList &other) { function in class:DigitList
593 if (this->compare(min32) < 0) {
597 if (this->compare(max32) > 0) {
640 if (this->compare(min64) < 0) {
644 if (this->compare(max64) > 0) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_cache.c 70 /** Compare two keys */
71 int (*compare)(const void *key1, const void *key2); member in struct:util_cache
91 int (*compare)(const void *key1, const void *key2),
102 cache->compare = compare;
143 cache->compare(key, current->key) == 0)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_sample.h 127 filter_func compare; member in struct:sp_sampler_variant
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.c 42 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) {
  /external/chromium_org/v8/src/
bignum-dtoa.cc 222 int compare = Bignum::PlusCompare(*numerator, *numerator, *denominator); local
223 if (compare < 0) {
225 } else if (compare > 0) {
332 // by 10 so that we can compare more easily.
  /external/chromium_org/webkit/data/test_shell/sort/
sort.js 286 Sort.prototype.compare = function(x, y) {
289 //log("compare " + x + "(" + bx.value + ")," + y + "(" + by.value + ")");
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 63 inline bool compare(DominatorTree &Other) const { function in class:clang::DominatorTree
70 if (DT->compare(Other.getBase()))
  /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/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationItem.java 70 public int compare(AnnotationItem item1, AnnotationItem item2) { method in class:AnnotationItem.TypeIdSorter
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
FibonacciMaker.java 54 code.compare(Comparison.LT, baseCase, i, constant2);
  /external/e2fsprogs/intl/
l10nflist.c 276 int compare = strcmp (retval->filename, abs_filename); local
277 if (compare == 0)
280 if (compare < 0)
  /external/freetype/src/cache/
ftccache.c 494 FTC_Node_CompareFunc compare = cache->clazz.node_compare; local
512 compare( node, query, cache, &list_changed ) )
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLongs.java 66 * @param a the first unsigned {@code long} to compare
67 * @param b the second unsigned {@code long} to compare
71 public static int compare(long a, long b) { method in class:UnsignedLongs
72 return Longs.compare(flip(a), flip(b));
80 * the array according to {@link #compare}
100 * in the array according to {@link #compare}
140 * lexicographically. That is, it compares, using {@link #compare(long, long)}), the first pair of
159 public int compare(long[] left, long[] right) { method in class:UnsignedLongs.LexicographicalComparator
163 return UnsignedLongs.compare(left[i], right[i]);
180 if (compare(dividend, divisor) < 0)
    [all...]
  /external/icu4c/i18n/
digitlst.cpp 160 int32_t DigitList::compare(const DigitList &other) { function in class:DigitList
629 if (this->compare(min32) < 0) {
633 if (this->compare(max32) > 0) {
676 if (this->compare(min64) < 0) {
680 if (this->compare(max64) > 0) {
  /external/icu4c/samples/ustring/
ustring.cpp 152 int32_t compare; local
163 compare=u_strcmp(buffer, text);
164 if(compare<=0) {
173 /* Compare two strings case-insensitively using full case folding */
174 compare=u_strcasecmp(buffer, cmpText, U_FOLD_CASE_DEFAULT);
175 if(compare!=0) {
538 // compare the C and C++ strings
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
ModelConverter.java 53 public int compare(PrimitiveGroup g1, PrimitiveGroup g2) { method in class:ModelConverter.PrimComparator
  /external/llvm/include/llvm/Analysis/
DominanceFrontier.h 115 /// compare - Return true if the other dominance frontier base matches
117 bool compare(DominanceFrontierBase &Other) const { function in class:llvm::DominanceFrontierBase
  /external/mesa3d/src/gallium/auxiliary/util/
u_cache.c 70 /** Compare two keys */
71 int (*compare)(const void *key1, const void *key2); member in struct:util_cache
91 int (*compare)(const void *key1, const void *key2),
102 cache->compare = compare;
143 cache->compare(key, current->key) == 0)
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.h 127 filter_func compare; member in struct:sp_sampler_variant
  /external/mesa3d/src/mesa/program/
hash_table.c 42 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) {

Completed in 351 milliseconds

<<11121314151617181920>>