Home
last modified time | relevance | path

Searched refs:bool_constant (Results 1 – 25 of 44) sorted by relevance

12

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/Headers/
Dsystem-header-simulation.h14 using bool_constant = integral_constant<bool, B>; variable
15 using true_type = bool_constant<true>;
16 using false_type = bool_constant<false>;
/external/libcxx/test/std/utilities/meta/meta.help/
Dbool_constant.pass.cpp22 typedef std::bool_constant<true> _t; in main()
28 typedef std::bool_constant<false> _f; in main()
/external/llvm-project/libcxx/test/std/utilities/meta/meta.help/
Dbool_constant.pass.cpp21 typedef std::bool_constant<true> _t; in main()
27 typedef std::bool_constant<false> _f; in main()
/external/pigweed/pw_minimal_cpp_stdlib/public/internal/
Dtype_traits.h53 using bool_constant = integral_constant<bool, kValue>; variable
55 using true_type = bool_constant<true>;
56 using false_type = bool_constant<false>;
150 : bool_constant<is_integral_v<T> || is_floating_point_v<T>> {};
201 struct is_unsigned : bool_constant<!is_signed_v<T>> {};
213 struct negation : bool_constant<!bool(T::value)> {};
423 : bool_constant<(decltype(impl::returnable<To>(0))() &&
/external/pigweed/pw_minimal_cpp_stdlib/public/
Dtype_traits53 using bool_constant = integral_constant<bool, kValue>;
55 using true_type = bool_constant<true>;
56 using false_type = bool_constant<false>;
150 : bool_constant<is_integral_v<T> || is_floating_point_v<T>> {};
201 struct is_unsigned : bool_constant<!is_signed_v<T>> {};
213 struct negation : bool_constant<!bool(T::value)> {};
423 : bool_constant<(decltype(impl::returnable<To>(0))() &&
/external/pigweed/pw_polyfill/standard_library_public/pw_polyfill/standard_library/
Dtype_traits.h71 using bool_constant = integral_constant<bool, value>; variable
77 struct negation : bool_constant<!bool(value::value)> {};
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp183 struct bool_constant struct
192 using SameSize = bool_constant<sizeof...(A) == sizeof...(B)>;
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp183 struct bool_constant struct
192 using SameSize = bool_constant<sizeof...(A) == sizeof...(B)>;
/external/python/pybind11/include/pybind11/detail/
Dcommon.h510 template <bool B> using bool_constant = std::integral_constant<bool, B>;
511 template <typename T> struct negation : bool_constant<!T::value> { };
526 template <class... Ts> using all_of = bool_constant<(Ts::value && ...)>;
527 template <class... Ts> using any_of = bool_constant<(Ts::value || ...)>;
624 template <typename Base, typename Derived> using is_strict_base_of = bool_constant<
630 template <typename Base, typename Derived> using is_accessible_base_of = bool_constant<
664 template <typename T> using is_function_pointer = bool_constant<
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1476 struct bool_constant {
1477 typedef bool_constant<bool_value> type;
1480 template <bool bool_value> const bool bool_constant<bool_value>::value;
1482 typedef bool_constant<false> false_type;
1483 typedef bool_constant<true> true_type;
Dgtest-internal.h930 : public bool_constant<
/external/pigweed/pw_kvs/public/pw_kvs/internal/
Dspan_traits.h91 : public std::bool_constant<
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/internal/
Dgmock-internal-utils.h213 : public bool_constant<
245 : public bool_constant<sizeof(From) <= sizeof(To)> {}; // NOLINT
/external/python/pybind11/include/pybind11/
Deigen.h485 template <typename S> using stride_ctor_default = bool_constant<
490 template <typename S> using stride_ctor_dual = bool_constant<
494 template <typename S> using stride_ctor_outer = bool_constant<
498 template <typename S> using stride_ctor_inner = bool_constant<
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/
Dgtest-port.h1923 struct bool_constant {
1924 typedef bool_constant<bool_value> type;
1927 template <bool bool_value> const bool bool_constant<bool_value>::value;
1929 typedef bool_constant<false> false_type;
1930 typedef bool_constant<true> true_type;
Dgtest-internal.h895 : public bool_constant<
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h2212 struct bool_constant {
2213 typedef bool_constant<bool_value> type;
2216 template <bool bool_value> const bool bool_constant<bool_value>::value;
2218 typedef bool_constant<false> false_type;
2219 typedef bool_constant<true> true_type;
Dgtest-internal.h904 : public bool_constant<
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-port.h2342 struct bool_constant {
2343 typedef bool_constant<bool_value> type;
2346 template <bool bool_value> const bool bool_constant<bool_value>::value;
2348 typedef bool_constant<false> false_type;
2349 typedef bool_constant<true> true_type;
Dgtest-internal.h915 : public bool_constant<
/external/skqp/include/private/
DSkTLogic.h25 template <bool B> using bool_constant = std::integral_constant<bool, B>; variable
/external/fmtlib/include/fmt/
Dostream.h78 static bool_constant<!std::is_same<decltype(std::declval<test_stream<Char>&>()
/external/mesa3d/src/compiler/glsl/
Dast.h263 int bool_constant; member
/external/llvm-project/libcxx/docs/
DCxx1zStatusPaperStatus.csv15 "`N4389 <https://wg21.link/n4389>`__","LWG","bool_constant","Lenexa","|Complete|","3.7"
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-internal.h858 : public bool_constant<

12