Searched defs:compare (Results 1 - 25 of 489) sorted by relevance

1234567891011>>

/external/skia/tools/lua/
H A Dngrams_aggregate.lua14 function compare(a, b) function
17 table.sort(countArray, compare)
/external/v8/test/mjsunit/regress/
H A Dregress-1434.js30 function compare(a, b) { function
34 compare(1.5, 2.5);
35 %OptimizeFunctionOnNextCall(compare);
36 assertTrue(compare(undefined, undefined));
/external/jdiff/src/jdiff/
H A DCompareClassPdiffs.java6 * Class to compare two ClassDiff objects.
16 public int compare(Object obj1, Object obj2){ method in class:CompareClassPdiffs
H A DComparePkgPdiffs.java6 * Class to compare two PackageDiff objects.
16 public int compare(Object obj1, Object obj2){ method in class:ComparePkgPdiffs
/external/autotest/client/cros/chameleon/
H A Dmirror_comparison.py14 """A class to compare the resolutions and screens for mirrored mode.
16 Calling its member method compare() does the comparison.
34 def compare(self): member in class:MirrorComparer
66 return self._screen_comparer.compare()
H A Dresolution_comparison.py12 """A class to compare the resolutions by using exact match.
14 Calling its member method compare() does the comparison.
24 def compare(self, expected_resolution): member in class:ExactMatchResolutionComparer
71 """A class to compare the resolutions for VGA interface.
73 Calling its member method compare() does the comparison.
83 def compare(self, expected_resolution): member in class:VgaResolutionComparer
H A Dscreen_comparison.py15 """A class to compare two screens.
17 Calling its member method compare() does the comparison.
45 def compare(self): member in class:ScreenComparer
/external/apache-http/src/org/apache/commons/codec/
H A DStringEncoderComparator.java68 * @param o1 the object to compare
69 * @param o2 the object to compare to
73 public int compare(Object o1, Object o2) { method in class:StringEncoderComparator
/external/apache-http/src/org/apache/http/cookie/
H A DCookieIdentityComparator.java38 * This cookie comparator can be used to compare identity of cookies.
56 public int compare(final Cookie c1, final Cookie c2) { method in class:CookieIdentityComparator
H A DCookiePathComparator.java71 public int compare(final Cookie c1, final Cookie c2) { method in class:CookiePathComparator
/external/autotest/client/cros/image_comparison/
H A Dupload_on_fail_comparer.py25 @param local_comparer: object impementing compare(), local comparer.
26 @param remote_comparer: object implementing compare(), remote comparer.
42 def compare(self, golden_image_path, test_image_path, box=None): member in class:UploadOnFailComparer
47 compare the same images.
68 res = self.local_comparer.compare(golden_image_path,
82 res_remote = self.remote_comparer.compare(golden_image_path,
H A Dpdiff_image_comparer.py22 def compare(self, golden_img_path, test_img_path, box=None): member in class:PdiffImageComparer
30 Defines the rectangular boundary within which to compare.
H A Drgb_image_comparer.py35 def compare(self, golden_img_path, test_img_path, box=None): member in class:RGBImageComparer
/external/autotest/frontend/client/src/autotest/common/table/
H A DJSONObjectComparator.java17 public int compare(JSONObject arg0, JSONObject arg1) { method in class:JSONObjectComparator
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp4.cpp37 int compare(T x, T y);
40 template <> int foo<char>::compare(char x, char y);
41 template <class T> int foo<T>::compare(T x, T y) { function in class:test0::foo
/external/compiler-rt/test/msan/
H A Dtsearch.cc7 int compare(const void *pa, const void *pb) { function
26 void *q = tsearch(p, &root, compare);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DUnsigned.java25 public static int compare(short ushortA, short ushortB) { method in class:Unsigned
34 public static int compare(int uintA, int uintB) { method in class:Unsigned
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DMultiComparator.java25 /* Lexigraphic compare. Returns the first difference
28 * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
30 public int compare(T arg0, T arg1) { method in class:MultiComparator
32 int result = comparators[i].compare(arg0, arg1);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DMultiComparator.java23 /* Lexigraphic compare. Returns the first difference
26 * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
28 public int compare(T arg0, T arg1) { method in class:MultiComparator
30 int result = comparators[i].compare(arg0, arg1);
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
H A DStartPositionComparator.java25 public int compare(ASTNode o1, ASTNode o2) { method in class:StartPositionComparator
26 return Integer.compare(o1.getStartPosition(), o2.getStartPosition());
/external/proguard/src/proguard/util/
H A DObjectUtil.java61 public static int compare(Comparable object1, Comparable object2) method in class:ObjectUtil
/external/autotest/tko/parsers/test/
H A Dinspect_parser_result_store.py33 def compare(left_tag, right_tag): function
/external/guava/guava/src/com/google/common/collect/
H A DAllEqualOrdering.java36 public int compare(@Nullable Object left, @Nullable Object right) { method in class:AllEqualOrdering
H A DByFunctionOrdering.java45 @Override public int compare(F left, F right) { method in class:ByFunctionOrdering
46 return ordering.compare(function.apply(left), function.apply(right));
H A DComparatorOrdering.java37 @Override public int compare(T a, T b) { method in class:ComparatorOrdering
38 return comparator.compare(a, b);

Completed in 651 milliseconds

1234567891011>>