Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadicDetails.h64 using Decayed = std::decay_t<T>;
65 typedef void (*Signature_format)(const Decayed &, llvm::raw_ostream &,
74 (sizeof(test<llvm::format_provider<Decayed>>(nullptr)) == 1);
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DTypeBitCodes.def52 TYPE_BIT_CODE(Decayed, DECAYED, 41)
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3349 return T->getTypeClass() == Adjusted || T->getTypeClass() == Decayed;
3358 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
3365 static bool classof(const Type *T) { return T->getTypeClass() == Decayed; }
8603 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
8612 QualType Decayed = getDecayedType();
8613 (void)AttributedType::stripOuterNullability(Decayed);
8614 return cast<PointerType>(Decayed)->getPointeeType();
H A DASTContext.h1416 QualType getDecayedType(QualType Orig, QualType Decayed) const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp2287 case Type::Decayed: in getTypeInfoImpl()
3697 QualType ASTContext::getDecayedType(QualType Orig, QualType Decayed) const { in getDecayedType()
3699 AdjustedType::Profile(ID, Orig, Decayed); in getDecayedType()
3705 QualType Canonical = getCanonicalType(Decayed); in getDecayedType()
3711 AT = new (*this, alignof(DecayedType)) DecayedType(Orig, Decayed, Canonical); in getDecayedType()
3720 QualType Decayed; in getDecayedType() local
3728 Decayed = getArrayDecayedType(T); in getDecayedType()
3735 Decayed = getPointerType(T); in getDecayedType()
3737 return getDecayedType(T, Decayed); in getDecayedType()
13545 case Type::Decayed: { in getCommonSugarTypeNode()
H A DASTStructuralEquivalence.cpp851 case Type::Decayed: in IsStructurallyEquivalent()
H A DTypePrinter.cpp270 case Type::Decayed: in canPrefixQualifiers()
H A DItaniumMangle.cpp2399 case Type::Decayed: in mangleUnresolvedTypeOrSimpleId()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1874 case TypeLoc::Decayed: in getPointeeTypeText()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2400 case Type::Decayed: in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3637 case Type::Decayed: in UnwrapTypeForDebugInfo()
3811 case Type::Decayed: in CreateTypeNode()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4216 case clang::Type::Decayed: in GetTypeClass()
5123 case clang::Type::Decayed: in GetEncoding()
5283 case clang::Type::Decayed: in GetFormat()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp4411 case Type::Decayed: in captureVariablyModifiedType()