HomeSort by: relevance | last modified time | path
    Searched refs:DecayedType (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 155 if (const DecayedType *DT = T->getAs<DecayedType>()) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
TypePrinter.cpp 571 void TypePrinter::printDecayedBefore(const DecayedType *T, raw_ostream &OS) {
576 void TypePrinter::printDecayedAfter(const DecayedType *T, raw_ostream &OS) {
ODRHash.cpp 789 void VisitDecayedType(const DecayedType *T) {
Type.cpp 636 if (const auto *DT = getAs<DecayedType>())
1113 QualType VisitDecayedType(const DecayedType *T) {
Decl.cpp 2737 if (const auto *DT = dyn_cast<DecayedType>(T))
MicrosoftMangle.cpp 2068 if (const auto *DT = T->getAs<DecayedType>()) {
ASTImporter.cpp 336 ExpectedType VisitDecayedType(const DecayedType *T);
1086 ExpectedType ASTNodeImporter::VisitDecayedType(const DecayedType *T) {
ASTContext.cpp 3269 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 2697 class DecayedType : public AdjustedType {
2701 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
7240 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
7250 QualType DecayedType::getPointeeType() const {
TypeLoc.h 1188 AdjustedTypeLoc, DecayedTypeLoc, DecayedType> {
RecursiveASTVisitor.h 914 DEF_TRAVERSE_TYPE(DecayedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1160 DEF_TRAVERSE_TYPELOC(DecayedType,
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 1049 const AstTypeMatcher<DecayedType> decayedType;
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 6969 /// (matcher = valueDecl(hasType(decayedType(hasDecayedType(pointerType())))))
6971 /// (matcher = expr(hasType(decayedType(hasDecayedType(pointerType())))))
6977 extern const AstTypeMatcher<DecayedType> decayedType;
6980 AST_MATCHER_P(DecayedType, hasDecayedType, internal::Matcher<QualType>,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 10566 if (const DecayedType *ParamDecayedType =
10567 FirstParamType->getAs<DecayedType>()) {
10581 if (const DecayedType *ParamDecayedType =
10582 SecondParamType->getAs<DecayedType>()) {
11268 if (const DecayedType *ParamDecayedType =
11269 FirstParamType->getAs<DecayedType>()) {
11280 if (const DecayedType *ParamDecayedType =
11281 SecondParamType->getAs<DecayedType>()) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 2156 type = cast<DecayedType>(ty)->getPointeeType();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 6369 if (auto DT = dyn_cast<DecayedType>(Type)) {
SemaExpr.cpp 4375 T = cast<DecayedType>(Ty)->getPointeeType();

Completed in 91 milliseconds