Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DTypeBitCodes.def52 TYPE_BIT_CODE(Decayed, DECAYED, 41)
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DType.h2952 return T->getTypeClass() == Adjusted || T->getTypeClass() == Decayed;
2961 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
2968 static bool classof(const Type *T) { return T->getTypeClass() == Decayed; }
7663 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
7672 QualType Decayed = getDecayedType();
7673 (void)AttributedType::stripOuterNullability(Decayed);
7674 return cast<PointerType>(Decayed)->getPointeeType();
H A DASTContext.h1358 QualType getDecayedType(QualType Orig, QualType Decayed) const;
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp2247 case Type::Decayed: in getTypeInfoImpl()
3316 QualType ASTContext::getDecayedType(QualType Orig, QualType Decayed) const { in getDecayedType()
3318 AdjustedType::Profile(ID, Orig, Decayed); in getDecayedType()
3324 QualType Canonical = getCanonicalType(Decayed); in getDecayedType()
3330 AT = new (*this, alignof(DecayedType)) DecayedType(Orig, Decayed, Canonical); in getDecayedType()
3339 QualType Decayed; in getDecayedType() local
3347 Decayed = getArrayDecayedType(T); in getDecayedType()
3354 Decayed = getPointerType(T); in getDecayedType()
3356 return getDecayedType(T, Decayed); in getDecayedType()
13032 case Type::Decayed: { in getCommonSugarTypeNode()
H A DTypePrinter.cpp270 case Type::Decayed: in canPrefixQualifiers()
H A DASTStructuralEquivalence.cpp841 case Type::Decayed: in IsStructurallyEquivalent()
H A DItaniumMangle.cpp2400 case Type::Decayed: in mangleUnresolvedTypeOrSimpleId()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1602 case TypeLoc::Decayed: in getPointeeTypeText()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2321 case Type::Decayed: in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3487 case Type::Decayed: in UnwrapTypeForDebugInfo()
3659 case Type::Decayed: in CreateTypeNode()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4176 case clang::Type::Decayed: in GetTypeClass()
5056 case clang::Type::Decayed: in GetEncoding()
5210 case clang::Type::Decayed: in GetFormat()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp4663 case Type::Decayed: in captureVariablyModifiedType()