Searched defs:compare (Results 126 - 150 of 380) sorted by relevance

1234567891011>>

/external/deqp/modules/gles3/functional/
H A Des3fFboMultisampleTests.cpp234 bool compare (const tcu::Surface& reference, const tcu::Surface& result) function in class:deqp::gles3::Functional::BasicFboMultisampleCase
237 return FboTestCase::compare(reference, result);
H A Des3fFboTestCase.cpp116 bool isOk = compare(reference, result);
122 bool FboTestCase::compare (const tcu::Surface& reference, const tcu::Surface& result) function in class:deqp::gles3::Functional::FboTestCase
/external/deqp/modules/gles31/functional/
H A Des31fFboColorbufferTests.cpp101 bool compare (const tcu::Surface& reference, const tcu::Surface& result) function in class:deqp::gles31::Functional::FboColorbufferCase
H A Des31fFboTestCase.cpp120 bool isOk = compare(reference, result);
126 bool FboTestCase::compare (const tcu::Surface& reference, const tcu::Surface& result) function in class:deqp::gles31::Functional::FboTestCase
/external/e2fsprogs/intl/
H A Dl10nflist.c276 int compare = strcmp (retval->filename, abs_filename); local
277 if (compare == 0)
280 if (compare < 0)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DBuildsView.java263 * Class to compare builds regarding their date instead of their name.
268 public int compare(Object o1, Object o2) { method in class:BuildsView.BuildDateComparator
375 public int compare(Viewer view, Object e1, Object e2) {
379 return super.compare(view, e1, e2);
/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/
H A DUtil.java82 public int compare(Object o1, Object o2) { method in class:Util.BuildDateComparator
/external/emma/core/java12/com/vladium/emma/report/
H A DIItemAttribute.java107 public int compare (final Object l, final Object g) method in class:IItemAttribute.Factory.NameAttribute.NameComparator
175 public int compare (final Object l, final Object g) method in class:IItemAttribute.Factory.FractionAttribute.FractionComparator
/external/freetype/src/cache/
H A Dftccache.c494 FTC_Node_CompareFunc compare = cache->clazz.node_compare; local
512 compare( node, query, cache, &list_changed ) )
/external/guava/guava/src/com/google/common/collect/
H A DOrdering.java52 * public int compare(String left, String right) {
53 * return Ints.compare(left.length(), right.length());
89 * {@link #compare(Object, Object) compare} method instead.
125 * to compare, in the order the comparator should induce
152 * comparator will be able to compare, in the order the comparator should
168 * outside the set of values it can compare. Extending {@link
177 super("Cannot compare value: " + value);
185 * Returns an arbitrary ordering over all objects, for which {@code compare(a,
220 @Override public int compare(Objec method in class:Ordering.ArbitraryOrdering
392 @Override public abstract int compare(@Nullable T left, @Nullable T right); method in class:Ordering
[all...]
H A DTreeBasedTable.java189 || compare(lowerBound, upperBound) <= 0);
196 int compare(Object a, Object b) { method in class:TreeBasedTable.TreeRow
197 // pretend we can compare anything
200 return cmp.compare(a, b);
204 return o != null && (lowerBound == null || compare(lowerBound, o) <= 0)
205 && (upperBound == null || compare(upperBound, o) > 0);
360 lastValue != null && comparator.compare(next, lastValue) == 0;
/external/guava/guava/src/com/google/common/primitives/
H A DBooleans.java63 * @param a the first {@code boolean} to compare
64 * @param b the second {@code boolean} to compare
68 public static int compare(boolean a, boolean b) { method in class:Booleans
259 * #compare(boolean, boolean)}), the first pair of values that follow any
280 public int compare(boolean[] left, boolean[] right) { method in class:Booleans.LexicographicalComparator
283 int result = Booleans.compare(left[i], right[i]);
H A DChars.java103 * @param a the first {@code char} to compare
104 * @param b the second {@code char} to compare
108 public static int compare(char a, char b) { method in class:Chars
378 * #compare(char, char)}), the first pair of values that follow any
399 public int compare(char[] left, char[] right) { method in class:Chars.LexicographicalComparator
402 int result = Chars.compare(left[i], right[i]);
H A DDoubles.java76 * @param a the first {@code double} to compare
77 * @param b the second {@code double} to compare
81 public static int compare(double a, double b) { method in class:Doubles
82 return Double.compare(a, b);
321 * #compare(double, double)}), the first pair of values that follow any
342 public int compare(double[] left, double[] right) { method in class:Doubles.LexicographicalComparator
345 int result = Doubles.compare(left[i], right[i]);
H A DFloats.java70 * Float#compare(float, float)}. You may prefer to invoke that method
74 * @param a the first {@code float} to compare
75 * @param b the second {@code float} to compare
76 * @return the result of invoking {@link Float#compare(float, float)}
78 public static int compare(float a, float b) { method in class:Floats
79 return Float.compare(a, b);
318 * #compare(float, float)}), the first pair of values that follow any
339 public int compare(float[] left, float[] right) { method in class:Floats.LexicographicalComparator
342 int result = Floats.compare(left[i], right[i]);
H A DShorts.java108 * @param a the first {@code short} to compare
109 * @param b the second {@code short} to compare
113 public static int compare(short a, short b) { method in class:Shorts
383 * #compare(short, short)}), the first pair of values that follow any
404 public int compare(short[] left, short[] right) { method in class:Shorts.LexicographicalComparator
407 int result = Shorts.compare(left[i], right[i]);
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DChars.java101 * @param a the first {@code char} to compare
102 * @param b the second {@code char} to compare
106 public static int compare(char a, char b) { method in class:Chars
327 * #compare(char, char)}), the first pair of values that follow any
348 public int compare(char[] left, char[] right) { method in class:Chars.LexicographicalComparator
351 int result = Chars.compare(left[i], right[i]);
H A DInts.java105 * @param a the first {@code int} to compare
106 * @param b the second {@code int} to compare
110 public static int compare(int a, int b) { method in class:Ints
330 * #compare(int, int)}), the first pair of values that follow any
350 public int compare(int[] left, int[] right) { method in class:Ints.LexicographicalComparator
353 int result = Ints.compare(left[i], right[i]);
H A DLongs.java78 * @param a the first {@code long} to compare
79 * @param b the second {@code long} to compare
83 public static int compare(long a, long b) { method in class:Longs
303 * #compare(long, long)}), the first pair of values that follow any
324 public int compare(long[] left, long[] right) { method in class:Longs.LexicographicalComparator
327 int result = Longs.compare(left[i], right[i]);
H A DShorts.java106 * @param a the first {@code short} to compare
107 * @param b the second {@code short} to compare
111 public static int compare(short a, short b) { method in class:Shorts
331 * #compare(short, short)}), the first pair of values that follow any
352 public int compare(short[] left, short[] right) { method in class:Shorts.LexicographicalComparator
355 int result = Shorts.compare(left[i], right[i]);
/external/icu/icu4c/source/i18n/
H A Dcollationsets.cpp74 compare(start, ce32, baseCE32);
81 TailoredSet::compare(UChar32 c, uint32_t ce32, uint32_t baseCE32) { function in class:TailoredSet
240 int32_t cmp = tp->compare(*bp);
251 compare(c, (uint32_t)prefixes.getValue(), (uint32_t)basePrefixes.getValue());
287 int32_t cmp = ts->compare(*bs);
298 compare(c, (uint32_t)suffixes.getValue(), (uint32_t)baseSuffixes.getValue());
/external/icu/icu4c/source/test/intltest/
H A Dnormconf.cpp59 void NormalizerConformanceTest::compare(const UnicodeString& s1, const UnicodeString& s2){ function in class:NormalizerConformanceTest
63 if(Normalizer::compare(s1,s2,U_FOLD_CASE_DEFAULT,status)!=0){
64 errln("Normalizer::compare() failed for s1: " + prettify(s1) + " s2: " +prettify(s2));
353 compare(field[1],field[2]);
354 compare(field[0],field[1]);
430 rc=Normalizer::compare(field[0], field[2], (options<<UNORM_COMPARE_NORM_OPTIONS_SHIFT)|U_COMPARE_IGNORE_CASE, status);
432 dataerrln("Normalizer::compare(case-insensitive) sets %s", u_errorName(status));
435 errln("Normalizer::compare(original, NFD, case-insensitive) returned %d instead of 0 for equal", rc);
/external/libxml2/
H A Dlist.c181 * @compare: an optional comparison function
188 xmlListCreate(xmlListDeallocator deallocator, xmlListDataCompare compare) argument
214 if (compare != NULL)
215 l->linkCompare = compare;
/external/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h91 return compare(a->getCost(), b);
94 return compare(a->getCost(), b->getCost());
97 CostKeyTComparator compare; member in class:PBQP::CostPool::EntryComparator
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_cache.c71 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)

Completed in 476 milliseconds

1234567891011>>