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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
pragma-weak.h 1 // Header for PCH test pragma-weak.c
3 #pragma weak weakvar
10 #pragma weak undeclaredvar
  /external/clang/test/Parser/
pragma-weak.c 7 /* expected-warning {{expected identifier in '#pragma weak'}}*/ #pragma weak
8 #pragma weak x
11 /* expected-warning {{expected identifier in '#pragma weak'}}*/ #pragma weak z = =
12 /* expected-warning {{expected identifier in '#pragma weak'}}*/ #pragma weak z =
13 /* expected-warning {{weak identifier 'y' never declared}} */ #pragma weak z = y
16 /* expected-warning {{extra tokens at end of '#pragma weak'}}*/ #pragma weak a
    [all...]
  /bionic/tests/libs/
dlsym_weak_function.cpp 17 extern "C" int __attribute__((weak)) weak_func() {
dl_df_1_use_global.cpp 17 extern "C" int __attribute__((weak)) dl_df_1_global_get_answer_impl() {
dlopen_2_parents_reloc_answer.cpp 17 extern "C" int __attribute__((weak)) check_order_reloc_get_answer_impl() {
dlopen_check_order_reloc_answer.cpp 17 extern "C" int __attribute__((weak)) check_order_reloc_get_answer_impl() {
dl_preempt_library_1.cpp 19 extern "C" int __attribute__((weak)) main_global_default_serial() {
26 extern "C" int __attribute__((weak, visibility("protected"))) main_global_protected_serial() {
  /external/clang/test/Modules/Inputs/
lookup_left.hpp 3 #pragma weak weak_identifier // expected-warning{{weak identifier 'weak_identifier' never declared}}
  /external/clang/test/Sema/
attr-self-alias.c 3 int self_alias(void) __attribute__((weak, alias("self_alias"))); // expected-error {{alias definition is part of a cycle}}
attr-weak.c 3 extern int g0 __attribute__((weak));
5 int g2 __attribute__((weak));
11 struct __attribute__((weak)) s0 {}; // expected-warning {{'weak' attribute only applies to variables and functions}}
14 static int x __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
21 extern int pr14946_x __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
24 void pr14946_f() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}
    [all...]
  /external/clang/test/SemaCXX/
pragma-weak.cpp 3 #pragma weak foo
11 #pragma weak test = Test
attr-weak.cpp 3 static int test0 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
4 static void test1() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
6 namespace test2 __attribute__((weak)) { // expected-warning {{'weak' attribute only applies to variables, functions and classes}}
10 int test3 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
11 void test4() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}
    [all...]
  /external/llvm/test/MC/ELF/
weak.s 3 // Test that this produces a weak undefined symbol.
5 .weak foo
9 .weak bar
16 // CHECK-NEXT: Binding: Weak
25 // CHECK-NEXT: Binding: Weak
  /external/swiftshader/third_party/LLVM/test/MC/ELF/
weak.s 3 // Test that this produces a weak undefined symbol.
5 .weak foo
9 .weak bar
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/
weak.s 3 // Test that this produces a weak undefined symbol.
5 .weak foo
9 .weak bar
16 // CHECK-NEXT: Binding: Weak
25 // CHECK-NEXT: Binding: Weak
  /external/clang/test/CodeGen/
global-decls.c 4 extern int g0_ext __attribute__((weak));
6 extern int __attribute__((weak)) g1_ext (void);
8 // RUN: grep '@g0_common = weak global i32' %t
9 int g0_common __attribute__((weak));
11 // RUN: grep '@g0_def = weak global i32' %t
12 int g0_def __attribute__((weak)) = 52;
13 // RUN: grep 'define weak i32 @g1_def()' %t
14 int __attribute__((weak)) g1_def (void) { return 0; }
2008-11-02-WeakAlias.c 4 // CHECK: weak
5 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
pragma-weak.c 3 // CHECK: @weakvar = weak global
5 // CHECK: @correct_linkage = weak global
10 // CHECK-DAG: @weakvar_alias = weak alias i32, i32* @__weakvar_alias
11 // CHECK-DAG: @foo = weak alias void (), void ()* @__foo
12 // CHECK-DAG: @foo2 = weak alias void (), void ()* @__foo2
13 // CHECK-DAG: @stutter = weak alias void (), void ()* @__stutter
14 // CHECK-DAG: @stutter2 = weak alias void (), void ()* @__stutter2
15 // CHECK-DAG: @declfirst = weak alias void (), void ()* @__declfirst
16 // CHECK-DAG: @declfirstattr = weak alias void (), void ()* @__declfirstattr
17 // CHECK-DAG: @mix2 = weak alias void (), void ()* @__mix
    [all...]
  /bionic/libc/bionic/
icu_static.cpp 32 __attribute__((weak)) void* __find_icu_symbol(const char*) {
  /development/vndk/tools/header-checker/tests/integration/weak_symbols/
example.c 3 extern void example(void) __attribute__((weak));
  /external/llvm/test/MC/COFF/
weak-val.s 4 // test that b and .weak.b have the correct values.
8 .weak b
21 // CHECK-NEXT: Linked: .weak.b.default (8)
26 // CHECK-NEXT: Name: .weak.b.default
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/COFF/
weak-val.s 4 // test that b and .weak.b have the correct values.
8 .weak b
21 // CHECK-NEXT: Linked: .weak.b.default (8)
26 // CHECK-NEXT: Name: .weak.b.default
  /external/clang/test/Preprocessor/
ignore-pragmas.c 9 #pragma weak
  /external/clang/test/CodeGenCXX/
pragma-weak.cpp 3 #pragma weak zex
5 // GCC produces a weak symbol for this because it matches mangled names.
10 #pragma weak foo
15 #pragma weak zed
19 #pragma weak bah
23 #pragma weak baz
25 // CHECK-LABEL: define weak {{.*}}void @baz(
27 #pragma weak _Z3baxv
29 // GCC produces a weak symbol for this one, but it doesn't look like a good
  /external/iproute2/tc/
static-syms.h 1 extern char police_action_util[] __attribute__((weak)); if (!strcmp(sym, "police_action_util")) return police_action_util;
2 extern char gact_action_util[] __attribute__((weak)); if (!strcmp(sym, "gact_action_util")) return gact_action_util;
3 extern char mirred_action_util[] __attribute__((weak)); if (!strcmp(sym, "mirred_action_util")) return mirred_action_util;
4 extern char tunnel_key_action_util[] __attribute__((weak)); if (!strcmp(sym, "tunnel_key_action_util")) return tunnel_key_action_util;
5 extern char nat_action_util[] __attribute__((weak)); if (!strcmp(sym, "nat_action_util")) return nat_action_util;
6 extern char simple_action_util[] __attribute__((weak)); if (!strcmp(sym, "simple_action_util")) return simple_action_util;
7 extern char ipt_action_util[] __attribute__((weak)); if (!strcmp(sym, "ipt_action_util")) return ipt_action_util;
8 extern char bpf_action_util[] __attribute__((weak)); if (!strcmp(sym, "bpf_action_util")) return bpf_action_util;
9 extern char connmark_action_util[] __attribute__((weak)); if (!strcmp(sym, "connmark_action_util")) return connmark_action_util;
10 extern char ife_action_util[] __attribute__((weak)); if (!strcmp(sym, "ife_action_util")) return ife_action_util
    [all...]

Completed in 2004 milliseconds

1 2 3 4 5 6 7 8 91011>>