HomeSort by relevance Sort by last modified time
    Searched full:always (Results 1 - 25 of 22425) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/530-checker-regression-reftyp-final/
info.txt 1 Regression test for optimizing that used assume that array types are always exact.
  /external/e2fsprogs/tests/f_emptydir/
name 0 always iterate dir block 0 or e2fsck goes into infinite loop
  /external/autotest/frontend/afe/
model_attributes.py 6 RebootBefore = enum.Enum('Never', 'If dirty', 'Always')
7 RebootAfter = enum.Enum('Never', 'If all tests passed', 'Always')
  /external/swiftshader/third_party/LLVM/test/Transforms/Inline/
2008-11-04-AlwaysInline.ll 1 ; RUN: opt < %s -always-inline -S | grep {@foo}
2 ; Ensure that foo is not removed by always inliner
2008-10-30-AlwaysInline.ll 1 ; RUN: opt < %s -always-inline -S | not grep call
3 ; Ensure that threshold doesn't disrupt always inline.
4 ; RUN: opt < %s -inline-threshold=-2000000001 -always-inline -S | not grep call
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips-warn.l 8 .*:2622: Warning: branch bge is always true
9 .*:2625: Warning: branch bgeu is always true
10 .*:2634: Warning: branch bgeu is always true
11 .*:2709: Warning: branch ble is always true
12 .*:2724: Warning: branch bleu is always true
13 .*:2730: Warning: branch bleu is always true
14 .*:2733: Warning: branch bleu is always true
15 .*:2832: Warning: branch bgel is always true
16 .*:2835: Warning: branch bgeul is always true
17 .*:2844: Warning: branch bgeul is always tru
    [all...]
  /external/clang/test/Sema/
