/external/clang/test/Parser/ |
D | c11-noreturn.c | 4 _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.h | 1 #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/ |
D | fixit-errors.c | 25 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/ |
D | declspec.c | 51 _Noreturn _Noreturn void pr8264_7(); // expected-warning {{duplicate '_Noreturn' declaration speci…
|
D | warn-main.c | 27 _Noreturn int main() { in main()
|
D | return-noreturn.c | 40 _Noreturn void test5() { in test5()
|
/external/icu/icu4c/source/tools/tzcode/ |
D | private.h | 222 #if !defined _Noreturn && __STDC_VERSION__ < 201112 224 # define _Noreturn __attribute__ ((__noreturn__)) macro 226 # define _Noreturn macro
|
D | zic.c | 420 static _Noreturn void 519 static _Noreturn void
|
/external/bison/darwin-lib/ |
D | config.h | 2073 #if ! (defined _Noreturn \ 2077 # define _Noreturn __attribute__ ((__noreturn__)) macro 2079 # define _Noreturn __declspec (noreturn) macro 2081 # define _Noreturn macro
|
D | stdlib.h | 107 #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/ |
D | config.h | 2073 #if ! (defined _Noreturn \ 2077 # define _Noreturn __attribute__ ((__noreturn__)) macro 2079 # define _Noreturn __declspec (noreturn) macro 2081 # define _Noreturn macro
|
D | stdlib.h | 107 #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/ |
D | stdnoreturn.h | 27 #define noreturn _Noreturn
|
/external/bison/lib/ |
D | xmemdup0.h | 33 extern _Noreturn void xalloc_die (void);
|
D | obstack.c | 90 static _Noreturn void print_and_abort (void); 404 static _Noreturn void
|
D | config.in.h | 2072 #if ! (defined _Noreturn \ 2076 # define _Noreturn __attribute__ ((__noreturn__)) macro 2078 # define _Noreturn __declspec (noreturn) macro 2080 # define _Noreturn macro
|
D | xalloc.h | 52 extern _Noreturn void xalloc_die (void);
|
D | gnulib.mk | 1542 _NORETURN_H=$(top_srcdir)/build-aux/snippet/_Noreturn.h 1544 EXTRA_DIST += $(top_srcdir)/build-aux/snippet/_Noreturn.h
|
D | stdlib.in.h | 132 _GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status));
|
/external/bison/m4/ |
D | gnulib-common.m4 | 15 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
|
D | gnulib-comp.m4 | 177 # Code from module snippet/_Noreturn: 908 build-aux/snippet/_Noreturn.h
|
/external/clang/test/CodeGen/ |
D | function-attributes.c | 42 _Noreturn void f9a(void);
|
/external/clang/docs/ |
D | AttributeReference.rst | 188 _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/ |
D | DiagnosticParseKinds.td | 128 "_Noreturn functions are a C11-specific feature">, InGroup<C11>; 130 "'_Noreturn' keyword must precede function declarator">;
|
D | TokenKinds.def | 279 KEYWORD(_Noreturn , KEYALL)
|