Searched refs:comparison (Results 1 - 25 of 45) sorted by relevance

12

/external/webkit/Tools/Scripts/webkitpy/python24/
H A Dversioning.py50 A triple of (comparison, current_version, target_version).
52 comparison: An integer representing the result of comparing the
85 comparison = 1
87 comparison = 0
89 comparison = -1
95 return (comparison, current_version, target_version)
120 (comparison, current_version, target_version) = \
123 if comparison >= 0:
H A Dversioning_unittest.py59 (comparison, current_version, min_version) = compare_version()
70 """Call compare_version(), and return the comparison."""
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dsorted_array_utils.js33 var i, comparison;
37 comparison = mapFn(ary[i]) - loVal;
38 if (comparison < 0) {
40 } else if (comparison > 0) {
/external/chromium-trace/trace-viewer/src/
H A Dsorted_array_utils.js33 var i, comparison;
37 comparison = mapFn(ary[i]) - loVal;
38 if (comparison < 0) {
40 } else if (comparison > 0) {
/external/v8/test/cctest/
H A Dlog-eq-of-logging-and-traversal.js137 var comparison = []; variable
139 // Do a merge-like comparison of entries. At the same address we expect to
164 comparison.push([entities_equal, address, entityA, entityB]);
166 return [equal, comparison];
173 var comparison = result[1];
174 for (var i = 0, l = comparison.length; i < l; ++i) {
175 var c = comparison[i];
/external/chromium/chrome/browser/autofill/
H A Dautofill_profile.cc403 int comparison = GetInfo(types[index]).compare( local
405 if (comparison != 0)
406 return comparison;
422 int comparison = GetInfo(single_value_types[i]).compare( local
424 if (comparison != 0)
425 return comparison;
445 int comparison = values_a[j].compare(values_b[j]); local
446 if (comparison != 0)
447 return comparison;
H A Dcredit_card.cc364 int comparison = GetInfo(types[index]).compare( local
366 if (comparison != 0)
367 return comparison;
/external/webkit/Tools/Scripts/
H A Dtest-webkitpy219 (comparison, current_version, minimum_version) = \
222 if comparison > 0:
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc464 = {eq} [left]:equality eq [right]:comparison // x.y == a.b
466 | {ne} [left]:equality ne [right]:comparison // x.y != a.b
468 | {comparison} [value]:comparison // x.y
472 comparison {->expression}
473 = {lt} [left]:comparison lt [right]:add_subtract // x.y < a.b
475 | {gt} [left]:comparison gt [right]:add_subtract // x.y > a.b
477 | {lte} [left]:comparison lte [right]:add_subtract // x.y <= a.b
479 | {gte} [left]:comparison gte [right]:add_subtract // x.y >= a.b
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java311 int comparison = list1.getType(i).compareTo(list2.getType(i));
312 if (comparison != 0) {
313 return comparison;
/external/icu4c/test/perf/collationperf/
H A DCollPerf.pl194 that subsequent operations can use binary comparison.</td>
202 comparison, and the overhead of memory usage and retrieval time for sort
216 <li>For more information on incremental vs. sort key comparison, the importance
/external/libvpx/examples/includes/geshi/geshi/
H A Dmysql.php291 '=', '<=>', '>=', '>', '<=', '<', '<>', '!=', // comparison operators
354 19 => 'color: #000099;', // comparison functions
355 20 => 'color: #000099;', // comparison functions
414 19 => 'http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html',
415 20 => 'http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html',
H A Dperl.php31 * * string comparison operators
/external/v8/src/
H A Dstrtod.cc403 int comparison = Bignum::Compare(input, boundary);
404 if (comparison < 0) {
406 } else if (comparison > 0) {
/external/eigen/bench/
H A DBenchUtil.h16 #include <boost/preprocessor/comparison.hpp>
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A Dutilities.h48 D3DCMPFUNC ConvertComparison(GLenum comparison);
H A Dutilities.cpp407 D3DCMPFUNC ConvertComparison(GLenum comparison) argument
410 switch (comparison)
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g268 | comparison
271 comparison: expr (comp_op expr)*
/external/jmdns/src/javax/jmdns/impl/
H A DDNSRecord.java333 int comparison = this.compareTo(localAddress);
335 if (comparison == 0) {
346 if (dns.isProbing() && comparison > 0) {
739 int comparison = this.compareTo(localService);
741 if (comparison == 0) {
751 if (info.isProbing() && comparison > 0) {
/external/icu4c/test/intltest/
H A Dregcoll.cpp368 // Secondary/Tertiary comparison incorrect in French Secondary
597 // string comparison errors in Scandinavian collators
1212 errln((UnicodeString)"Inconsistent comparison(" + opt
1231 UnicodeString comparison(tests[i + 1]);
1234 if (comparison == "<")
1238 else if (comparison == ">")
1242 else if (comparison == "=")
1248 UnicodeString bogus1("Bogus comparison string \"");
1250 errln(bogus1 + comparison + bogus2);
/external/llvm/utils/vim/
H A Dllvm.vim23 " The true and false tokens can be used for comparison opcodes, but it's
/external/webkit/Source/WebCore/inspector/front-end/
H A DResourcesPanel.js620 var comparison;
622 // Sort numbers based on comparing their values rather than a lexicographical comparison.
625 comparison = number1 < number2 ? -1 : (number1 > number2 ? 1 : 0);
627 comparison = item1 < item2 ? -1 : (item1 > item2 ? 1 : 0);
629 return sortDirection * comparison;
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java69 * There are three different comparison operations each with different
74 * can compare longs. The result of the comparison is written to another
79 * point values. This comparison takes an extra parameter that sets
81 * the comparison is wrtten to another {@code int} local.
85 * {@code int} primitives. This comparison takes a {@link Label} that
86 * will be jumped to if the comparison is true. If the comparison is
101 * comparison using {@link #compare compare()}.
526 * Compare ints or references. If the comparison is true, execution jumps to
530 public <T> void compare(Comparison comparison, Labe argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
H A Dantsupportlib.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/ant/ org/eclipse/ant/internal/ ...
/external/libvpx/vp8/encoder/arm/armv5te/
H A Dvp8_packtokens_mbrow_armv5.asm57 str r9, [sp, #0] ; save stop for later comparison

Completed in 810 milliseconds

12