Searched refs:thread_local (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/test/SemaCXX/
H A Dcxx11-thread-local.cpp4 static thread_local int a;
6 thread_local int c; // expected-error {{'thread_local' is only allowed on variable declarations}}
7 static thread_local int d; // expected-note {{here}}
10 thread_local int S::a;
11 thread_local int S::b; // expected-error {{thread-local declaration of 'b' follows non-thread-local declaration}}
12 thread_local int S::c; // expected-error {{non-static data member defined out-of-line}}
15 thread_local int x[3];
16 thread_local int y[3];
17 thread_local in
[all...]
H A Dcxx11-thread-local-print.cpp5 // CHECK: thread_local int cxx11_tl;
8 thread_local int cxx11_tl;
11 // CHECK: thread_local int cxx11_tl;
14 thread_local int cxx11_tl;
H A Dconstant-expression-cxx1y.cpp50 thread_local const int m = n; // expected-error {{thread_local variable not permitted in a constexpr function}}
/external/clang/test/PCH/
H A Dthread-local.cpp7 extern thread_local int a;
15 thread_local int b; // expected-error {{thread-local declaration of 'b' with dynamic initialization follows declaration with static initialization}}
17 thread_local int c; // expected-error {{thread-local declaration of 'c' follows non-thread-local declaration}}
/external/clang/test/CodeGenCXX/
H A Dtls-init-funcs.cpp3 // CHECK: @a = internal thread_local global
11 thread_local A a;
H A Dcxx11-thread-local.cpp6 // CHECK: @a = thread_local global i32 0
7 thread_local int a = f();
8 extern thread_local int b;
11 // CHECK: @_ZL1d = internal thread_local global i32 0
12 static thread_local int d = g();
14 struct U { static thread_local int m; };
15 // CHECK: @_ZN1U1mE = thread_local global i32 0
16 thread_local int U::m = f();
18 template<typename T> struct V { static thread_local int m; };
19 template<typename T> thread_local in
[all...]
H A Dcxx11-thread-local-reference.cpp5 // CHECK: @r = thread_local global i32* null
6 thread_local int &r = f();
H A Dcxx0x-initializer-stdinitializerlist.cpp56 // initializer is not a constant expression (pointers to thread_local
59 // CHECK: @_ZN25thread_local_global_array1xE = thread_local global
60 // CHECK: @_ZGRN25thread_local_global_array1xE_ = private thread_local constant [4 x i32] [i32 1, i32 2, i32 3, i32 4]
61 std::initializer_list<int> thread_local x = { 1, 2, 3, 4 };
78 // thread_local initializer:
/external/chromium_org/tools/gyp/test/mac/clang-cxx-language-standard/
H A Dc++98.cc20 thread_local, enumerator in enum:cxx11_keywords
/external/clang/test/CXX/class/class.friend/
H A Dp6.cpp20 friend thread_local class G; // expected-error {{'thread_local' is invalid in friend declarations}}
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp86 #define thread_local macro
171 thread_local
/external/clang/test/Lexer/
H A Dcxx0x_keyword_as_cxx98.cpp36 int thread_local; // expected-warning {{'thread_local' is a keyword in C++11}} variable
H A Dkeywords_test.cpp28 CXX11_KEYWORD(thread_local); variable
/external/clang/test/Sema/
H A Dthread-specifier.c5 // RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only -Wno-private-extern -verify -pedantic -x c++ %s -DCXX11 -D__thread=thread_local -std=c++11 -Wno-deprecated
24 // expected-error-re@-2 {{'{{__thread|_Thread_local|thread_local}}' is only allowed on variable declarations}}
36 // expected-error@-6 {{'thread_local' is only allowed on variable declarations}}
56 __thread register int t13a; // expected-error-re {{cannot combine with previous '{{__thread|_Thread_local|thread_local}}' declaration specifier}}
60 __thread typedef int t14; // expected-error-re {{cannot combine with previous '{{__thread|_Thread_local|thread_local}}' declaration specifier}}
67 extern thread_local int t17; // expected-note {{previous declaration is here}}
70 thread_local int t18; // expected-error {{thread-local declaration of 't18' with dynamic initialization follows declaration with static initialization}}
93 // expected-note@-6 {{use 'thread_local' to allow this}}
105 // expected-note@-4 {{use 'thread_local' to allow this}}
118 // expected-note@-4 {{use 'thread_local' t
[all...]
/external/libcxxabi/src/
H A Dcxa_exception_storage.cpp34 static thread_local __cxa_eh_globals eh_globals;
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1-11.cpp19 thread_local int tl; // expected-note {{refers here}}
/external/clang/test/Parser/
H A Dcxx0x-decl.cpp57 thread_local tl;
/external/clang/test/Analysis/
H A Dtemporaries.cpp248 thread_local static const Trivial &threadRef = getTrivial();
251 thread_local static const Trivial &threadDirectRef = Trivial(42);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp145 thread_local constexpr int n = 123; // expected-error {{thread_local variable not permitted in a constexpr function}}
/external/clang/test/Misc/
H A Dast-dump-decl.cpp95 thread_local int TestThreadLocalInt;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dclike.js288 "wchar_t alignas alignof constexpr decltype nullptr noexcept thread_local final " +
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
H A Dclike.js285 "wchar_t alignas alignof constexpr decltype nullptr noexcept thread_local final " +
/external/llvm/utils/vim/
H A Dllvm.vim56 syn keyword llvmKeyword tail target thread_local to triple unnamed_addr
/external/skia/experimental/webtry/res/js/cm/
H A Dclike.js285 "wchar_t alignas alignof constexpr decltype nullptr noexcept thread_local final " +
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp537 KEYWORD(thread_local);

Completed in 1923 milliseconds

12