Home
last modified time | relevance | path

Searched refs:isTriviallyDestructible (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/utils/
DMatchers.h36 AST_MATCHER(QualType, isTriviallyDestructible) { in AST_MATCHER() argument
37 return utils::type_traits::isTriviallyDestructible(Node); in AST_MATCHER()
DTypeTraits.h32 bool isTriviallyDestructible(QualType Type);
DTypeTraits.cpp139 bool isTriviallyDestructible(QualType Type) { in isTriviallyDestructible() function
/external/llvm-project/clang-tools-extra/clang-tidy/performance/
DTriviallyDestructibleCheck.cpp44 anyOf(hasBase(unless(isTriviallyDestructible())), in registerMatchers()
46 hasType(isTriviallyDestructible())))))))))) in registerMatchers()
/external/google-fruit/include/fruit/impl/util/
Dtype_info.h55 bool isTriviallyDestructible() const;
Dtype_info.defn.h86 inline bool TypeInfo::isTriviallyDestructible() const {
/external/google-fruit/include/fruit/impl/data_structures/
Dfixed_size_allocator.defn.h50 if (!typeId.type_info->isTriviallyDestructible()) { in addType()