/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
H A D | 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]]
|
/third_party/mesa3d/src/util/ |
H A D | compiler.h | 79 * clang::fallthrough in the preprocessor fails in GCC. */ 80 # define HAS_CLANG_FALLTHROUGH __has_cpp_attribute(clang::fallthrough) 87 #define FALLTHROUGH [[fallthrough]] 90 #define FALLTHROUGH [[clang::fallthrough]] 91 #elif __has_attribute(fallthrough) 93 #define FALLTHROUGH __attribute__((fallthrough))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Compiler.h | 269 /// LLVM_FALLTHROUGH - Mark fallthrough cases in switch statements. 270 #if __cplusplus > 201402L && LLVM_HAS_CPP_ATTRIBUTE(fallthrough) 271 #define LLVM_FALLTHROUGH [[fallthrough]] 272 #elif LLVM_HAS_CPP_ATTRIBUTE(gnu::fallthrough) 273 #define LLVM_FALLTHROUGH [[gnu::fallthrough]] 274 #elif __has_attribute(fallthrough) 275 #define LLVM_FALLTHROUGH __attribute__((fallthrough)) 276 #elif LLVM_HAS_CPP_ATTRIBUTE(clang::fallthrough) 277 #define LLVM_FALLTHROUGH [[clang::fallthrough]]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
H A D | attributes.h | 582 // indicate intentional fallthrough and turn off warnings about any lack of a 603 // with unannotated fallthrough using the warning `-Wimplicit-fallthrough`. See 605 // https://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough 613 #elif ABSL_HAVE_CPP_ATTRIBUTE(fallthrough) 614 #define ABSL_FALLTHROUGH_INTENDED [[fallthrough]] 615 #elif ABSL_HAVE_CPP_ATTRIBUTE(clang::fallthrough) 616 #define ABSL_FALLTHROUGH_INTENDED [[clang::fallthrough]] 617 #elif ABSL_HAVE_CPP_ATTRIBUTE(gnu::fallthrough) [all...] |
/third_party/ninja/src/ |
H A D | util.h | 40 #define NINJA_FALLTHROUGH [[fallthrough]] 42 #define NINJA_FALLTHROUGH [[clang::fallthrough]] 45 #define NINJA_FALLTHROUGH [[gnu::fallthrough]] 47 #define NINJA_FALLTHROUGH __attribute__ ((fallthrough))
|
/third_party/libjpeg-turbo/ |
H A D | jconfigint.h | 66 #if __has_attribute(fallthrough) 67 #define FALLTHROUGH __attribute__((fallthrough));
|
/third_party/gn/src/base/ |
H A D | compiler_specific.h | 58 // Macro for telling -Wimplicit-fallthrough that a fallthrough is intentional. 60 #define FALLTHROUGH [[fallthrough]] 62 #define FALLTHROUGH [[clang::fallthrough]]
|
/third_party/skia/src/gpu/tessellate/ |
H A D | StrokeIterator.h | 81 [[fallthrough]]; // i.e., "if (p3 == p2 && p2 == p1 && p1 == p0)" in next() 85 [[fallthrough]]; // i.e., "if (p2 == p1 && p1 == p0)" in next() 295 [[fallthrough]]; in fillSquareCapPoints() 302 [[fallthrough]]; in fillSquareCapPoints()
|
H A D | StrokeFixedCountTessellator.h | 62 [[fallthrough]]; in NumFixedEdgesInJoin()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Compiler.h | 233 /// LLVM_FALLTHROUGH - Mark fallthrough cases in switch statements. 234 #if __cplusplus > 201402L && __has_cpp_attribute(fallthrough) 235 #define LLVM_FALLTHROUGH [[fallthrough]] 240 #elif __has_cpp_attribute(clang::fallthrough) 241 #define LLVM_FALLTHROUGH [[clang::fallthrough]]
|
/third_party/skia/gm/ |
H A D | xfermodes.cpp | 158 [[fallthrough]]; in draw_mode() 179 [[fallthrough]]; in draw_mode() 192 [[fallthrough]]; in draw_mode() 195 [[fallthrough]]; in draw_mode()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-lazy-gen.cc | 45 Label fallthrough(this), may_have_optimized_code(this); in MaybeTailCallOptimizedCodeSlot() 55 &fallthrough); in MaybeTailCallOptimizedCodeSlot() local 111 BIND(&fallthrough); in MaybeTailCallOptimizedCodeSlot()
|
/third_party/skia/src/opts/ |
H A D | SkRasterPipeline_opts.h | 642 case 0: _37 = _mm256_insertf128_ps(_37, _mm_loadu_ps(ptr+28), 1); [[fallthrough]]; 643 case 7: _26 = _mm256_insertf128_ps(_26, _mm_loadu_ps(ptr+24), 1); [[fallthrough]]; 644 case 6: _15 = _mm256_insertf128_ps(_15, _mm_loadu_ps(ptr+20), 1); [[fallthrough]]; 645 case 5: _04 = _mm256_insertf128_ps(_04, _mm_loadu_ps(ptr+16), 1); [[fallthrough]]; 646 case 4: _37 = _mm256_insertf128_ps(_37, _mm_loadu_ps(ptr+12), 0); [[fallthrough]]; 647 case 3: _26 = _mm256_insertf128_ps(_26, _mm_loadu_ps(ptr+ 8), 0); [[fallthrough]]; 648 case 2: _15 = _mm256_insertf128_ps(_15, _mm_loadu_ps(ptr+ 4), 0); [[fallthrough]]; 1160 case 7: v[6] = src[6]; [[fallthrough]]; in load() 1161 case 6: v[5] = src[5]; [[fallthrough]]; in load() 1162 case 5: v[4] = src[4]; [[fallthrough]]; in load() [all...] |
/third_party/skia/src/sksl/lex/ |
H A D | RegexParser.cpp | 66 case END: [[fallthrough]]; in sequence() 67 case '|': [[fallthrough]]; in sequence()
|
/third_party/node/deps/v8/src/base/ |
H A D | v8-fallthrough.h | 8 // When clang suggests inserting [[clang::fallthrough]], it first checks if 12 // for V8_FALLTHROUGH instead of the user-specific fallthrough macro. 16 #define V8_FALLTHROUGH [[clang::fallthrough]]
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | platform.h | 535 * http://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough 545 # if UPRV_HAS_CPP_ATTRIBUTE(clang::fallthrough) || \ 547 UPRV_HAS_WARNING("-Wimplicit-fallthrough")) 548 # define U_FALLTHROUGH [[clang::fallthrough]] 551 # define U_FALLTHROUGH __attribute__((fallthrough))
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | platform.h | 522 * http://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough 532 # if UPRV_HAS_CPP_ATTRIBUTE(clang::fallthrough) || \ 534 UPRV_HAS_WARNING("-Wimplicit-fallthrough")) 535 # define U_FALLTHROUGH [[clang::fallthrough]] 538 # define U_FALLTHROUGH __attribute__((fallthrough))
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | platform.h | 535 * http://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough 545 # if UPRV_HAS_CPP_ATTRIBUTE(clang::fallthrough) || \ 547 UPRV_HAS_WARNING("-Wimplicit-fallthrough")) 548 # define U_FALLTHROUGH [[clang::fallthrough]] 551 # define U_FALLTHROUGH __attribute__((fallthrough))
|
/third_party/vixl/src/ |
H A D | globals-vixl.h | 198 // The clang::fallthrough attribute is used along with the Wimplicit-fallthrough 201 // http://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough 207 #if __has_warning("-Wimplicit-fallthrough") && __cplusplus >= 201103L 208 #define VIXL_FALLTHROUGH() [[clang::fallthrough]] 211 #define VIXL_FALLTHROUGH() __attribute__((fallthrough))
|
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/ |
H A D | ittnotify_static.c | 59 #if HAS_CPP_ATTR(fallthrough) || HAS_C_ATTR(fallthrough) 60 #define ITT_ATTRIBUTE_FALLTHROUGH [[fallthrough]] 61 #elif HAS_CPP_ATTR(gnu::fallthrough) 62 #define ITT_ATTRIBUTE_FALLTHROUGH [[gnu::fallthrough]] 63 #elif HAS_CPP_ATTR(clang::fallthrough) 64 #define ITT_ATTRIBUTE_FALLTHROUGH [[clang::fallthrough]] 65 #elif HAS_GNU_ATTR(fallthrough) 66 #define ITT_ATTRIBUTE_FALLTHROUGH __attribute__((fallthrough))
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
H A D | compiler.h | 34 #define fallthrough /* FALLTHROUGH */ do { } while(0) macro
|
/third_party/node/deps/base64/base64/lib/ |
H A D | env.h | 65 // GCC 7 defaults to issuing a warning for fallthrough in switch statements, 66 // unless the fallthrough cases are marked with an attribute. As we use 67 // fallthrough deliberately, define an alias for the attribute: 69 # define BASE64_FALLTHROUGH __attribute__((fallthrough));
|
/third_party/libinput/src/ |
H A D | util-macros.h | 65 #define _fallthrough_ __attribute__((fallthrough))
|
/third_party/node/src/quic/ |
H A D | sessionticket.cc | 127 [[fallthrough]]; in DecryptedCallback() 131 [[fallthrough]]; in DecryptedCallback()
|
/third_party/rust/crates/syn/codegen/src/ |
H A D | eq.rs | 75 let fallthrough = if variants.len() == 1 { in expand_impl_body() 83 #fallthrough in expand_impl_body()
|