Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
1719 if (const DecayedType *ParamDecayedType = in diagnoseMismatch()
1720 FirstParamType->getAs<DecayedType>()) { in diagnoseMismatch()
1731 if (const DecayedType *ParamDecayedType = in diagnoseMismatch()
1732 SecondParamType->getAs<DecayedType>()) { in diagnoseMismatch()
H A DTypePrinter.cpp587 void TypePrinter::printDecayedBefore(const DecayedType *T, raw_ostream &OS) { in printDecayedBefore()
592 void TypePrinter::printDecayedAfter(const DecayedType *T, raw_ostream &OS) { in printDecayedAfter()
H A DODRHash.cpp944 void VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DType.cpp640 if (const auto *DT = getAs<DecayedType>()) in getPointeeType()
1123 QualType VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DMicrosoftMangle.cpp2103 if (const auto *DT = T->getAs<DecayedType>()) { in mangleFunctionArgumentType()
H A DASTContext.cpp3369 AT = new (*this, TypeAlignment) DecayedType(Orig, Decayed, Canonical); in getDecayedType()
12883 const auto *DX = cast<DecayedType>(X), *DY = cast<DecayedType>(Y); in getCommonSugarTypeNode()
H A DDecl.cpp2854 if (const auto *DT = dyn_cast<DecayedType>(T)) in getOriginalType()
H A DASTImporter.cpp373 ExpectedType VisitDecayedType(const DecayedType *T);
1136 ExpectedType ASTNodeImporter::VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTypeNodes.td84 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXType.cpp162 if (const DecayedType *DT = T->getAs<DecayedType>()) { in MakeCXType()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DType.h2837 class DecayedType : public AdjustedType {
2841 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
7479 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
7489 QualType DecayedType::getPointeeType() const {
H A DTypeProperties.td39 let Class = DecayedType in {
H A DRecursiveASTVisitor.h990 DEF_TRAVERSE_TYPE(DecayedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1239 DEF_TRAVERSE_TYPELOC(DecayedType,
H A DTypeLoc.h1220 AdjustedTypeLoc, DecayedTypeLoc, DecayedType> {
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1068 const AstTypeMatcher<DecayedType> decayedType;
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7377 extern const AstTypeMatcher<DecayedType> decayedType;
7380 AST_MATCHER_P(DecayedType, hasDecayedType, internal::Matcher<QualType>, in AST_MATCHER_P() argument
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2258 type = cast<DecayedType>(ty)->getPointeeType(); in EmitVariablyModifiedType()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDecl.cpp3424 const auto *OldParamDT = dyn_cast<DecayedType>(OldParam->getType()); in mergeParamDeclTypes()
3425 const auto *NewParamDT = dyn_cast<DecayedType>(NewParam->getType()); in mergeParamDeclTypes()
6889 if (auto DT = dyn_cast<DecayedType>(Type)) { in deduceOpenCLAddressSpace()
H A DSemaExpr.cpp4525 T = cast<DecayedType>(Ty)->getPointeeType(); in captureVariablyModifiedType()