Home
last modified time | relevance | path

Searched refs:DecayedType (Results 1 – 16 of 16) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DTypePrinter.cpp557 void TypePrinter::printDecayedBefore(const DecayedType *T, raw_ostream &OS) { in printDecayedBefore()
562 void TypePrinter::printDecayedAfter(const DecayedType *T, raw_ostream &OS) { in printDecayedAfter()
H A DODRHash.cpp712 void VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DType.cpp516 if (const auto *DT = getAs<DecayedType>()) in getPointeeType()
978 QualType VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DMicrosoftMangle.cpp1720 if (const auto *DT = T->getAs<DecayedType>()) { in mangleArgumentType()
H A DDecl.cpp2547 if (const auto *DT = dyn_cast<DecayedType>(T)) in getOriginalType()
H A DASTImporter.cpp324 ExpectedType VisitDecayedType(const DecayedType *T);
1018 ExpectedType ASTNodeImporter::VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DASTContext.cpp2927 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical); in getDecayedType()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h2622 class DecayedType : public AdjustedType {
2626 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
6826 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
6836 QualType DecayedType::getPointeeType() const {
H A DRecursiveASTVisitor.h967 DEF_TRAVERSE_TYPE(DecayedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1177 DEF_TRAVERSE_TYPELOC(DecayedType,
H A DTypeLoc.h1164 AdjustedTypeLoc, DecayedTypeLoc, DecayedType> {
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp837 const AstTypeMatcher<DecayedType> decayedType;
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5763 extern const AstTypeMatcher<DecayedType> decayedType;
5766 AST_MATCHER_P(DecayedType, hasDecayedType, internal::Matcher<QualType>, in AST_MATCHER_P() argument
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp5918 if (!isa<DecayedType>(DT)) in readTypeRecord()
10492 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
10493 FirstParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
10505 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
10506 SecondParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
11255 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
11256 FirstParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
11267 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
11268 SecondParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
H A DASTWriter.cpp200 void ASTTypeWriter::VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2063 type = cast<DecayedType>(ty)->getPointeeType(); in EmitVariablyModifiedType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp3939 T = cast<DecayedType>(Ty)->getPointeeType(); in captureVariablyModifiedType()