Home
last modified time | relevance | path

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

/external/clang/tools/libclang/
DCXType.cpp122 if (const DecayedType *DT = T->getAs<DecayedType>()) { in MakeCXType()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h4282 AST_TYPE_MATCHER(DecayedType, decayedType);
4285 AST_MATCHER_P(DecayedType, hasDecayedType, internal::Matcher<QualType>, in AST_MATCHER_P() argument
/external/clang/lib/AST/
DTypePrinter.cpp497 void TypePrinter::printDecayedBefore(const DecayedType *T, raw_ostream &OS) { in printDecayedBefore()
501 void TypePrinter::printDecayedAfter(const DecayedType *T, raw_ostream &OS) { in printDecayedAfter()
DType.cpp426 if (const DecayedType *DT = getAs<DecayedType>()) in getPointeeType()
904 QualType VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
DMicrosoftMangle.cpp1433 if (const auto *DT = T->getAs<DecayedType>()) { in mangleArgumentType()
DDecl.cpp2298 if (const auto *DT = dyn_cast<DecayedType>(T)) in getOriginalType()
DASTContext.cpp2416 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical); in getDecayedType()
/external/clang/include/clang/AST/
DRecursiveASTVisitor.h864 DEF_TRAVERSE_TYPE(DecayedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1051 DEF_TRAVERSE_TYPELOC(DecayedType,
DTypeLoc.h1096 AdjustedTypeLoc, DecayedTypeLoc, DecayedType> {
DType.h2230 class DecayedType : public AdjustedType {
2232 DecayedType(QualType OriginalType, QualType DecayedPtr, QualType CanonicalPtr)
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp1636 type = cast<DecayedType>(ty)->getPointeeType(); in EmitVariablyModifiedType()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp4188 TEST(TypeMatching, DecayedType) { in TEST() argument
/external/clang/lib/Serialization/
DASTWriter.cpp122 void ASTTypeWriter::VisitDecayedType(const DecayedType *T) { in VisitDecayedType()
DASTReader.cpp5228 if (!isa<DecayedType>(DT)) in readTypeRecord()
/external/clang/lib/Sema/
DSemaExpr.cpp13135 QTy = cast<DecayedType>(Ty)->getPointeeType(); in tryCaptureVariable()