Home
last modified time | relevance | path

Searched refs:fallthrough (Results 1 - 25 of 125) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DDemangleConfig.h75 #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 Dcompiler.h79 * 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 DCompiler.h269 /// 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 Dattributes.h582 // 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 Dutil.h40 #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 Djconfigint.h66 #if __has_attribute(fallthrough)
67 #define FALLTHROUGH __attribute__((fallthrough));
/third_party/gn/src/base/
H A Dcompiler_specific.h58 // 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 DStrokeIterator.h81 [[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 DStrokeFixedCountTessellator.h62 [[fallthrough]]; in NumFixedEdgesInJoin()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCompiler.h233 /// 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 Dxfermodes.cpp158 [[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 Dbuiltins-lazy-gen.cc45 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 DSkRasterPipeline_opts.h642 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 DRegexParser.cpp66 case END: [[fallthrough]]; in sequence()
67 case '|': [[fallthrough]]; in sequence()
/third_party/node/deps/v8/src/base/
H A Dv8-fallthrough.h8 // 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 Dplatform.h535 * 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 Dplatform.h522 * 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 Dplatform.h535 * 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 Dglobals-vixl.h198 // 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 Dittnotify_static.c59 #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 Dcompiler.h34 #define fallthrough /* FALLTHROUGH */ do { } while(0) macro
/third_party/node/deps/base64/base64/lib/
H A Denv.h65 // 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 Dutil-macros.h65 #define _fallthrough_ __attribute__((fallthrough))
/third_party/node/src/quic/
H A Dsessionticket.cc127 [[fallthrough]]; in DecryptedCallback()
131 [[fallthrough]]; in DecryptedCallback()
/third_party/rust/crates/syn/codegen/src/
H A Deq.rs75 let fallthrough = if variants.len() == 1 { in expand_impl_body()
83 #fallthrough in expand_impl_body()

Completed in 17 milliseconds

12345