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

1 2 3 4 5 6 7 8 91011>>

  /external/smali/util/src/main/java/org/jf/util/
LinearSearch.java 53 int comparison = comparator.compare(list.get(guess), key); local
54 if (comparison == 0) {
57 if (comparison < 0) {
60 comparison = comparator.compare(list.get(guess), key);
61 if (comparison == 0) {
64 if (comparison > 0) {
73 comparison = comparator.compare(list.get(guess), key);
74 if (comparison == 0) {
77 if (comparison < 0) {
  /external/proguard/src/proguard/util/
ArrayUtil.java 366 int comparison = ObjectUtil.compare(array1[index], array2[index]); local
367 if (comparison != 0)
369 return comparison;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
AppItem.java 67 int comparison = Integer.compare(category, another.category); local
68 if (comparison == 0) {
69 comparison = Long.compare(another.total, total);
71 return comparison;
  /external/libchrome/base/
version.cc 127 const int comparison = CompareVersionComponents(components_, parsed); local
133 if (comparison == -1 || comparison == 0)
134 return comparison;
  /external/skia/src/sksl/
SkSLString.cpp 170 int comparison = strncmp(fChars, other.fChars, std::min(fLength, other.fLength)); local
171 if (comparison) {
172 return comparison < 0;
  /external/skqp/src/sksl/
SkSLString.cpp 169 int comparison = strncmp(fChars, other.fChars, std::min(fLength, other.fLength)); local
170 if (comparison) {
171 return comparison < 0;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypeListPool.java 132 int comparison = type.toString().compareTo(other.next().toString()); local
133 if (comparison != 0) {
134 return comparison;
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
DownloadsFilePreference.java 63 // Note: The order is reversed in this comparison because we want the value to be less
65 int comparison = Long.compare(otherFile.length(), file.length()); local
66 if (comparison == 0) {
67 comparison = file.compareTo(otherFile);
69 return comparison;
  /external/deqp/modules/gles31/functional/
es31fShaderUniformIntegerFunctionTests.cpp 82 m_spec.outputs.push_back(Symbol("comparison", glu::VarType(glu::TYPE_BOOL, glu::PRECISION_LAST)));
101 "comparison = (" << getFunctionName() << "(value) == " << computeExpectedResult(m_input) << ");\n";
117 deBool comparison; local
121 outputPointers[1] = &comparison;
129 m_testCtx.getLog() << TestLog::Message << "ERROR: comparison failed for " << getFunctionName() << "(" << m_input << ") == " << expectedResult << TestLog::EndMessage;
132 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Result comparison failed");
134 } else if (!comparison) {
138 m_testCtx.getLog() << TestLog::Message << "comparison: " << comparison << TestLog::EndMessage;
139 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Result comparison failed")
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
expr.go 575 func (check *Checker) comparison(x, y *operand, op token.Token) { func
576 // spec: "In any comparison, the first operand must be assignable
622 // spec: "Comparison operators compare two operands and yield
794 check.comparison(x, &y, op)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
expr.go 575 func (check *Checker) comparison(x, y *operand, op token.Token) { func
576 // spec: "In any comparison, the first operand must be assignable
622 // spec: "Comparison operators compare two operands and yield
794 check.comparison(x, &y, op)
    [all...]
  /art/compiler/optimizing/
codegen_test.cc 635 HInstruction* comparison = nullptr; local
641 comparison = new (GetAllocator()) HEqual(op1, op2);
645 comparison = new (GetAllocator()) HNotEqual(op1, op2);
649 comparison = new (GetAllocator()) HLessThan(op1, op2);
653 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2);
657 comparison = new (GetAllocator()) HGreaterThan(op1, op2);
661 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2);
665 comparison = new (GetAllocator()) HBelow(op1, op2);
669 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2);
673 comparison = new (GetAllocator()) HAbove(op1, op2)
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
AllocationInfo.java 331 Element comparison; local
334 comparison = Element.YUV(mRS);
337 comparison = Element.RGBA_8888(mRS);
340 comparison = Element.U8_3(mRS);
343 comparison = Element.U8_4(mRS);
347 comparison = null;
350 return mElement.equals(comparison);
  /external/v8/src/interpreter/
interpreter-intrinsics.cc 284 Node* comparison = __ Int32LessThan(target_args_count, __ Int32Constant(0)); local
285 __ GotoIfNot(comparison, &arg_count_positive);
342 Node* comparison = __ Word32Equal(actual, __ Int32Constant(expected)); local
343 __ GotoIf(comparison, &match);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
ExprModel.java 160 public ComparisonExpr comparison(String op, Expr left, Expr right) { method in class:ExprModel
  /libcore/tools/upstream/src/main/java/libcore/
CompareUpstreams.java 44 * (eg. OpenJDK8u121-b13) to a new directory, for easy directory comparison
204 final String comparison; local
207 comparison = "missing";
212 comparison = "identical";
216 comparison = String
225 comparisons.add(comparison);
  /toolchain/binutils/binutils-2.27/libiberty/
splay-tree.c 364 int comparison = 0; local
369 comparison = (*sp->comp)(sp->root->key, key);
371 if (sp->root && comparison == 0)
392 else if (comparison < 0)
502 int comparison; local
512 comparison = (*sp->comp)(sp->root->key, key);
515 if (comparison < 0)
533 int comparison; local
543 comparison = (*sp->comp)(sp->root->key, key);
546 if (comparison > 0
    [all...]
  /cts/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java 168 final Pair<String, File> comparison = mCompletionService.take().get(); local
169 if (comparison != null) {
170 InputStreamSource inputStream = new FileInputStreamSource(comparison.second);
173 addTestLog(comparison.first, LogDataType.PNG, inputStream);
  /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/guava/guava/src/com/google/common/collect/
Collections2.java 437 int comparison = comparator.compare( local
439 if (comparison < 0) {
  /libcore/luni/src/main/native/
java_lang_StringToReal.cpp 268 int32_t k, comparison, comparison2; local
345 comparison = compareHighPrecision (x, xLength, y, yLength);
346 if (comparison > 0)
353 else if (comparison)
376 if (comparison < 0 && m == DOUBLE_NORMAL_MASK
398 if (comparison < 0 && m == DOUBLE_NORMAL_MASK)
407 else if (comparison < 0)
418 else if (comparison < 0)
696 int32_t k, comparison, comparison2; local
773 comparison = compareHighPrecision (x, xLength, y, yLength)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
graminit.h 55 #define comparison 308 macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
graminit.h 55 #define comparison 308 macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symbol.py 65 comparison = 308 variable

Completed in 994 milliseconds

1 2 3 4 5 6 7 8 91011>>