Home
last modified time | relevance | path

Searched refs:_Noreturn (Results 1 – 25 of 29) sorted by relevance

12

/external/clang/test/Parser/
Dc11-noreturn.c4 _Noreturn int f();
5 int _Noreturn f(); // expected-note {{previous}}
6 int f _Noreturn(); // expected-error {{expected ';'}} expected-error 2{{}}
7 int f() _Noreturn; // expected-error {{'_Noreturn' keyword must precede function declarator}}
9 _Noreturn char c1; // expected-error {{'_Noreturn' can only appear on functions}}
10 char _Noreturn c2; // expected-error {{'_Noreturn' can only appear on functions}}
12 typedef _Noreturn int g(); // expected-error {{'_Noreturn' can only appear on functions}}
14 _Noreturn int; // expected-error {{'_Noreturn' can only appear on functions}} expected-warning {{do…
15 _Noreturn struct S; // expected-error {{'_Noreturn' can only appear on functions}}
16 _Noreturn enum E { e }; // expected-error {{'_Noreturn' can only appear on functions}}
/external/bison/build-aux/snippet/
D_Noreturn.h1 #if !defined _Noreturn && __STDC_VERSION__ < 201112
4 # define _Noreturn __attribute__ ((__noreturn__)) macro
6 # define _Noreturn __declspec (noreturn) macro
8 # define _Noreturn macro
/external/clang/test/FixIt/
Dfixit-errors.c25 void noreturn_1() _Noreturn; // expected-error {{must precede function declarator}}
29 void noreturn_2() _Noreturn { // expected-error {{must precede function declarator}} in noreturn_2()
/external/clang/test/Sema/
Ddeclspec.c51 _Noreturn _Noreturn void pr8264_7(); // expected-warning {{duplicate '_Noreturn' declaration speci…
Dwarn-main.c27 _Noreturn int main() { in main()
Dreturn-noreturn.c40 _Noreturn void test5() { in test5()
/external/icu/icu4c/source/tools/tzcode/
Dprivate.h222 #if !defined _Noreturn && __STDC_VERSION__ < 201112
224 # define _Noreturn __attribute__ ((__noreturn__)) macro
226 # define _Noreturn macro
Dzic.c420 static _Noreturn void
519 static _Noreturn void
/external/bison/darwin-lib/
Dconfig.h2073 #if ! (defined _Noreturn \
2077 # define _Noreturn __attribute__ ((__noreturn__)) macro
2079 # define _Noreturn __declspec (noreturn) macro
2081 # define _Noreturn macro
Dstdlib.h107 #if !defined _Noreturn && __STDC_VERSION__ < 201112
110 # define _Noreturn __attribute__ ((__noreturn__)) macro
112 # define _Noreturn __declspec (noreturn) macro
114 # define _Noreturn macro
454 _GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status));
/external/bison/linux-lib/
Dconfig.h2073 #if ! (defined _Noreturn \
2077 # define _Noreturn __attribute__ ((__noreturn__)) macro
2079 # define _Noreturn __declspec (noreturn) macro
2081 # define _Noreturn macro
Dstdlib.h107 #if !defined _Noreturn && __STDC_VERSION__ < 201112
110 # define _Noreturn __attribute__ ((__noreturn__)) macro
112 # define _Noreturn __declspec (noreturn) macro
114 # define _Noreturn macro
454 _GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status));
/external/clang/lib/Headers/
Dstdnoreturn.h27 #define noreturn _Noreturn
/external/bison/lib/
Dxmemdup0.h33 extern _Noreturn void xalloc_die (void);
Dobstack.c90 static _Noreturn void print_and_abort (void);
404 static _Noreturn void
Dconfig.in.h2072 #if ! (defined _Noreturn \
2076 # define _Noreturn __attribute__ ((__noreturn__)) macro
2078 # define _Noreturn __declspec (noreturn) macro
2080 # define _Noreturn macro
Dxalloc.h52 extern _Noreturn void xalloc_die (void);
Dgnulib.mk1542 _NORETURN_H=$(top_srcdir)/build-aux/snippet/_Noreturn.h
1544 EXTRA_DIST += $(top_srcdir)/build-aux/snippet/_Noreturn.h
Dstdlib.in.h132 _GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status));
/external/bison/m4/
Dgnulib-common.m415 AH_VERBATIM([_Noreturn],
16 [/* The _Noreturn keyword of C11. */
17 #if ! (defined _Noreturn \
21 # define _Noreturn __attribute__ ((__noreturn__))
23 # define _Noreturn __declspec (noreturn)
25 # define _Noreturn
Dgnulib-comp.m4177 # Code from module snippet/_Noreturn:
908 build-aux/snippet/_Noreturn.h
/external/clang/test/CodeGen/
Dfunction-attributes.c42 _Noreturn void f9a(void);
/external/clang/docs/
DAttributeReference.rst188 _Noreturn section in Function Attributes
195 A function declared as ``_Noreturn`` shall not return to its caller. The
196 compiler will generate a diagnostic for a function declared as ``_Noreturn``
/external/clang/include/clang/Basic/
DDiagnosticParseKinds.td128 "_Noreturn functions are a C11-specific feature">, InGroup<C11>;
130 "'_Noreturn' keyword must precede function declarator">;
DTokenKinds.def279 KEYWORD(_Noreturn , KEYALL)

12