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 D | is_aggregate.pass.cpp | 22 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 D | aggregate.pass.cpp | 20 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 D | is_aggregate.h | 24 is_aggregate : public integral_constant<bool, __is_aggregate(_Tp)> {}; struct
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | type_traits | 107 template <class T> struct is_aggregate; // C++17 315 = is_aggregate<T>::value; // C++17 444 #include <__type_traits/is_aggregate.h>
|
| H A D | CMakeLists.txt | 535 __type_traits/is_aggregate.h
|
| H A D | module.modulemap.in | 1125 module is_aggregate { private header "__type_traits/is_aggregate.h" }
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 843 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 D | BUILD.gn | 597 "__type_traits/is_aggregate.h",
|
| /llvm-project-15.0.7/libcxx/docs/Status/ |
| H A D | Cxx17Issues.csv | 312 "`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 D | StdSymbolMap.inc | 493 SYMBOL(is_aggregate, std::, <type_traits>)
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | type-traits.cpp | 523 void is_aggregate() in is_aggregate() function
|