HomeSort by relevance Sort by last modified time
    Searched refs:static_var (Results 1 - 11 of 11) sorted by null

  /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/python/cpython3/Include/
dynamic_annotations.h 480 #define _Py_ANNOTATE_BENIGN_RACE_STATIC(static_var, description) \
482 class static_var ## _annotator { \
484 static_var ## _annotator() { \
485 _Py_ANNOTATE_BENIGN_RACE_SIZED(&static_var, \
486 sizeof(static_var), \
487 # static_var ": " description); \
490 static static_var ## _annotator the ## static_var ## _annotator;\
495 #define _Py_ANNOTATE_BENIGN_RACE_STATIC(static_var, description) /* empty */
  /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/libchrome/base/third_party/dynamic_annotations/
dynamic_annotations.h 576 #define ANNOTATE_BENIGN_RACE_STATIC(static_var, description) \
578 class static_var ## _annotator { \
580 static_var ## _annotator() { \
581 ANNOTATE_BENIGN_RACE_SIZED(&static_var, \
582 sizeof(static_var), \
583 # static_var ": " description); \
586 static static_var ## _annotator the ## static_var ## _annotator;\
591 #define ANNOTATE_BENIGN_RACE_STATIC(static_var, description) /* empty */
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 221 extern const int static_var; // expected-note {{previous declaration is here}}
222 static const int static_var = 3; // expected-warning {{redeclaring non-static 'static_var' as static is a Microsoft extension}} variable
  /tools/tradefederation/core/atest/test_finders/
test_finder_utils.py 193 def static_var(varname, value): function
203 @static_var("cached_ignore_dirs", [])

Completed in 941 milliseconds