warn-tautological-compare.c 15 if (!b) {} // expected-warning {{address of array 'b' will always evaluate to 'true'}}
16 if (b == 0) {} // expected-warning {{comparison of array 'b' equal to a null pointer is always false}}
17 if (!c.x) {} // expected-warning {{address of array 'c.x' will always evaluate to 'true'}}
18 if (c.x == 0) {} // expected-warning {{comparison of array 'c.x' equal to a null pointer is always false}}
19 if (!str) {} // expected-warning {{address of array 'str' will always evaluate to 'true'}}
20 if (0 == str) {} // expected-warning {{comparison of array 'str' equal to a null pointer is always false}}
26 if (!array) { // expected-warning {{address of array 'array' will always evaluate to 'true'}}
28 } else if (array != 0) { // expected-warning {{comparison of array 'array' not equal to a null pointer is always true}}
31 if (array == 0) // expected-warning {{comparison of array 'array' equal to a null pointer is always false}}
39 if (!&pointer) { // expected-warning {{address of 'pointer' will always evaluate to 'true'}
    [all...]
self-comparison.c 4 return x == x; // expected-warning {{self-comparison always evaluates to true}}
8 return (x) != (((x))); // expected-warning {{self-comparison always evaluates to false}}
12 if (s == s) {} // expected-warning {{self-comparison always evaluates to true}}
17 if (v == v) {} // expected-warning {{self-comparison always evaluates to true}}
55 return array1 == array1; // expected-warning{{self-comparison always evaluates to true}}
56 return array1 != array1; // expected-warning{{self-comparison always evaluates to false}}
57 return array1 < array1; // expected-warning{{self-comparison always evaluates to false}}
58 return array1 <= array1; // expected-warning{{self-comparison always evaluates to true}}
59 return array1 > array1; // expected-warning{{self-comparison always evaluates to false}}
60 return array1 >= array1; // expected-warning{{self-comparison always evaluates to true}
    [all...]
warn-bitwise-compare.c 6 if ((8 & x) == 3) {} // expected-warning {{bitwise comparison always evaluates to false}}
7 if ((x & 8) == 4) {} // expected-warning {{bitwise comparison always evaluates to false}}
8 if ((x & 8) != 4) {} // expected-warning {{bitwise comparison always evaluates to true}}
9 if ((2 & x) != 4) {} // expected-warning {{bitwise comparison always evaluates to true}}
10 if ((x | 4) == 3) {} // expected-warning {{bitwise comparison always evaluates to false}}
11 if ((x | 3) != 4) {} // expected-warning {{bitwise comparison always evaluates to true}}
12 if ((5 | x) != 3) {} // expected-warning {{bitwise comparison always evaluates to true}}
13 if ((x & 0x15) == 0x13) {} // expected-warning {{bitwise comparison always evaluates to false}}
14 if ((0x23 | x) == 0x155){} // expected-warning {{bitwise comparison always evaluates to false}}
outof-range-constant-compare.c 9 if (a == 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
11 if (a != 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
13 if (a < 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
15 if (a <= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
17 if (a > 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
19 if (a >= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
22 if (0x1234567812345678L == a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
24 if (0x1234567812345678L != a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
26 if (0x1234567812345678L < a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
28 if (0x1234567812345678L <= a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}
    [all...]
warn-overlap.c 21 if (x != 2 || x != 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
22 if (x > 2 || x < 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
26 if (x > 2 || x <= 2) { } // expected-warning {{overlapping comparisons always evaluate to true}}
27 if (x > 2 || x <= 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
30 if (x >= 2 || x < 2) { } // expected-warning {{overlapping comparisons always evaluate to true}}
31 if (x >= 2 || x < 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
33 if (x >= 2 || x <= 1) { } // expected-warning {{overlapping comparisons always evaluate to true}}
34 if (x >= 2 || x <= 2) { } // expected-warning {{overlapping comparisons always evaluate to true}}
35 if (x >= 2 || x <= 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
36 if (x >= 0 || x <= 0) { } // expected-warning {{overlapping comparisons always evaluate to true}
    [all...]
  /external/clang/test/SemaCXX/
warn-address.cpp 10 if (foo) {} // expected-warning{{always evaluate to 'true'}} \
12 if (arr) {} // expected-warning{{always evaluate to 'true'}}
13 if (&global) {} // expected-warning{{always evaluate to 'true'}}
14 if (foo == 0) {} // expected-warning{{always false}} \
16 if (arr == 0) {} // expected-warning{{always false}}
17 if (&global == 0) {} // expected-warning{{always false}}
  /external/autotest/server/site_tests/dummy_FailServer/
dummy_FailServer.py 9 """A test that always fails."""
13 """Run the test that always fails, once"""
14 raise error.TestFail('Test always fails intentionally.'
  /external/e2fsprogs/util/
get-ver 3 ver=$(git describe --always --dirty); echo "e2fsprogs $ver ($(git log -1 --pretty=%cD))"
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/getpid/
assertions.xml 3 getpid() always returns the process ID of the calling thread/process.
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_unlock/
coverage.txt 6 3 YES "May" assertion, always pass
  /external/minijail/
.clang-format 3 UseTab: Always
  /external/valgrind/none/tests/amd64/
faultstatus.disabled 2 # doesn't work well enough, so the test always fails.
  /external/wpa_supplicant_8/wpa_supplicant/hidl/
.clang-format 3 UseTab: Always
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
armv8-a-it-bad.d 3 #as: -mimplicit-it=always
thumb2_it_bad_auto.d 2 #as: -mimplicit-it=always
  /prebuilts/go/darwin-x86/test/chan/
select3.go 14 const always = "function did not" const
23 // Calls f and verifies that f always/never panics depending on signal.
28 s = always // f panicked
38 // Calls f and empirically verifies that f always/never blocks depending on signal.
47 c <- always // f blocked always
62 testBlock(always, func() {
65 testBlock(always, func() {
105 testPanic(always, func() {
109 // receiving from a non-ready channel always block
    [all...]
  /prebuilts/go/linux-x86/test/chan/
select3.go 14 const always = "function did not" const
23 // Calls f and verifies that f always/never panics depending on signal.
28 s = always // f panicked
38 // Calls f and empirically verifies that f always/never blocks depending on signal.
47 c <- always // f blocked always
62 testBlock(always, func() {
65 testBlock(always, func() {
105 testPanic(always, func() {
109 // receiving from a non-ready channel always block
    [all...]
  /external/llvm/test/Transforms/Inline/
null-function.ll 1 ; RUN: opt -print-before=always-inline -always-inline < %s -o /dev/null 2>&1 | FileCheck %s
  /external/skia/platform_tools/android/apps/viewer/src/main/res/menu/
title.xml 6 android:showAsAction="always"/>
10 android:showAsAction="always"/>

Completed in 1061 milliseconds

1 2 3 4 5 6 7 8 91011>>