/cts/tools/signature-tools/src/signature/compare/model/impl/ |
SigUpperBoundsDelta.java | 17 package signature.compare.model.impl; 22 import signature.compare.model.ITypeReferenceDelta; 23 import signature.compare.model.IUpperBoundsDelta;
|
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_CMP_LONG.S | 3 * Compare two 64-bit values 18 slt t0, rARG1, rARG3 # compare hi 23 sltu t0, rARG0, rARG2 # compare lo
|
/dalvik/vm/mterp/arm-vfp/ |
OP_CMPG_DOUBLE.S | 6 * Compare two floating-point values. Puts 0, 1, or -1 into the 9 * int compare(x, y) { 30 fcmped d0, d1 @ compare (vBB, vCC)
|
OP_CMPG_FLOAT.S | 6 * Compare two floating-point values. Puts 0, 1, or -1 into the 9 * int compare(x, y) { 30 fcmpes s0, s1 @ compare (vBB, vCC)
|
OP_CMPL_DOUBLE.S | 6 * Compare two floating-point values. Puts 0, 1, or -1 into the 9 * int compare(x, y) { 30 fcmped d0, d1 @ compare (vBB, vCC)
|
OP_CMPL_FLOAT.S | 6 * Compare two floating-point values. Puts 0, 1, or -1 into the 9 * int compare(x, y) { 30 fcmpes s0, s1 @ compare (vBB, vCC)
|
/external/dropbear/libtommath/ |
bn_mp_cmp_mag.c | 18 /* compare maginitude of two ints (unsigned) */ 24 /* compare based on # of non-zero digits */ 39 /* compare based on digits */
|
/external/easymock/src/org/easymock/internal/matchers/ |
Compare.java | 24 public class Compare<T> implements IArgumentMatcher, Serializable {
34 public Compare(T expected, Comparator<? super T> comparator, LogicalOperator result) {
50 return operator.matchResult(comparator.compare((T) actual, expected));
|
/external/junit/src/org/junit/runner/manipulation/ |
Sorter.java | 18 public int compare(Description o1, Description o2) { 43 public int compare(Description o1, Description o2) { method in class:Sorter 44 return fComparator.compare(o1, o2);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.special/ |
swap.pass.cpp | 14 // template <class T, class Container, class Compare> 15 // void swap(priority_queue<T, Container, Compare>& x, 16 // priority_queue<T, Container, Compare>& y);
|
/external/openfst/src/include/fst/ |
arcsort.h | 36 template <class Arc, class Compare> 45 ArcSortMapper(const Fst<Arc> &fst, const Compare &comp) 49 ArcSortMapper(const ArcSortMapper<Arc, Compare> &mapper, 75 const Compare &comp_; 79 void operator=(const ArcSortMapper<Arc, Compare> &); // disallow 84 // type Compare. This version modifies its input. Comparison function 86 // library. In general, Compare must meet the requirements for an STL 96 template<class Arc, class Compare> 97 void ArcSort(MutableFst<Arc> *fst, Compare comp) { 98 ArcSortMapper<Arc, Compare> mapper(*fst, comp) [all...] |
/external/chromium_org/sync/internal_api/ |
syncapi_internal.cc | 48 if (name.compare(0, untrimmed_count, kForbiddenServerNames[i]) == 0) 54 // Compare the values of two EntitySpecifics, accounting for encryption. 58 // Note that we can't compare encrypted strings directly as they are seeded 63 NOTREACHED() << "Attempting to compare undecryptable data."; 72 NOTREACHED() << "Attempting to compare undecryptable data.";
|
/external/clang/test/SemaTemplate/ |
issue150.cpp | 78 template<class T, template<class> class Compare, class Default, 87 template<class _T, template<class> class Compare = PR9016::less, 88 class = typename interval_type_default<_T,Compare>::type, 96 template<class _T, template<class> class Compare = PR9016::less, 97 class = typename interval_type_default<_T,Compare>::type,
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
DefaultFileComparator.java | 24 * Compare two files using the <b>default</b> {@link File#compareTo(File)} method.
56 * Compare the two files using the {@link File#compareTo(File)} method.
58 * @param obj1 The first file to compare
59 * @param obj2 The second file to compare
63 public int compare(File file1, File file2) {
method in class:DefaultFileComparator
|
LastModifiedFileComparator.java | 24 * Compare the <b>last modified date/time</b> of two files for order
57 * Compare the last the last modified date/time of two files.
59 * @param obj1 The first file to compare
60 * @param obj2 The second file to compare
67 public int compare(File file1, File file2) {
method in class:LastModifiedFileComparator
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_xml_parser.cc | 53 if (element.compare("autofillqueryresponse") == 0) { 65 if (attribute_name.compare("uploadrequired") == 0) { 70 } else if (attribute_name.compare("experimentid") == 0) { 75 } else if (element.compare("field") == 0) { 92 if (attribute_name.compare("autofilltype") == 0) { 99 attribute_name.compare("defaultvalue") == 0) { 124 if (attribute_name.compare("id") == 0 && !attribute_value.empty()) { 128 } else if (attribute_name.compare("css_selector") == 0 && 163 if (element.compare("autofilluploadresponse") == 0) { 168 if (attribute_name.compare("positiveuploadrate") == 0) [all...] |
/frameworks/base/libs/usb/src/com/android/future/usb/ |
UsbAccessory.java | 98 private static boolean compare(String s1, String s2) { method in class:UsbAccessory 107 return (compare(mManufacturer, accessory.getManufacturer()) && 108 compare(mModel, accessory.getModel()) && 109 compare(mDescription, accessory.getDescription()) && 110 compare(mVersion, accessory.getVersion()) && 111 compare(mUri, accessory.getUri()) && 112 compare(mSerial, accessory.getSerial()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
minmax_element_comp.pass.cpp | 12 // template<ForwardIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> 13 // requires CopyConstructible<Compare> 15 // minmax_element(Iter first, Iter last, Compare comp); 27 typedef std::greater<int> Compare; 28 Compare comp; 73 typedef std::greater<int> Compare; 74 Compare comp;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate.byname/ |
compare.pass.cpp | 14 // int compare(const charT* low1, const charT* high1, 37 assert(f.compare(s2.data(), s2.data() + s2.size(), 44 assert(f.compare(s2.data(), s2.data() + s2.size(), 54 assert(f.compare(s2.data(), s2.data() + s2.size(), 61 assert(f.compare(s2.data(), s2.data() + s2.size(), 71 assert(f.compare(s2.data(), s2.data() + s2.size(), 78 assert(f.compare(s2.data(), s2.data() + s2.size(),
|
/frameworks/compile/mclinker/lib/Support/ |
CommandLine.cpp | 102 if (0 == Arg.compare("combreloc")) 104 else if (0 == Arg.compare("nocombreloc")) 106 else if (0 == Arg.compare("defs")) 108 else if (0 == Arg.compare("execstack")) 110 else if (0 == Arg.compare("noexecstack")) 112 else if (0 == Arg.compare("initfirst")) 114 else if (0 == Arg.compare("interpose")) 116 else if (0 == Arg.compare("loadfltr")) 118 else if (0 == Arg.compare("muldefs")) 120 else if (0 == Arg.compare("nocopyreloc") [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
randomBound32.decTest | 33 comx3001 compare 4953734675913.065314738743322579 0218.932010396534371704930714860E+797 -> -1 41 comx3002 compare 9641.684323386955881595490347910E-844 -78864532047.12287484430980636798E+934 -> 1 49 comx3003 compare -1.028048571628326871054964307774E+529 49200008645699.35577937582714739 -> -1 57 comx3004 compare 479084.8561808930525417735205519 084157571054.2691784660983989931 -> -1 65 comx3005 compare -0363750788.573782205664349562931 -3172.080934464133691909905980096 -> -1 73 comx3006 compare 1381026551423669919010191878449 -82.66614775445371254999357800739 -> 1 81 comx3007 compare 4627.026960423072127953556635585 -4410583132901.830017479741231131 -> 1 89 comx3008 compare 75353574493.84484153484918212042 -8684111695095849922263044191221 -> 1 97 comx3009 compare 6907058.216435355874729592373011 2.857005446917670515662398741545 -> 1 105 comx3010 compare -38949530427253.24030680468677190 712168021.1265384466442576619064E-992 -> - [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
randomBound32.decTest | 33 comx3001 compare 4953734675913.065314738743322579 0218.932010396534371704930714860E+797 -> -1 41 comx3002 compare 9641.684323386955881595490347910E-844 -78864532047.12287484430980636798E+934 -> 1 49 comx3003 compare -1.028048571628326871054964307774E+529 49200008645699.35577937582714739 -> -1 57 comx3004 compare 479084.8561808930525417735205519 084157571054.2691784660983989931 -> -1 65 comx3005 compare -0363750788.573782205664349562931 -3172.080934464133691909905980096 -> -1 73 comx3006 compare 1381026551423669919010191878449 -82.66614775445371254999357800739 -> 1 81 comx3007 compare 4627.026960423072127953556635585 -4410583132901.830017479741231131 -> 1 89 comx3008 compare 75353574493.84484153484918212042 -8684111695095849922263044191221 -> 1 97 comx3009 compare 6907058.216435355874729592373011 2.857005446917670515662398741545 -> 1 105 comx3010 compare -38949530427253.24030680468677190 712168021.1265384466442576619064E-992 -> - [all...] |
/external/qemu/distrib/sdl-1.2.15/src/stdlib/ |
SDL_qsort.c | 166 * compare equal to any pointer within the array, 167 * and (b) it will compare equal to a pointer 199 if ((size_t)(last-first)>PIVOT_THRESHOLD*sz) mid=pivot_big(first,mid,last,sz,compare);\ 201 if (compare(first,mid)<0) { \ 202 if (compare(mid,last)>0) { \ 204 if (compare(first,mid)>0) swapper(first,mid);\ 208 if (compare(mid,last)>0) swapper(first,last)\ 211 if (compare(mid,last)>0) swapper(mid,last);\ 225 while (compare(first,pivot)<0) first+=sz; \ 226 while (compare(pivot,last)<0) last-=sz; [all...] |
/external/chromium_org/third_party/WebKit/Source/testing/data/fonts/ |
fonts.conf | 120 <test name="family" compare="eq"> 132 <test name="family" compare="eq"> 144 <test name="family" compare="eq"> 161 <test name="family" compare="eq"> 176 <test name="family" compare="eq"> 191 <test name="family" compare="eq"> 206 <test name="family" compare="eq"> 218 <test name="family" compare="eq"> 234 <test name="family" compare="eq"> 244 <test name="family" compare="eq" [all...] |
/cts/tools/signature-tools/src/signature/ |
Main.java | 22 * {@link signature.converter.Main}. If invoked with <code>--compare</code> the 23 * call is delegated to {@link signature.compare.Main}. 26 * @see signature.compare.Main 33 + " sig --compare --from=(doclet | dex | sig) <sourcefiles>" 65 } else if (arg.equals("--compare")) { 66 signature.compare.Main.main(without(args, i));
|