HomeSort by relevance Sort by last modified time
    Searched refs:use (Results 126 - 150 of 7784) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/bug248.dir/
bug3.go 2 // Use of this source code is governed by a BSD-style
59 i0 = i1 // ERROR "cannot use|incompatible"
60 i1 = i0 // ERROR "cannot use|incompatible"
61 p0i = i1 // ERROR "cannot use|incompatible"
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
64 i1 = p0i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug386.go 4 // Use of this source code is governed by a BSD-style
10 func f() error { return 0 } // ERROR "cannot use 0 .type int.|has no methods"
12 func g() error { return -1 } // ERROR "cannot use -1 .type int.|has no methods"
issue6402.go 4 // Use of this source code is governed by a BSD-style
7 // Issue 6402: spurious 'use of untyped nil' error
12 return nil // ERROR "cannot use nil as type uintptr in return argument"
issue9370.go 4 // Use of this source code is governed by a BSD-style
105 _ = _ == e // ERROR "cannot use _ as value"
106 _ = _ == i // ERROR "cannot use _ as value"
107 _ = _ == c // ERROR "cannot use _ as value"
108 _ = _ == n // ERROR "cannot use _ as value"
109 _ = _ == f // ERROR "cannot use _ as value"
110 _ = _ == g // ERROR "cannot use _ as value"
112 _ = e == _ // ERROR "cannot use _ as value"
113 _ = i == _ // ERROR "cannot use _ as value"
114 _ = c == _ // ERROR "cannot use _ as value
    [all...]
issue13365.go 4 // Use of this source code is governed by a BSD-style
22 _ = []int{t} // ERROR "cannot use .* as type int in array or slice literal"
23 _ = [10]int{t} // ERROR "cannot use .* as type int in array or slice literal"
24 _ = [...]int{t} // ERROR "cannot use .* as type int in array or slice literal"
  /prebuilts/go/linux-x86/test/safe/
main.go 4 // Use of this source code is governed by a BSD-style
9 // can't use local path with -u, use -I. instead
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/alpha/
elf-tls-2.l 8 .*:29: Error: sequence number in use for !tlsgd!7
9 .*:32: Error: sequence number in use for !tlsldm!8
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
ldr-bad.l 6 [^:]*:16: Error: cannot use register index with PC-relative addressing -- `ldr r2,\[r15,r2\]!'
7 [^:]*:19: Error: cannot use register index with PC-relative addressing -- `ldr r1,\[r1,r15\]'
9 [^:]*:23: Error: cannot use register index with PC-relative addressing -- `str r1,\[r15,#10\]!'
11 [^:]*:27: Error: cannot use register index with PC-relative addressing -- `str r1,\[r15,r2\]!'
thumb2_mul.s 8 # These can use the 16-bit encoding.
12 # These must use the 32-bit encoding because they involve
18 # These must use the 32-bit encoding because the source and
23 # These must use the 32-bit encoding because of the explicit
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
call.s 7 # use external symbol
call_noat.s 8 # use external symbol
warn_nobreak.l 3 If you don't need to debug this code use .set nobreak to turn off this warning.
5 If you don't need to debug this code use .set nobreak to turn off this warning.
7 If you don't need to debug this code use .set nobreak to turn off this warning.
9 If you don't need to debug this code use .set nobreak to turn off this warning.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
pt-1.s 1 ! Check simple use of PT/PTA.
  /external/valgrind/memcheck/tests/
err_disable4.stderr.exp 5 WARNING: possibly as a result of some mistake in the use
8 WARNING: possibly as a result of some mistake in the use
11 WARNING: possibly as a result of some mistake in the use
14 WARNING: possibly as a result of some mistake in the use
17 WARNING: possibly as a result of some mistake in the use
20 WARNING: possibly as a result of some mistake in the use
23 WARNING: possibly as a result of some mistake in the use
26 WARNING: possibly as a result of some mistake in the use
29 WARNING: possibly as a result of some mistake in the use
32 WARNING: possibly as a result of some mistake in the use
    [all...]
  /external/v8/src/compiler/
control-equivalence.cc 2 // Use of this source code is governed by a BSD-style license that can be
123 if (entry.use != node->use_edges().end()) {
132 if (entry.use != node->use_edges().end()) {
133 Edge edge = *entry.use;
134 Node* use = edge.from(); local
135 ++(entry.use);
137 // Visit next control use.
138 if (!GetData(use)->participates) continue;
139 if (GetData(use)->visited) continue;
140 if (GetData(use)->on_stack)
198 Node::UseEdges::iterator use = node->use_edges().begin(); local
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9370.go 4 // Use of this source code is governed by a BSD-style
105 _ = _ == e // ERROR "cannot use _ as value"
106 _ = _ == i // ERROR "cannot use _ as value"
107 _ = _ == c // ERROR "cannot use _ as value"
108 _ = _ == n // ERROR "cannot use _ as value"
109 _ = _ == f // ERROR "cannot use _ as value"
110 _ = _ == g // ERROR "cannot use _ as value"
112 _ = e == _ // ERROR "cannot use _ as value"
113 _ = i == _ // ERROR "cannot use _ as value"
114 _ = c == _ // ERROR "cannot use _ as value
    [all...]
issue13365.go 4 // Use of this source code is governed by a BSD-style
22 _ = []int{t} // ERROR "cannot use .* as type int in array or slice literal"
23 _ = [10]int{t} // ERROR "cannot use .* as type int in array or slice literal"
24 _ = [...]int{t} // ERROR "cannot use .* as type int in array or slice literal"
  /prebuilts/go/darwin-x86/test/
blank1.go 4 // Use of this source code is governed by a BSD-style
25 _() // ERROR "cannot use _ as value"
26 x := _+1 // ERROR "cannot use _ as value"
28 _ = t._ // ERROR "cannot refer to blank field|invalid use of"
  /prebuilts/go/linux-x86/test/
blank1.go 4 // Use of this source code is governed by a BSD-style
25 _() // ERROR "cannot use _ as value"
26 x := _+1 // ERROR "cannot use _ as value"
28 _ = t._ // ERROR "cannot refer to blank field|invalid use of"
  /external/clang/test/CodeGenCXX/
blocks-cxx11.cpp 94 void use() const;
99 takeBlock(^{ a.use(); });
const-init-cxx1y.cpp 46 const int &use = i<void>; member in namespace:VariableTemplateWithConstRef
54 const int &use = i<void>; member in namespace:HiddenVariableTemplateWithConstRef
lambda-expressions-inside-auto-functions.cpp 23 auto use = foo2<int>();
75 auto use = foo()(3)('a');
wasm-args-returns.cpp 11 void use(T x); \
13 void concat(test_, T)(void) { use(concat(def_, T)()); }
  /external/compiler-rt/make/
options.mk 6 # The compiler to use.
9 # The compiler flags to use.
18 # Whether function definitions should use hidden visibility. This adds the
26 # Whether the library is being built for kernel use.
  /external/curl/docs/cmdline-opts/
disable-eprt.d 5 Tell curl to disable the use of the EPRT and LPRT commands when doing active
6 FTP transfers. Curl will normally always first attempt to use EPRT, then LPRT
7 before using PORT, but with this option, it will use PORT right away. EPRT and
19 passive mode you need to not use --ftp-port or force it with --ftp-pasv.

Completed in 831 milliseconds

1 2 3 4 56 7 8 91011>>