Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DODRDiagsEmitter.cpp114 if (const DecayedType *ParamDecayedType = in diagnoseSubMismatchMethodParameters()
115 FirstParamType->getAs<DecayedType>()) { in diagnoseSubMismatchMethodParameters()
122 if (const DecayedType *ParamDecayedType = in diagnoseSubMismatchMethodParameters()
123 SecondParamType->getAs<DecayedType>()) { in diagnoseSubMismatchMethodParameters()
1729 if (const DecayedType *ParamDecayedType = in diagnoseMismatch()
1730 FirstParamType->getAs<DecayedType>()) { in diagnoseMismatch()
1741 if (const DecayedType *ParamDecayedType = in diagnoseMismatch()
1742 SecondParamType->getAs<DecayedType>()) { in diagnoseMismatch()
H A DODRHash.cpp943 void VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DTypePrinter.cpp594 void TypePrinter::printDecayedBefore(const DecayedType *T, raw_ostream &OS) { in printDecayedBefore()
609 void TypePrinter::printDecayedAfter(const DecayedType *T, raw_ostream &OS) { in printDecayedAfter()
H A DType.cpp716 if (const auto *DT = getAs<DecayedType>()) in getPointeeType()
1199 QualType VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DASTContext.cpp3711 AT = new (*this, alignof(DecayedType)) DecayedType(Orig, Decayed, Canonical); in getDecayedType()
13546 const auto *DX = cast<DecayedType>(X), *DY = cast<DecayedType>(Y); in getCommonSugarTypeNode()
H A DMicrosoftMangle.cpp2322 if (const auto *DT = T->getAs<DecayedType>()) { in mangleFunctionArgumentType()
H A DDecl.cpp2919 if (const auto *DT = dyn_cast<DecayedType>(T)) in getOriginalType()
H A DASTImporter.cpp1145 ExpectedType ASTNodeImporter::VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td85 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3354 class DecayedType : public AdjustedType {
3358 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
8601 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
8611 QualType DecayedType::getPointeeType() const {
H A DTypeProperties.td58 let Class = DecayedType in {
H A DRecursiveASTVisitor.h1009 DEF_TRAVERSE_TYPE(DecayedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1275 DEF_TRAVERSE_TYPELOC(DecayedType,
H A DTypeLoc.h1262 AdjustedTypeLoc, DecayedTypeLoc, DecayedType> {
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7683 extern const AstTypeMatcher<DecayedType> decayedType;
7686 AST_MATCHER_P(DecayedType, hasDecayedType, internal::Matcher<QualType>, in AST_MATCHER_P() argument
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2401 type = cast<DecayedType>(ty)->getPointeeType(); in EmitVariablyModifiedType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp3353 const auto *OldParamDT = dyn_cast<DecayedType>(OldParam->getType()); in mergeParamDeclTypes()
3354 const auto *NewParamDT = dyn_cast<DecayedType>(NewParam->getType()); in mergeParamDeclTypes()
6831 if (auto DT = dyn_cast<DecayedType>(Type)) { in deduceOpenCLAddressSpace()
H A DSemaExpr.cpp4412 T = cast<DecayedType>(Ty)->getPointeeType(); in captureVariablyModifiedType()