HomeSort by relevance Sort by last modified time
    Searched refs:noreturn (Results 51 - 75 of 436) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
internal_macros.h 19 #define BENCHMARK_NORETURN [[noreturn]]
21 #define BENCHMARK_NORETURN __attribute__((noreturn))
23 #define BENCHMARK_NORETURN __declspec(noreturn)
  /art/test/1944-sudden-exit/
sudden_exit.cc 24 __attribute__((noreturn));
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/m0/src/
main.c 10 __attribute__((noreturn)) void main(void)
  /external/clang/test/Parser/
cxx11-base-spec-attributes.cpp 9 struct G : [[noreturn]] A {}; // expected-error {{'noreturn' attribute cannot be applied to a base specifier}}
cxx11-stmt-attributes.cpp 31 [[noreturn]] { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
32 [[noreturn]] if (0) { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
33 [[noreturn]] for (;;); // expected-error {{'noreturn' attribute cannot be applied to a statement}}
34 [[noreturn]] do { // expected-error {{'noreturn' attribute cannot be applied to a statement}}
  /external/clang/test/Sema/
warn-unused-label.c 8 d: __attribute__((noreturn)); // expected-warning {{'noreturn' attribute only applies to functions}}
return.c 36 void halt2() __attribute__((noreturn));
63 int halt3() __attribute__((noreturn));
161 void (*fptr)() __attribute__((noreturn));
192 void test28() __attribute__((noreturn));
203 extern void longjmp (struct __jmp_buf_tag __env[1], int __val) __attribute__ ((noreturn));
204 extern void _longjmp (struct __jmp_buf_tag __env[1], int __val) __attribute__ ((noreturn));
220 void test31(test31_t *callback __attribute__((noreturn)));
287 void abort(void) __attribute__((noreturn));
MicrosoftCompatibility.c 14 __declspec(noreturn) void f6( void ) {
15 return; // expected-warning {{function 'f6' declared 'noreturn' should not return}}
return-noreturn.c 1 // RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks -Wmissing-noreturn -Wno-unreachable-code
4 void test1() { // expected-warning {{function 'test1' could be declared with attribute 'noreturn'}}
17 } // expected-warning{{function declared 'noreturn' should not return}}
21 // because the function is marked noreturn and there is an infinite loop.
29 } // expected-warning{{function declared 'noreturn' should not return}}
32 // PR5298 - -Wmissing-noreturn shouldn't warn if the function is already
33 // declared noreturn.
34 void __attribute__((noreturn))
  /external/syslinux/memdisk/
conio.h 30 void __attribute__((noreturn)) die(const char *, ...);
  /external/valgrind/VEX/priv/
main_globals.c 49 __attribute__ ((noreturn))
main_globals.h 50 __attribute__ ((noreturn))
  /external/google-benchmark/src/
internal_macros.h 22 #define BENCHMARK_NORETURN [[noreturn]]
24 #define BENCHMARK_NORETURN __attribute__((noreturn))
26 #define BENCHMARK_NORETURN __declspec(noreturn)
  /external/tcpdump/
funcattrs.h 62 * NORETURN, before a function declaration, means "this function
64 * "extern NORETURN func(...)" rather than after the function
67 #if __has_attribute(noreturn) \
73 * Compiler with support for __attribute((noreturn)), or GCC 2.5 and
78 #define NORETURN __attribute((noreturn))
83 #define NORETURN __declspec(noreturn)
85 #define NORETURN
  /external/valgrind/coregrind/
pub_core_libcprint.h 81 __attribute__((noreturn))
86 __attribute__((noreturn))
91 __attribute__((noreturn))
  /external/valgrind/include/
pub_tool_libcsetjmp.h 81 __attribute__((noreturn))
90 __attribute__((noreturn))
100 __attribute__((noreturn))
111 __attribute__((noreturn))
120 __attribute__((noreturn))
128 __attribute__((noreturn))
  /tools/dexter/slicer/export/slicer/
common.h 23 void _checkFailed(const char* expr, int line, const char* file) __attribute__((noreturn));
37 void _fatal(const char* format, ...) __attribute__((noreturn));
  /device/google/cuttlefish_common/host/frontend/vnc_server/
vnc_server.h 41 [[noreturn]] void MainLoop();
  /external/clang/test/CodeGen/
2007-09-27-ComplexIntCompare.c 4 void __attribute__((noreturn)) abort(void);
unreachable.c 4 extern void abort() __attribute__((noreturn));
  /external/clang/test/PCH/
functions.c 24 void __attribute__((noreturn)) test_abort(int code) {
  /external/kmod/shared/
macro.h 63 /* 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/ltp/include/
tst_common.h 24 #define LTP_ATTRIBUTE_NORETURN __attribute__((noreturn))
  /external/syslinux/dos/
stdlib.h 14 void __attribute__ ((noreturn)) exit(int);
  /system/core/init/
reboot.h 26 void __attribute__((noreturn)) RebootSystem(unsigned int cmd, const std::string& rebootTarget);

Completed in 553 milliseconds

1 23 4 5 6 7 8 91011>>