Home
last modified time | relevance | path

Searched refs:Decayed (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dcnstr_with_any.compile.pass.cpp36 class Decayed = typename std::decay<ValueType>::type,
38 !std::is_same<Decayed, any>::value &&
39 std::is_copy_constructible<Decayed>::value
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFormatVariadicDetails.h63 using Decayed = std::decay_t<T>;
64 typedef void (*Signature_format)(const Decayed &, llvm::raw_ostream &,
73 (sizeof(test<llvm::format_provider<Decayed>>(nullptr)) == 1);
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DVirtualNearMissCheck.cpp125 if (const auto *Decayed = Type->getAs<DecayedType>()) in getDecayedType() local
126 return Decayed->getDecayedType(); in getDecayedType()
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DTypeBitCodes.def52 TYPE_BIT_CODE(Decayed, DECAYED, 41)
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h2770 return T->getTypeClass() == Adjusted || T->getTypeClass() == Decayed;
2779 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
2786 static bool classof(const Type *T) { return T->getTypeClass() == Decayed; }
7386 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
7395 QualType Decayed = getDecayedType();
7396 (void)AttributedType::stripOuterNullability(Decayed);
7397 return cast<PointerType>(Decayed)->getPointeeType();
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp2289 case Type::Decayed: in getTypeInfoImpl()
3335 QualType Decayed; in getDecayedType() local
3343 Decayed = getArrayDecayedType(T); in getDecayedType()
3350 Decayed = getPointerType(T); in getDecayedType()
3353 AdjustedType::Profile(ID, T, Decayed); in getDecayedType()
3359 QualType Canonical = getCanonicalType(Decayed); in getDecayedType()
3365 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical); in getDecayedType()
H A DASTStructuralEquivalence.cpp706 case Type::Decayed: in IsStructurallyEquivalent()
H A DTypePrinter.cpp274 case Type::Decayed: in canPrefixQualifiers()
H A DItaniumMangle.cpp2287 case Type::Decayed: in mangleUnresolvedTypeOrSimpleId()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2231 case Type::Decayed: in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3325 case Type::Decayed: in UnwrapTypeForDebugInfo()
3496 case Type::Decayed: in CreateTypeNode()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4202 case clang::Type::Decayed: in GetTypeClass()
5120 case clang::Type::Decayed: in GetEncoding()
5274 case clang::Type::Decayed: in GetFormat()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp4519 case Type::Decayed: in captureVariablyModifiedType()