Home
last modified time | relevance | path

Searched refs:_Noreturn (Results 1 – 25 of 49) 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/musl/include/
Derr.h16 _Noreturn void err(int, const char *, ...);
17 _Noreturn void verr(int, const char *, va_list);
18 _Noreturn void errx(int, const char *, ...);
19 _Noreturn void verrx(int, const char *, va_list);
Dsetjmp.h29 _Noreturn void siglongjmp (sigjmp_buf, int);
35 _Noreturn void _longjmp (jmp_buf, int);
39 _Noreturn void longjmp (jmp_buf, int);
Dstdlib.h46 _Noreturn void abort (void);
48 _Noreturn void exit (int);
49 _Noreturn void _Exit (int);
51 _Noreturn void quick_exit (int);
Dfeatures.h33 #define _Noreturn __attribute__((__noreturn__)) macro
35 #define _Noreturn macro
Dstdnoreturn.h5 #define noreturn _Noreturn
Dassert.h19 _Noreturn void __assert_fail (const char *, const char *, int, const char *);
/external/musl/src/legacy/
Derr.c25 _Noreturn void verr(int status, const char *fmt, va_list ap) in verr()
31 _Noreturn void verrx(int status, const char *fmt, va_list ap) in verrx()
53 _Noreturn void err(int status, const char *fmt, ...) in err()
61 _Noreturn void errx(int status, const char *fmt, ...) in errx()
/external/obstack/libiberty/
Dobstack.c335 # if !(defined _Noreturn \
340 # define _Noreturn __attribute__ ((__noreturn__)) macro
342 # define _Noreturn __declspec (noreturn) macro
344 # define _Noreturn macro
352 static _Noreturn void
/external/clang/test/FixIt/
Dfixit-errors.c27 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/
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/toybox/lib/
Dlib.h108 _Noreturn void _xexit(void);
109 _Noreturn void xexit(void);
189 _Noreturn void error_exit(char *msg, ...) printf_format;
190 _Noreturn void perror_exit(char *msg, ...) printf_format;
191 _Noreturn void help_exit(char *msg, ...) printf_format;
194 _Noreturn void error_exit_raw(char *msg);
195 _Noreturn void perror_exit_raw(char *msg);
/external/cronet/third_party/icu/source/tools/tzcode/
Dprivate.h222 #if !defined _Noreturn && __STDC_VERSION__ < 201112
224 # define _Noreturn __attribute__ ((__noreturn__)) macro
226 # define _Noreturn macro
/external/icu/icu4c/source/tools/tzcode/
Dprivate.h222 #if !defined _Noreturn && __STDC_VERSION__ < 201112
224 # define _Noreturn __attribute__ ((__noreturn__)) macro
226 # define _Noreturn macro
/external/angle/tools/flex-bison/third_party/skeletons/
Dc.m4363 # _Noreturn.
381 ]m4_bmatch([$1], [\bnoreturn\b], [[/* The _Noreturn keyword of C11. */
382 ]dnl This is close to lib/_Noreturn.h, except that we do enable
383 dnl the use of [[noreturn]], because _Noreturn is used in places
386 dnl And the C++ compiler chokes on _Noreturn. Also, we do not
387 dnl use C' _Noreturn in C++, to avoid -Wc11-extensions warnings.
388 [#ifndef _Noreturn
392 # define _Noreturn [[noreturn]]
400 /* _Noreturn works as-is. */
403 # define _Noreturn __attribute__ ((__noreturn__))
[all …]
/external/clang/lib/Headers/
Dstdnoreturn.h27 #define noreturn _Noreturn
/external/musl/src/unistd/
D_exit.c4 _Noreturn void _exit(int status) in _exit()
/external/musl/src/thread/
Dthrd_exit.c5 _Noreturn void thrd_exit(int result) in thrd_exit()
/external/musl/src/signal/
Dsiglongjmp.c6 _Noreturn void siglongjmp(sigjmp_buf buf, int ret) in siglongjmp()
/external/musl/src/exit/
D_Exit.c4 _Noreturn void _Exit(int ec) in _Exit()
Dquick_exit.c7 _Noreturn void quick_exit(int code) in quick_exit()
Dassert.c4 _Noreturn void __assert_fail(const char *expr, const char *file, int line, const char *func) in __assert_fail()
Dabort.c9 _Noreturn void abort(void) in abort()

12