/third_party/gn/src/base/numerics/ |
H A D | safe_conversions_impl.h | 580 template <typename T, bool is_enum = std::is_enum<T>::value>
|
/third_party/node/deps/v8/src/base/ |
H A D | safe_conversions_impl.h | 560 template <typename T, bool is_enum = std::is_enum<T>::value>
|
/third_party/node/deps/v8/src/objects/ |
H A D | objects-inl.h | 150 std::is_enum<T>::value) && 164 std::is_enum<T>::value) &&
|
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/ |
H A D | safe_conversions_impl.h | 603 template <typename T, bool is_enum = std::is_enum<T>::value>
|
/third_party/rust/crates/clap/clap_derive/src/ |
H A D | item.rs | 48 is_enum: bool, 272 is_enum: false, in new() 493 self.is_enum = true in push_attrs()
|
/third_party/gn/src/base/ |
H A D | logging.h | 489 std::is_enum<T>::value,
|
/third_party/json/include/nlohmann/detail/conversions/ |
H A D | from_json.hpp | 18 #include <type_traits> // is_arithmetic, is_same, is_enum, underlying_type, is_convertible 140 enable_if_t<std::is_enum<EnumType>::value, int> = 0>
|
H A D | to_json.hpp | 15 #include <type_traits> // is_same, is_constructible, is_floating_point, is_enum, underlying_type 319 enable_if_t<std::is_enum<EnumType>::value, int> = 0>
|
/third_party/node/deps/v8/src/tracing/ |
H A D | trace-event.h | 430 std::is_integral<T>::value || std::is_enum<T>::value, void>::type
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | ty.rs | 137 pub fn is_enum(&self) -> bool { in is_enum() functions
|
H A D | context.rs | 2539 if let (Some(name), true) = (ty.name(), ty.is_enum()) { in compute_enum_typedef_combos()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map_entry_lite.h | 75 template <bool is_enum, bool is_message, bool is_stringlike, typename T>
|
/third_party/json/include/nlohmann/detail/ |
H A D | macro_scope.hpp | 211 static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \ 223 static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | assembler-arm64-inl.h | 198 STATIC_ASSERT(std::is_integral<T>::value || std::is_enum<T>::value); in immediate_for()
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-ir.cc | 140 T, typename std::enable_if<std::is_enum<T>::value>::type>
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceOperand.h | 464 typename std::enable_if<std::is_enum<AnyEnum>::value, int>::type = 0) in RegNumT()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | time.h | 115 std::is_integral<T>::value || std::is_enum<T>::value, int>::type;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
H A D | hash.h | 276 typename std::enable_if<std::is_enum<Enum>::value, H>::type AbslHashValue( in AbslHashValue()
|
/third_party/json/tests/thirdparty/doctest/ |
H A D | doctest.h | 810 template<class T> struct is_enum : public std::is_enum<T> {}; struct 814 template<class T> struct is_enum { constexpr static bool value = __is_enum(T); }; struct 905 template <typename T, typename detail::enable_if<!detail::is_enum<T>::value, bool>::type = true> 932 template <typename T, typename detail::enable_if<detail::is_enum<T>::value, bool>::type = true>
|
/third_party/node/deps/v8/src/compiler/ |
H A D | code-assembler.h | 543 typename = typename std::enable_if<std::is_enum<E>::value>::type>
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
H A D | mod.rs | 965 inner_item.expect_type().canonical_type(ctx).is_enum() in codegen()
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 76 #include <type_traits> // is_arithmetic, is_same, is_enum, underlying_type, is_convertible 2460 static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \ 2472 static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \ 3936 enable_if_t<std::is_enum<EnumType>::value, int> = 0> 4294 #include <type_traits> // is_same, is_constructible, is_floating_point, is_enum, underlying_type 4793 enable_if_t<std::is_enum<EnumType>::value, int> = 0>
|
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 168 #include <type_traits> // is_arithmetic, is_same, is_enum, underlying_type, is_convertible 2561 static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \ 2573 static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \ 4696 enable_if_t<std::is_enum<EnumType>::value, int> = 0> 5070 #include <type_traits> // is_same, is_constructible, is_floating_point, is_enum, underlying_type 5625 enable_if_t<std::is_enum<EnumType>::value, int> = 0>
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 1582 !std::is_enum<T>::value && !std::is_base_of<std::exception, T>::value, 1588 !std::is_enum<T>::value && std::is_base_of<std::exception, T>::value, 1595 std::is_enum<T>::value
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 3219 struct is_enum 3393 : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>, 4537 bool _IsEnum = is_enum<_Tp>::value> 4626 bool _IsEnum = is_enum<_Tp>::value> 23329 template<typename _Tp, bool = is_enum<_Tp>::value> [all...] |