HomeSort by relevance Sort by last modified time
    Searched refs:comparison (Results 1 - 25 of 541) 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) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
armv1.l 2 [^:]*:26: Warning: s suffix on comparison instruction is deprecated
3 [^:]*:29: Warning: s suffix on comparison instruction is deprecated
4 [^:]*:32: Warning: s suffix on comparison instruction is deprecated
5 [^:]*:35: Warning: s suffix on comparison instruction is deprecated
thumb32.l 2 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
3 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
4 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
5 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
6 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
7 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
8 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
9 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
10 [^;]*:452: Warning: s suffix on comparison instruction is deprecated
11 [^;]*:452: Warning: s suffix on comparison instruction is deprecate
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
expected_comparison_errors.l 11 .*:10: Error: Bad register in comparison. Input text was P0.
12 .*:11: Error: Bad register in comparison.
13 .*:12: Error: Bad register in comparison.
14 .*:13: Error: Bad register in comparison. Input text was R0.
15 .*:14: Error: Bad register in comparison.
16 .*:15: Error: Bad register in comparison.
17 .*:16: Error: Bad register in comparison.
18 .*:17: Error: Bad register in comparison. Input text was I0.
19 .*:18: Error: Bad register in comparison.
20 .*:19: Error: Bad register in comparison
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
nilfunc.go 17 func Comparison() {
23 if F == nil { // ERROR "comparison of function F == nil is always false"
26 if t.M == nil { // ERROR "comparison of function M == nil is always false"
29 if F != nil { // ERROR "comparison of function F != nil is always true"
30 if t.M != nil { // ERROR "comparison of function M != nil is always true"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
nilfunc.go 17 func Comparison() {
23 if F == nil { // ERROR "comparison of function F == nil is always false"
26 if t.M == nil { // ERROR "comparison of function M == nil is always false"
29 if F != nil { // ERROR "comparison of function F != nil is always true"
30 if t.M != nil { // ERROR "comparison of function M != nil is always true"
  /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;
  /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/junit/src/main/java/org/junit/internal/
MethodSorter.java 29 final int comparison = m1.getName().compareTo(m2.getName());
30 if (comparison != 0) {
31 return comparison;
  /external/clang/test/SemaCXX/
warn-memsize-comparison.cpp 20 expected-warning{{size argument in 'memset' call is a comparison}} \
26 expected-warning{{size argument in 'memmove' call is a comparison}} \
32 expected-warning{{size argument in 'memcpy' call is a comparison}} \
38 expected-warning{{size argument in 'memcmp' call is a comparison}} \
44 expected-warning{{size argument in 'strncmp' call is a comparison}} \
50 expected-warning{{size argument in 'strncasecmp' call is a comparison}} \
56 expected-warning{{size argument in 'strncpy' call is a comparison}} \
62 expected-warning{{size argument in 'strncat' call is a comparison}} \
68 expected-warning{{size argument in 'strndup' call is a comparison}} \
74 expected-warning{{size argument in 'strlcpy' call is a comparison}} \
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
Method.java 66 int comparison = a.getName().compareTo(b.getName());
67 if (comparison == 0) {
68 comparison = a.compareMethodParametersInternal(b);
69 if (comparison == 0) {
74 comparison = 0;
76 comparison = aReturnType.getName().compareTo(bReturnType.getName());
80 return comparison;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /external/skia/tools/skdiff/
skdiff_image.cpp 100 "\n -L: first occurrence label for base, second occurrence label for comparison."
105 "\n comparisonFile: comparison image file"
135 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
136 failOnStatusType[base][comparison] = false;
168 SkDebugf("failonstatus missing comparison status.\n");
177 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ComparableConstant.java 32 * entry after it has been sorted. The comparison is primarily based on the
257 int comparison;
259 (comparison = string1a.compareTo(string2a)) != 0 ? comparison :
270 int comparison;
272 (comparison = string1a.compareTo(string2a)) != 0 ? comparison :
273 (comparison = string1b.compareTo(string2b)) != 0 ? comparison :
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug490.go 7 // The gccgo compiler used to crash building a comparison between an
issue4785.go 18 panic("bad comparison")
issue7366.go 8 // during comparison of small structs.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug490.go 7 // The gccgo compiler used to crash building a comparison between an
issue4785.go 18 panic("bad comparison")
issue7366.go 8 // during comparison of small structs.
  /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);

Completed in 908 milliseconds

1 2 3 4 5 6 7 8 91011>>