/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 | 27 void noreturn_1() _Noreturn; // expected-error {{must precede function declarator}} 31 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
|
/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
|
/external/clang/test/CodeGen/ |
D | function-attributes.c | 42 _Noreturn void f9a(void);
|
/external/kmod/shared/ |
D | macro.h | 67 #define noreturn _Noreturn
|
/external/kmod/ |
D | configure.ac | 69 AC_MSG_CHECKING([whether _Noreturn is supported]) 71 [AC_LANG_SOURCE([[_Noreturn int foo(void) { exit(0); }]])], 72 [AC_DEFINE([HAVE_NORETURN], [1], [Define if _Noreturn is available])
|
/external/kmod/testsuite/ |
D | testsuite.h | 176 # define __noreturn _Noreturn
|
/external/swiftshader/src/OpenGL/compiler/preprocessor/ |
D | ExpressionParser.cpp | 264 #if !defined _Noreturn \ 267 # define _Noreturn __declspec (noreturn) macro 269 # define _Noreturn YY_ATTRIBUTE ((__noreturn__)) macro
|
/external/libpcap/ |
D | grammar.c | 716 #if !defined _Noreturn \ 719 # define _Noreturn __declspec (noreturn) macro 721 # define _Noreturn YY_ATTRIBUTE ((__noreturn__)) macro
|