Searched defs:noreturn (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/Headers/
H A Dstdnoreturn.h1 /*===---- stdnoreturn.h - Standard header for noreturn macro ---------------===
27 #define noreturn _Noreturn macro
/external/clang/test/SemaCXX/
H A Dnew-delete-0x.cpp4 struct noreturn_t {} constexpr noreturn = {}; variable in typeref:struct:noreturn_t
6 void *operator new [[noreturn]] (size_t, noreturn_t);
7 void operator delete [[noreturn]] (void*, noreturn_t);
H A Dcxx11-gnu-attrs.cpp58 // [[gnu::noreturn]] appertains to a declaration, and marks the innermost
59 // function declarator in that declaration as being noreturn.
60 int noreturn [[gnu::noreturn]]; // expected-warning {{'noreturn' only applies to function types}} variable
62 int noreturn_fn_2() [[gnu::noreturn]]; // expected-warning {{cannot be applied to a type}}
63 int noreturn_fn_3 [[gnu::noreturn]] ();
64 [[gnu::noreturn]] int noreturn_fn_4();
65 int (*noreturn_fn_ptr_1 [[gnu::noreturn]])() = &noreturn_fn_1; // expected-error {{cannot initialize}}
66 int (*noreturn_fn_ptr_2 [[gnu::noreturn]])()
[all...]
/external/kmod/shared/
H A Dmacro.h63 /* Define C11 noreturn without <stdnoreturn.h> and even on older gcc
65 #ifndef noreturn
67 #define noreturn _Noreturn macro
69 #define noreturn __attribute__((noreturn)) macro
/external/syslinux/lzo/
H A Dprepcore.c96 # define noreturn void __attribute__((noreturn)) macro
98 # define noreturn void macro
139 static noreturn error(const char *fmt, ...)
/external/toybox/lib/
H A Dlib.h116 void _xexit(void) noreturn;
117 void xexit(void) noreturn;
182 void error_exit(char *msg, ...) printf_format noreturn; variable
183 void perror_exit(char *msg, ...) printf_format noreturn; variable
184 void help_exit(char *msg, ...) printf_format noreturn; variable
H A Dportability.h13 #define noreturn __attribute__((noreturn)) macro
16 #define noreturn macro
/external/syslinux/win/
H A Dsyslinux.c34 # define noreturn void __attribute__((noreturn)) macro
36 # define noreturn void macro

Completed in 313 milliseconds