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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
attr-used.c 2 // RUN: grep '@llvm.used = .*@g0' %t
3 // RUN: grep '@llvm.used = .*@f0' %t
4 // RUN: grep '@llvm.used = .*@f1.l0' %t
7 int g0 __attribute__((used));
9 static void __attribute__((used)) f0(void) {
13 static int l0 __attribute__((used)) = 5225;
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() {}
  /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)) = "";
warn-unused-attribute.cpp 14 Test used; local
16 used.use();
  /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...]
  /external/clang/test/CodeGenCXX/
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 47 __attribute__((used)) static int internal_var;
48 __attribute__((used)) static int internal_fn() { return 0; }
50 __attribute__((used)) static int duplicate_internal_var;
51 __attribute__((used)) static int duplicate_internal_fn() { return 0; }
54 __attribute__((used)) static int duplicate_internal_var;
55 __attribute__((used)) static int duplicate_internal_fn() { return 0; }
58 // CHECK: @llvm.used = appending global {{.*}} @internal_var {{.*}} @internal_fn
  /external/chromium_org/tools/gyp/test/mac/strip/
file.c 6 __attribute__((used)) void the_used_function() {}
8 __attribute__((visibility("hidden"))) __attribute__((used))
10 __attribute__((visibility("default"))) __attribute__((used))
14 __attribute__((used)) int i;
15 __attribute__((used)) const int ci = 34623;
main.c 6 __attribute__((used)) void the_used_function() {}
8 __attribute__((visibility("hidden"))) __attribute__((used))
10 __attribute__((visibility("default"))) __attribute__((used))
16 __attribute__((used)) int i;
17 __attribute__((used)) const int ci = 34623;
  /external/chromium_org/third_party/re2/util/
strutil.cc 20 int used = 0; local
23 if (dest_len - used < 2) // Need space for two letter escape
28 case '\n': dest[used++] = '\\'; dest[used++] = 'n'; break;
29 case '\r': dest[used++] = '\\'; dest[used++] = 'r'; break;
30 case '\t': dest[used++] = '\\'; dest[used++] = 't'; break;
31 case '\"': dest[used++] = '\\'; dest[used++] = '\"'; break
    [all...]
  /external/regex-re2/util/
strutil.cc 20 int used = 0; local
23 if (dest_len - used < 2) // Need space for two letter escape
28 case '\n': dest[used++] = '\\'; dest[used++] = 'n'; break;
29 case '\r': dest[used++] = '\\'; dest[used++] = 'r'; break;
30 case '\t': dest[used++] = '\\'; dest[used++] = 't'; break;
31 case '\"': dest[used++] = '\\'; dest[used++] = '\"'; break
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
gcsec1.cpp 17 void used() function
39 used ();
  /ndk/tests/device/test-stlport_static-exception/jni/
gcsec1.cpp 17 void used() function
39 used ();
  /external/compiler-rt/lib/lsan/
lsan_preinit.cc 24 __attribute__((section(".preinit_array"), used))
  /external/clang/include/clang/Sema/
Weak.h 10 // This file defines the WeakInfo class, which is used to store
28 bool used; // identifier later declared? member in class:clang::WeakInfo
31 : alias(nullptr), loc(SourceLocation()), used(false) {}
33 : alias(Alias), loc(Loc), used(false) {}
36 void setUsed(bool Used=true) { used = Used; }
37 inline bool getUsed() { return used; }
  /external/chromium_org/base/debug/
sanitizer_options.cc 33 // upstream AddressSanitizer and must not be used anywhere except the
72 __attribute__((used))
100 __attribute__((used))
112 __attribute__((used))
  /external/chromium_org/third_party/libjingle/source/talk/base/
ratelimiter.cc 13 * 3. The name of the author may not be used to endorse or promote products
37 void RateLimiter::Use(size_t used, double time) {
43 used_in_period_ += used;
  /external/chromium_org/third_party/webrtc/base/
ratelimiter.cc 20 void RateLimiter::Use(size_t used, double time) {
26 used_in_period_ += used;
  /external/chromium_org/skia/config/
sk_ref_cnt_ext_release.h 9 #error Only one SkRefCnt should be used.
  /external/compiler-rt/lib/asan/
asan_preinit.cc 23 __attribute__((section(".preinit_array"), used))
  /external/speex/libspeex/
vq_bfin.h 20 contributors may be used to endorse or promote products derived from
73 int i,k,used; local
74 used = 0;
96 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
103 used++;
  /external/stlport/stlport/stl/
_ioserr.h 5 * iostreams part of STLport cannot be used when the symbols were defined
9 # error STLport iostreams header cannot be used; you chose not to use iostreams in the STLport configuration file (stlport/stl/config/user_config.h).
11 # error STLport iostreams header cannot be used; your compiler do not support it.
  /external/valgrind/main/callgrind/
costs.c 45 (cost_chunk_current->size - cost_chunk_current->used < size)) {
50 cc->used = 0;
62 ptr = &(cost_chunk_current->data[cost_chunk_current->used]);
63 cost_chunk_current->used += size;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ioserr.h 5 * iostreams part of STLport cannot be used when the symbols were defined
9 # error STLport iostreams header cannot be used; you chose not to use iostreams in the STLport configuration file (stlport/stl/config/user_config.h).
11 # error STLport iostreams header cannot be used; your compiler do not support it.

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 91011>>