Home
last modified time | relevance | path

Searched refs:is_aggregate (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_aggregate.pass.cpp22 static_assert( std::is_aggregate<T>::value, ""); in test_true()
23 static_assert( std::is_aggregate<const T>::value, ""); in test_true()
24 static_assert( std::is_aggregate<volatile T>::value, ""); in test_true()
25 static_assert( std::is_aggregate<const volatile T>::value, ""); in test_true()
35 static_assert(!std::is_aggregate<T>::value, ""); in test_false()
36 static_assert(!std::is_aggregate<const T>::value, ""); in test_false()
37 static_assert(!std::is_aggregate<volatile T>::value, ""); in test_false()
38 static_assert(!std::is_aggregate<const volatile T>::value, ""); in test_false()
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/array/
H A Daggregate.pass.cpp20 static_assert(std::is_aggregate<std::array<T, 0> >::value, ""); in check_aggregate()
21 static_assert(std::is_aggregate<std::array<T, 1> >::value, ""); in check_aggregate()
22 static_assert(std::is_aggregate<std::array<T, 2> >::value, ""); in check_aggregate()
23 static_assert(std::is_aggregate<std::array<T, 3> >::value, ""); in check_aggregate()
24 static_assert(std::is_aggregate<std::array<T, 4> >::value, ""); in check_aggregate()
/llvm-project-15.0.7/libcxx/include/__type_traits/
H A Dis_aggregate.h24 is_aggregate : public integral_constant<bool, __is_aggregate(_Tp)> {}; struct
/llvm-project-15.0.7/libcxx/include/
H A Dtype_traits107 template <class T> struct is_aggregate; // C++17
315 = is_aggregate<T>::value; // C++17
444 #include <__type_traits/is_aggregate.h>
H A DCMakeLists.txt535 __type_traits/is_aggregate.h
H A Dmodule.modulemap.in1125 module is_aggregate { private header "__type_traits/is_aggregate.h" }
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp843 bool is_aggregate = target->GetCompilerType().IsAggregateType(); in DumpValue() local
884 if (is_aggregate && was_plain_var) { in DumpValue()
891 if (is_aggregate && in DumpValue()
/llvm-project-15.0.7/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn597 "__type_traits/is_aggregate.h",
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx17Issues.csv312 "`2911 <https://wg21.link/LWG2911>`__","An is_aggregate type trait is needed","Kona","|Complete|",""
/llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc493 SYMBOL(is_aggregate, std::, <type_traits>)
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dtype-traits.cpp523 void is_aggregate() in is_aggregate() function