Home
last modified time | relevance | path

Searched refs:is_enum (Results 26 - 50 of 50) sorted by relevance

12

/third_party/gn/src/base/numerics/
H A Dsafe_conversions_impl.h580 template <typename T, bool is_enum = std::is_enum<T>::value>
/third_party/node/deps/v8/src/base/
H A Dsafe_conversions_impl.h560 template <typename T, bool is_enum = std::is_enum<T>::value>
/third_party/node/deps/v8/src/objects/
H A Dobjects-inl.h150 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 Dsafe_conversions_impl.h603 template <typename T, bool is_enum = std::is_enum<T>::value>
/third_party/rust/crates/clap/clap_derive/src/
H A Ditem.rs48 is_enum: bool,
272 is_enum: false, in new()
493 self.is_enum = true in push_attrs()
/third_party/gn/src/base/
H A Dlogging.h489 std::is_enum<T>::value,
/third_party/json/include/nlohmann/detail/conversions/
H A Dfrom_json.hpp18 #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 Dto_json.hpp15 #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 Dtrace-event.h430 std::is_integral<T>::value || std::is_enum<T>::value, void>::type
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dty.rs137 pub fn is_enum(&self) -> bool { in is_enum() functions
H A Dcontext.rs2539 if let (Some(name), true) = (ty.name(), ty.is_enum()) { in compute_enum_typedef_combos()
/third_party/protobuf/src/google/protobuf/
H A Dmap_entry_lite.h75 template <bool is_enum, bool is_message, bool is_stringlike, typename T>
/third_party/json/include/nlohmann/detail/
H A Dmacro_scope.hpp211 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 Dassembler-arm64-inl.h198 STATIC_ASSERT(std::is_integral<T>::value || std::is_enum<T>::value); in immediate_for()
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-ir.cc140 T, typename std::enable_if<std::is_enum<T>::value>::type>
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceOperand.h464 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 Dtime.h115 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 Dhash.h276 typename std::enable_if<std::is_enum<Enum>::value, H>::type AbslHashValue( in AbslHashValue()
/third_party/json/tests/thirdparty/doctest/
H A Ddoctest.h810 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 Dcode-assembler.h543 typename = typename std::enable_if<std::is_enum<E>::value>::type>
/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dmod.rs965 inner_item.expect_type().canonical_type(ctx).is_enum() in codegen()
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp76 #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 Djson.hpp168 #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 Dcatch.hpp1582 !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 Dstylo.hpp3219 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...]

Completed in 136 milliseconds

12