Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTypeNodes.td83 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXType.cpp155 if (const DecayedType *DT = T->getAs<DecayedType>()) { in MakeCXType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h2697 class DecayedType : public AdjustedType {
2701 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
7240 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
7250 QualType DecayedType::getPointeeType() const {
H A DTypeProperties.td39 let Class = DecayedType in {
H A DRecursiveASTVisitor.h914 DEF_TRAVERSE_TYPE(DecayedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1160 DEF_TRAVERSE_TYPELOC(DecayedType,
H A DTypeLoc.h1188 AdjustedTypeLoc, DecayedTypeLoc, DecayedType> {
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DTypePrinter.cpp571 void TypePrinter::printDecayedBefore(const DecayedType *T, raw_ostream &OS) { in printDecayedBefore()
576 void TypePrinter::printDecayedAfter(const DecayedType *T, raw_ostream &OS) { in printDecayedAfter()
H A DODRHash.cpp789 void VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DType.cpp636 if (const auto *DT = getAs<DecayedType>()) in getPointeeType()
1113 QualType VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DMicrosoftMangle.cpp2068 if (const auto *DT = T->getAs<DecayedType>()) { in mangleFunctionArgumentType()
H A DDecl.cpp2737 if (const auto *DT = dyn_cast<DecayedType>(T)) in getOriginalType()
H A DASTImporter.cpp336 ExpectedType VisitDecayedType(const DecayedType *T);
1086 ExpectedType ASTNodeImporter::VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
H A DASTContext.cpp3269 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical); in getDecayedType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1049 const AstTypeMatcher<DecayedType> decayedType;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6977 extern const AstTypeMatcher<DecayedType> decayedType;
6980 AST_MATCHER_P(DecayedType, hasDecayedType, internal::Matcher<QualType>, in AST_MATCHER_P() argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp10566 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
10567 FirstParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
10581 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
10582 SecondParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
11268 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
11269 FirstParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
11280 if (const DecayedType *ParamDecayedType = in diagnoseOdrViolations()
11281 SecondParamType->getAs<DecayedType>()) { in diagnoseOdrViolations()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2156 type = cast<DecayedType>(ty)->getPointeeType(); in EmitVariablyModifiedType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDecl.cpp6369 if (auto DT = dyn_cast<DecayedType>(Type)) { in deduceOpenCLAddressSpace()
H A DSemaExpr.cpp4375 T = cast<DecayedType>(Ty)->getPointeeType(); in captureVariablyModifiedType()