HomeSort by relevance Sort by last modified time
    Searched refs:comparison (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/webkit/Tools/Scripts/webkitpy/python24/
versioning.py 50 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:
versioning_unittest.py 59 (comparison, current_version, min_version) = compare_version()
70 """Call compare_version(), and return the comparison."""
  /external/skia/tools/
skdiff_image.cpp 101 "\n -L: first occurrence label for base, second occurrence label for comparison."
106 "\n comparisonFile: comparison image file"
137 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
138 failOnStatusType[base][comparison] = false;
170 SkDebugf("failonstatus missing comparison status.\n");
179 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
    [all...]
skdiff_main.cpp 50 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
51 fStatusOfType[base][comparison].deleteAll();
86 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
87 Status comparisonStatus = static_cast<Status>(comparison);
88 const FileArray& fileArray = fStatusOfType[base][comparison];
90 if (failOnStatusType[base][comparison]) {
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_CMPL_DOUBLE.S 7 * destination register based on the results of the comparison.
27 @ Test for NaN with a second comparison. EABI forbids testing bit
TEMPLATE_CMPL_FLOAT.S 7 * destination register based on the results of the comparison.
45 @ Test for NaN with a second comparison. EABI forbids testing bit
  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java 599 // This comparison uses non-final fields so the sort order may change
604 int comparison = (another.isConnected() ? 1 : 0) - (isConnected() ? 1 : 0); local
605 if (comparison != 0) return comparison;
608 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
610 if (comparison != 0) return comparison;
613 comparison = (another.mVisible ? 1 : 0) - (mVisible ? 1 : 0);
614 if (comparison != 0) return comparison;
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Method.java 57 int comparison = a.name.compareTo(b.name);
58 if (comparison != 0) {
59 return comparison;
66 comparison = aParameters[i].getName().compareTo(bParameters[i].getName());
67 if (comparison != 0) {
68 return comparison;
  /dalvik/vm/mterp/mips/
bincmp.S 5 * fragment that specifies the *reverse* comparison to perform, e.g.
15 b${revcmp} a2, a3, 1f # branch to 1 if comparison failed
zcmp.S 5 * fragment that specifies the *reverse* comparison to perform, e.g.
14 b${revcmp} a2, zero, 1f # branch to 1 if comparison failed
  /libcore/luni/src/main/native/
java_lang_StringToReal.cpp 338 int32_t k, comparison, comparison2; local
415 comparison = compareHighPrecision (x, xLength, y, yLength);
416 if (comparison > 0)
423 else if (comparison)
446 if (comparison < 0 && m == DOUBLE_NORMAL_MASK)
467 if (comparison < 0 && m == DOUBLE_NORMAL_MASK)
476 else if (comparison < 0)
487 else if (comparison < 0)
811 int32_t k, comparison, comparison2; local
889 comparison = compareHighPrecision (x, xLength, y, yLength)
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_profile.cc 403 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;
credit_card.cc 364 int comparison = GetInfo(types[index]).compare( local
366 if (comparison != 0)
367 return comparison;
  /external/v8/test/cctest/
log-eq-of-logging-and-traversal.js 137 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/webkit/Tools/Scripts/
test-webkitpy 219 (comparison, current_version, minimum_version) = \
222 if comparison > 0:
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Delaunay.cpp 367 int (CDelaunay::*comparison)(int,int),
384 if ( (this->*comparison)( si,sij ) > 0 ) {
387 if ( (this->*comparison)( sij,sj ) > 0 ) {
389 if ( (this->*comparison)( si,sij ) > 0 ) {
400 } while( (this->*comparison)( sL,temp ) > 0 );
403 } while( (this->*comparison)( temp,sk ) > 0 );
454 if ( (this->*comparison)( si,si+1 ) > 0 ) {
462 } while ( (this->*comparison)( sk,temp ) > 0 && sk>=lowelt );
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
Delaunay.cpp 367 int (CDelaunay::*comparison)(int,int),
384 if ( (this->*comparison)( si,sij ) > 0 ) {
387 if ( (this->*comparison)( sij,sj ) > 0 ) {
389 if ( (this->*comparison)( si,sij ) > 0 ) {
400 } while( (this->*comparison)( sL,temp ) > 0 );
403 } while( (this->*comparison)( temp,sk ) > 0 );
454 if ( (this->*comparison)( si,si+1 ) > 0 ) {
462 } while ( (this->*comparison)( sk,temp ) > 0 && sk>=lowelt );
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.cpp 367 int (CDelaunay::*comparison)(int,int),
384 if ( (this->*comparison)( si,sij ) > 0 ) {
387 if ( (this->*comparison)( sij,sj ) > 0 ) {
389 if ( (this->*comparison)( si,sij ) > 0 ) {
400 } while( (this->*comparison)( sL,temp ) > 0 );
403 } while( (this->*comparison)( temp,sk ) > 0 );
454 if ( (this->*comparison)( si,si+1 ) > 0 ) {
462 } while ( (this->*comparison)( sk,temp ) > 0 && sk>=lowelt );
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 464 = {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
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 311 int comparison = list1.getType(i).compareTo(list2.getType(i)); local
312 if (comparison != 0) {
313 return comparison;
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 311 int comparison = list1.getType(i).compareTo(list2.getType(i)); local
312 if (comparison != 0) {
313 return comparison;
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 311 int comparison = list1.getType(i).compareTo(list2.getType(i)); local
312 if (comparison != 0) {
313 return comparison;
  /external/v8/src/
strtod.cc 403 int comparison = Bignum::Compare(input, boundary);
404 if (comparison < 0) {
406 } else if (comparison > 0) {
  /external/eigen/bench/
BenchUtil.h 16 #include <boost/preprocessor/comparison.hpp>
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.h 48 D3DCMPFUNC ConvertComparison(GLenum comparison);

Completed in 1909 milliseconds

1 2 3 4