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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/util/
get-ver 3 ver=$(git describe --always --dirty); echo "e2fsprogs $ver ($(git log -1 --pretty=%cD))"
  /art/tools/dexfuzz/src/dexfuzz/
Options.java 88 Log.always("DexFuzz Usage:");
89 Log.always(" --input=<file> : Seed DEX file to be fuzzed");
90 Log.always(" (Can specify multiple times.)");
91 Log.always(" --inputs=<file> : Directory containing DEX files to be fuzzed.");
92 Log.always(" --output=<file> : Output DEX file to be produced");
93 Log.always("");
94 Log.always(" --execute : Execute the resulting fuzzed program");
95 Log.always(" --host : Execute on host");
96 Log.always(" --device=<device> : Execute on an ADB-connected-device, where <device> is");
97 Log.always(" the argument given to adb -s. Default execution mode.")
    [all...]
  /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/Parser/
nullability.c 11 # error Nullability should always be supported
15 # error Nullability should always be supported as an extension
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumb2_it_bad_auto.d 2 #as: -mimplicit-it=always
arm-it-bad-3.d 2 #as: -mimplicit-it=always
armv8-a-it-bad.d 3 #as: -mimplicit-it=always
  /external/jsoncpp/scons-tools/
globtool.py 51 Tool always exists.
  /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/clang/test/OpenMP/
target_enter_data_map_messages.c 12 #pragma omp target enter data map(always, to: r)
13 #pragma omp target enter data map(always, alloc: r)
14 #pragma omp target enter data map(always, from: r) // expected-error {{map type 'from' is not allowed for '#pragma omp target enter data'}}
target_exit_data_map_messages.c 12 #pragma omp target exit data map(always, from: r)
15 #pragma omp target exit data map(always, alloc: r) // expected-error {{map type 'alloc' is not allowed for '#pragma omp target exit data'}}
target_data_ast_print.cpp 36 #pragma omp target data map(always,alloc: e)
42 #pragma omp target map(always, alloc: e)
65 // CHECK-NEXT: #pragma omp target data map(always,alloc: e)
69 // CHECK-NEXT: #pragma omp target map(always,alloc: e)
87 // CHECK-NEXT: #pragma omp target data map(always,alloc: e)
91 // CHECK-NEXT: #pragma omp target map(always,alloc: e)
109 // CHECK-NEXT: #pragma omp target data map(always,alloc: e)
113 // CHECK-NEXT: #pragma omp target map(always,alloc: e)
155 #pragma omp target data map(always,alloc: e)
156 // CHECK-NEXT: #pragma omp target data map(always,alloc: e
    [all...]
target_data_codegen.cpp 118 #pragma omp target data map(always, to: lb)
169 #pragma omp target data map(always, to: b[1:3]) if(a>123) device(arg)
target_enter_data_codegen.cpp 104 #pragma omp target enter data map(always, to: lb)
152 #pragma omp target enter data map(always, to: b[1:3]) if(a>123) device(arg)
target_exit_data_codegen.cpp 104 #pragma omp target exit data map(always, from: lb)
152 #pragma omp target exit data map(always, release: b[1:3]) if(a>123) device(arg)
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
nilfunc.go 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 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/support/compat/java/android/support/v4/util/
TimeUtils.java 44 static private int accumField(int amt, int suffix, boolean always, int zeropad) {
45 if (amt > 99 || (always && zeropad >= 3)) {
48 if (amt > 9 || (always && zeropad >= 2)) {
51 if (always || amt > 0) {
58 boolean always, int zeropad) {
59 if (always || amt > 0) {
61 if ((always && zeropad >= 3) || amt > 99) {
67 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
warn3.d 7 #warning: warning: isatty is not implemented and will always fail$
warn4.d 7 #warning: warning: isatty is not implemented and will always fail$
  /external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/
tpmtoken_import_openssl.cnf 189 authorityKeyIdentifier=keyid,issuer:always
225 authorityKeyIdentifier=keyid:always,issuer:always
258 authorityKeyIdentifier=keyid:always,issuer:always
  /external/llvm/test/MC/ARM/
thumb-st_other.s 4 @ for st_other should always be 0.
  /frameworks/base/packages/MtpDocumentsProvider/
Android.mk 13 LOCAL_JACK_FLAGS += -D jack.assert.policy=always
  /frameworks/base/services/core/java/com/android/server/pm/
PreferredActivity.java 39 boolean always) {
41 mPref = new PreferredComponent(this, match, set, activity, always);

Completed in 319 milliseconds

1 2 3 4 5 6 7 8 91011>>