/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/Headers/ |
D | system-header-simulation.h | 14 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/ |
D | bool_constant.pass.cpp | 22 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/ |
D | bool_constant.pass.cpp | 21 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/ |
D | type_traits.h | 53 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/ |
D | type_traits | 53 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/ |
D | type_traits.h | 71 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/ |
D | sizeofpack.cpp | 183 struct bool_constant struct 192 using SameSize = bool_constant<sizeof...(A) == sizeof...(B)>;
|
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | sizeofpack.cpp | 183 struct bool_constant struct 192 using SameSize = bool_constant<sizeof...(A) == sizeof...(B)>;
|
/external/python/pybind11/include/pybind11/detail/ |
D | common.h | 510 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/ |
D | gtest-port.h | 1476 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;
|
D | gtest-internal.h | 930 : public bool_constant<
|
/external/pigweed/pw_kvs/public/pw_kvs/internal/ |
D | span_traits.h | 91 : public std::bool_constant<
|
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/internal/ |
D | gmock-internal-utils.h | 213 : public bool_constant< 245 : public bool_constant<sizeof(From) <= sizeof(To)> {}; // NOLINT
|
/external/python/pybind11/include/pybind11/ |
D | eigen.h | 485 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/ |
D | gtest-port.h | 1923 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;
|
D | gtest-internal.h | 895 : public bool_constant<
|
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 2212 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;
|
D | gtest-internal.h | 904 : public bool_constant<
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-port.h | 2342 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;
|
D | gtest-internal.h | 915 : public bool_constant<
|
/external/skqp/include/private/ |
D | SkTLogic.h | 25 template <bool B> using bool_constant = std::integral_constant<bool, B>; variable
|
/external/fmtlib/include/fmt/ |
D | ostream.h | 78 static bool_constant<!std::is_same<decltype(std::declval<test_stream<Char>&>()
|
/external/mesa3d/src/compiler/glsl/ |
D | ast.h | 263 int bool_constant; member
|
/external/llvm-project/libcxx/docs/ |
D | Cxx1zStatusPaperStatus.csv | 15 "`N4389 <https://wg21.link/n4389>`__","LWG","bool_constant","Lenexa","|Complete|","3.7"
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-internal.h | 858 : public bool_constant<
|