HomeSort by: relevance | last modified time | path
    Searched refs:fallthrough (Results 1 - 25 of 288) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/libfido2/dist/src/
fallthrough.h 12 #if __has_attribute(fallthrough)
13 #define FALLTHROUGH __attribute__((fallthrough));
17 #ifndef FALLTHROUGH
18 #define FALLTHROUGH /* FALLTHROUGH */
  /src/external/bsd/zstd/dist/contrib/linux-kernel/test/include/linux/
compiler.h 21 #define fallthrough __attribute__((__fallthrough__)) macro
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
DemangleConfig.h 75 #if __cplusplus > 201402L && __has_cpp_attribute(fallthrough)
76 #define DEMANGLE_FALLTHROUGH [[fallthrough]]
77 #elif __has_cpp_attribute(gnu::fallthrough)
78 #define DEMANGLE_FALLTHROUGH [[gnu::fallthrough]]
83 #elif __has_cpp_attribute(clang::fallthrough)
84 #define DEMANGLE_FALLTHROUGH [[clang::fallthrough]]
  /src/external/bsd/libarchive/dist/libarchive/test/
test.h 37 #define __LA_FALLTHROUGH __attribute__((fallthrough))
  /src/external/mpl/bind/dist/lib/isc/include/isc/
attributes.h 94 #if __has_c_attribute(fallthrough)
95 #define FALLTHROUGH [[fallthrough]]
97 #define FALLTHROUGH __attribute__((fallthrough))
100 #define FALLTHROUGH do {} while (0) /* FALLTHROUGH */
  /src/tests/usr.bin/xlint/lint1/
gcc_attribute_var.c 31 * A GCC extension allows statement of the form __attribute__((fallthrough)),
44 __attribute__((fallthrough));
c23.c 193 /* expect+1: warning: fallthrough on case statement [220] */
196 [[fallthrough]];
199 [[fallthrough]];
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Compiler.h 271 /// LLVM_FALLTHROUGH - Mark fallthrough cases in switch statements.
272 #if defined(__cplusplus) && __cplusplus > 201402L && LLVM_HAS_CPP_ATTRIBUTE(fallthrough)
273 #define LLVM_FALLTHROUGH [[fallthrough]]
274 #elif LLVM_HAS_CPP_ATTRIBUTE(gnu::fallthrough)
275 #define LLVM_FALLTHROUGH [[gnu::fallthrough]]
276 #elif __has_attribute(fallthrough)
277 #define LLVM_FALLTHROUGH __attribute__((fallthrough))
278 #elif LLVM_HAS_CPP_ATTRIBUTE(clang::fallthrough)
279 #define LLVM_FALLTHROUGH [[clang::fallthrough]]
  /src/external/bsd/tcpdump/dist/
netdissect-stdinc.h 365 * have __has_attribute(), and the "fallthrough" attribute was introduced
370 * __attribute__ ((fallthrough));
376 #if __has_attribute(fallthrough) && !defined(__clang__)
377 # define ND_FALL_THROUGH __attribute__ ((fallthrough))
380 #endif /* __has_attribute(fallthrough) */
  /src/external/gpl3/gdb/dist/gdbsupport/
btrace-common.cc 136 [[fallthrough]];
164 [[fallthrough]];
  /src/external/gpl3/gdb.old/dist/gdbsupport/
btrace-common.cc 136 [[fallthrough]];
164 [[fallthrough]];
  /src/external/bsd/zstd/dist/lib/common/
compiler.h 255 /* Define ZSTD_FALLTHROUGH macro for annotating switch case with the 'fallthrough' attribute.
256 * - C23: https://en.cppreference.com/w/c/language/attributes/fallthrough
257 * - CPP17: https://en.cppreference.com/w/cpp/language/attributes/fallthrough
261 # if ZSTD_HAS_C_ATTRIBUTE(fallthrough)
262 # define ZSTD_FALLTHROUGH [[fallthrough]]
263 # elif ZSTD_HAS_CPP_ATTRIBUTE(fallthrough)
264 # define ZSTD_FALLTHROUGH [[fallthrough]]
  /src/external/gpl3/gdb/dist/gdb/
d-valprint.c 87 [[fallthrough]];
go-valprint.c 116 [[fallthrough]];
  /src/external/gpl3/gdb.old/dist/gdb/
d-valprint.c 87 [[fallthrough]];
go-valprint.c 116 [[fallthrough]];
  /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
hash_bytes.cc 100 [[gnu::fallthrough]];
104 [[gnu::fallthrough]];
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
hash_bytes.cc 98 [[gnu::fallthrough]];
101 [[gnu::fallthrough]];
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeEmitter.h 66 bool fallthrough(const LabelTy &Label);
EvalEmitter.h 68 bool fallthrough(const LabelTy &Label);
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
util.h 71 #if __has_c_attribute(fallthrough)
72 #define FALLTHROUGH [[fallthrough]]
74 #define FALLTHROUGH __attribute__((fallthrough))
77 #define FALLTHROUGH do {} while (0) /* FALLTHROUGH */
  /src/external/bsd/jemalloc/include/jemalloc/
jemalloc_macros.h 115 # define JEMALLOC_FALLTHROUGH JEMALLOC_ATTR(fallthrough)
  /src/external/bsd/libarchive/dist/libarchive/
archive_platform.h 208 #define __LA_FALLTHROUGH __attribute__((fallthrough))
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_internal_defs.h 262 #if __has_cpp_attribute(clang::fallthrough)
263 # define FALLTHROUGH [[clang::fallthrough]]
264 #elif __has_cpp_attribute(fallthrough)
265 # define FALLTHROUGH [[fallthrough]]
267 # define FALLTHROUGH
  /src/external/bsd/zstd/dist/contrib/linux-kernel/
Makefile 53 -RZSTD_FALLTHROUGH=fallthrough \
99 -Wimplicit-fallthrough

Completed in 56 milliseconds

1 2 3 4 5 6 7 8 91011>>