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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
attr-used.cpp 3 extern char test1[] __attribute__((used)); // expected-warning {{'used' attribute ignored}}
4 extern const char test2[] __attribute__((used)); // expected-warning {{'used' attribute ignored}}
5 extern const char test3[] __attribute__((used)) = "";
  /external/clang/test/CodeGenCXX/
pr21989.cpp 5 void __attribute__((used)) f() {}
attr-used.cpp 3 // <rdar://problem/8684363>: clang++ not respecting __attribute__((used)) on destructors
6 __attribute__((used)) X0() {}
8 __attribute__((used)) ~X0() {}
11 // PR19743: not emitting __attribute__((used)) inline methods in nested classes.
15 void __attribute__((used)) f() {}
22 void __attribute__((used)) bar() { foo(); }
extern-c.cpp 62 __attribute__((used)) static int internal_var;
63 __attribute__((used)) static int internal_fn() { return 0; }
65 __attribute__((used)) static int duplicate_internal_var;
66 __attribute__((used)) static int duplicate_internal_fn() { return 0; }
69 __attribute__((used)) static int duplicate_internal_var;
70 __attribute__((used)) static int duplicate_internal_fn() { return 0; }
73 // CHECK: @llvm.used = appending global {{.*}} @internal_var {{.*}} @internal_fn
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
pr19547.c 1 static char foo[]__attribute__ ((used)) = "foo";
  /toolchain/binutils/binutils-2.27/gold/testsuite/
start_lib_test_3.c 25 static char t3[] __attribute__ ((used)) = "t3";
  /external/clang/test/CodeGen/
2005-12-04-AttributeUsed.c 3 // CHECK: @llvm.used = appending global [2 x i8*] [i8* bitcast (void ()* @foo to i8*), i8* bitcast (i32* @X to i8*)], section "llvm.metadata"
4 int X __attribute__((used));
7 __attribute__((used)) void foo() {}
attr-used.c 2 // RUN: grep '@llvm.used = .*@a0' %t
3 // RUN: grep '@llvm.used = .*@g0' %t
4 // RUN: grep '@llvm.used = .*@f0' %t
5 // RUN: grep '@llvm.used = .*@f1.l0' %t
8 int g0 __attribute__((used));
10 static void __attribute__((used)) f0(void) {
14 static int l0 __attribute__((used)) = 5225;
17 __attribute__((used)) int a0;
  /external/clang/test/Index/
retain-target-options.c 5 // CHECK: error: SSE4_1 used
7 #error SSE4_1 used
  /external/clang/test/Sema/
attr-used.c 3 extern int l0 __attribute__((used)); // expected-warning {{'used' attribute ignored}}
4 __private_extern__ int l1 __attribute__((used)); // expected-warning {{'used' attribute ignored}}
6 struct __attribute__((used)) s { // expected-warning {{'used' attribute only applies to variables and functions}}
10 int a __attribute__((used));
12 static void __attribute__((used)) f0(void) {
16 static int a __attribute__((used));
17 int b __attribute__((used)); // expected-warning {{'used' attribute ignored}
    [all...]
  /frameworks/base/core/java/android/provider/
OneTimeUseBuilder.java 30 private boolean used = false; field in class:OneTimeUseBuilder
34 used = true;
38 if (used) {
47 * Once this method is called, this builder should no longer be used. Any subsequent calls to a
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr16746a.c 2 __attribute__ ((used, section (".gnu.warning.foobar\n\t#")))
pr16746b.c 2 __attribute__ ((used, section (".gnu.warning.foobar\n\t#")))
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
at-2.l 2 .*\.s:4: Error: macro used \$at after ".set noat"
3 .*\.s:5: Error: macro used \$at after ".set noat"
4 .*\.s:6: Error: macro used \$at after ".set noat"
5 .*\.s:8: Warning: used \$at without ".set noat"
6 .*\.s:13: Warning: used \$26 with ".set at=\$26"
7 .*\.s:18: Warning: used \$27 with ".set at=\$27"
xlr-ext.s 1 # Source file used to test XLR's assembler instructions
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
reloc-bad-5.l 2 [^:]*:8: Error: addend used with \$DSBT_INDEX
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
beginwarn.c 2 __attribute__ ((used, section (".gnu.warning.foo")))
8 __attribute__ ((used, section (".init_array"), aligned (sizeof (void *))))
begin.c 4 __attribute__ ((used, section (".init_array"), aligned (sizeof (void *))))
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5957.dir/
c.go 4 "./a" // ERROR "imported and not used: \x22a\x22 as surprise|imported and not used: surprise"
5 "./b" // ERROR "imported and not used: \x22b\x22 as surprise2|imported and not used: surprise2"
6 b "./b" // ERROR "imported and not used: \x22b\x22$|imported and not used: surprise2"
7 foo "math" // ERROR "imported and not used: \x22math\x22 as foo|imported and not used: math"
8 "fmt" // actually used
9 "strings" // ERROR "imported and not used: \x22strings\x22|imported and not used: strings
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/issue5957.dir/
c.go 4 "./a" // ERROR "imported and not used: \x22a\x22 as surprise|imported and not used: surprise"
5 "./b" // ERROR "imported and not used: \x22b\x22 as surprise2|imported and not used: surprise2"
6 b "./b" // ERROR "imported and not used: \x22b\x22$|imported and not used: surprise2"
7 foo "math" // ERROR "imported and not used: \x22math\x22 as foo|imported and not used: math"
8 "fmt" // actually used
9 "strings" // ERROR "imported and not used: \x22strings\x22|imported and not used: strings
    [all...]
  /external/compiler-rt/lib/asan/
asan_preinit.cc 23 __attribute__((section(".preinit_array"), used))
  /external/compiler-rt/lib/lsan/
lsan_preinit.cc 20 __attribute__((section(".preinit_array"), used))
  /external/compiler-rt/lib/tsan/rtl/
tsan_preinit.cc 24 __attribute__((section(".preinit_array"), used))
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/pe/
seh-x64-err-1.l 2 .*:5: Error: .seh_endproc used without .seh_proc
3 .*:6: Error: .seh_stackalloc used outside of .seh_proc block
4 .*:7: Error: .seh_setframe used outside of .seh_proc block
5 .*:8: Error: .seh_endprologue used outside of .seh_proc block
6 .*:9: Error: .seh_pushreg used outside of .seh_proc block
7 .*:10: Error: .seh_savereg used outside of .seh_proc block
8 .*:11: Error: .seh_savexmm used outside of .seh_proc block
9 .*:12: Error: .seh_handler used outside of .seh_proc block
10 .*:13: Error: .seh_handler used outside of .seh_proc block
11 .*:14: Error: .seh_handler used outside of .seh_proc bloc
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4463.go 20 append(a, 0) // ERROR "not used"
21 cap(a) // ERROR "not used"
22 complex(1, 2) // ERROR "not used"
23 imag(1i) // ERROR "not used"
24 len(a) // ERROR "not used"
25 make([]int, 10) // ERROR "not used"
26 new(int) // ERROR "not used"
27 real(1i) // ERROR "not used"
28 unsafe.Alignof(a) // ERROR "not used"
29 unsafe.Offsetof(s.f) // ERROR "not used"
    [all...]

Completed in 794 milliseconds

1 2 3 4 5 6 7 8 91011>>