/external/clang/test/CodeGen/ |
asan-globals.cpp | 13 static int static_var = 0; local 17 // CHECK: !llvm.asan.globals = !{![[EXTRA_GLOBAL:[0-9]+]], ![[GLOBAL:[0-9]+]], ![[DYN_INIT_GLOBAL:[0-9]+]], ![[BLACKLISTED_GLOBAL:[0-9]+]], ![[STATIC_VAR:[0-9]+]], ![[LITERAL:[0-9]+]]} 25 // CHECK: ![[STATIC_VAR]] = !{{{.*}} ![[STATIC_LOC:[0-9]+]], !"static_var", i1 false, i1 false} 30 // BLACKLIST-SRC: !llvm.asan.globals = !{![[EXTRA_GLOBAL:[0-9]+]], ![[GLOBAL:[0-9]+]], ![[DYN_INIT_GLOBAL:[0-9]+]], ![[BLACKLISTED_GLOBAL:[0-9]+]], ![[STATIC_VAR:[0-9]+]], ![[LITERAL:[0-9]+]]} 36 // BLACKLIST-SRC: ![[STATIC_VAR]] = !{{{.*}} null, null, i1 false, i1 true}
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p10.cpp | 9 static T static_var; member in struct:X0 23 T X0<T>::static_var = 1; // expected-error{{cannot initialize}} member in class:X0 32 extern template int X0<int>::static_var; // expected-error{{follows explicit instantiation definition}}
|
p9-linkage.cpp | 13 static T static_var; member in struct:X0 27 T X0<T>::static_var = 0; member in class:X0 38 return X0<int*>::static_var;
|
p9.cpp | 13 static T static_var; member in struct:X0 27 T X0<T>::static_var = 1; member in class:X0 35 return X0<int*>::static_var;
|
/external/valgrind/drd/ |
drd.h | 555 #define ANNOTATE_BENIGN_RACE_STATIC(static_var, description) \ 557 static class static_var##_annotator \ 560 static_var##_annotator() \ 562 ANNOTATE_BENIGN_RACE_SIZED(&static_var, sizeof(static_var), \ 563 #static_var ": " description); \ 565 } the_##static_var##_annotator; \
|
/external/clang/test/Modules/ |
module-private.cpp | 63 static int static_var; member in struct:public_class 70 template<> __module_private__ int public_class<int>::static_var = 17; // expected-error{{member specialization cannot be declared __module_private__}} member in class:public_class
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
dlclose-test.cc | 90 static int static_var; variable 95 return &static_var;
|
/external/clang/test/SemaCXX/ |
MicrosoftExtensions.cpp | 153 extern const int static_var; // expected-note {{previous declaration is here}} 154 static const int static_var = 3; // expected-warning {{redeclaring non-static 'static_var' as static is a Microsoft extension}} variable
|