Searched refs:getUnderlyingExpr (Results 1 – 22 of 22) sorted by relevance
/external/clang/include/clang/AST/ |
D | TypeLoc.h | 1631 Expr* getUnderlyingExpr() const { in getUnderlyingExpr() function 1632 return getTypePtr()->getUnderlyingExpr(); in getUnderlyingExpr() 1661 Expr *getUnderlyingExpr() const { return getTypePtr()->getUnderlyingExpr(); } in getUnderlyingExpr() function
|
D | CanonicalType.h | 518 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(Expr *, getUnderlyingExpr)
|
D | RecursiveASTVisitor.h | 988 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 993 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1204 { TRY_TO(TraverseStmt(TL.getUnderlyingExpr())); }) 1212 TRY_TO(TraverseStmt(TL.getTypePtr()->getUnderlyingExpr()));
|
D | Type.h | 3535 Expr *getUnderlyingExpr() const { return TOExpr; } 3561 Profile(ID, Context, getUnderlyingExpr()); 3601 Expr *getUnderlyingExpr() const { return E; } 3626 Profile(ID, Context, getUnderlyingExpr());
|
/external/clang/lib/AST/ |
D | TypePrinter.cpp | 817 if (T->getUnderlyingExpr()) in printTypeOfExprBefore() 818 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printTypeOfExprBefore() 834 if (T->getUnderlyingExpr()) in printDecltypeBefore() 835 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printDecltypeBefore()
|
D | TypeLoc.cpp | 285 getUnderlyingExpr()->getSourceRange().getEnd()); in getLocalSourceRange()
|
D | ASTDumper.cpp | 349 dumpStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType() 352 dumpStmt(T->getUnderlyingExpr()); in VisitDecltypeType()
|
D | ASTImporter.cpp | 716 cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 717 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 737 cast<DecltypeType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 738 cast<DecltypeType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 1783 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); in VisitTypeOfExprType() 1800 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); in VisitDecltypeType()
|
D | Type.cpp | 2887 return getUnderlyingExpr()->getType(); in desugar()
|
D | ItaniumMangle.cpp | 3009 Expr *E = T->getUnderlyingExpr(); in mangleType()
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 976 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in VisitObjCEncodeExpr()
|
D | CodeGenFunction.cpp | 1793 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
|
D | CGDebugInfo.cpp | 2278 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
|
/external/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 4914 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters() 4921 cast<DecltypeType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
|
D | TreeTransform.h | 5200 ExprResult E = getDerived().TransformExpr(TL.getUnderlyingExpr()); in TransformTypeOfExprType() 5210 E.get() != TL.getUnderlyingExpr()) { in TransformTypeOfExprType() 5258 ExprResult E = getDerived().TransformExpr(T->getUnderlyingExpr()); in TransformDecltypeType() 5268 E.get() != T->getUnderlyingExpr()) { in TransformDecltypeType()
|
D | SemaTemplateInstantiateDecl.cpp | 491 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) && in InstantiateTypedefNameDecl()
|
D | SemaChecking.cpp | 5125 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr()
|
D | SemaExpr.cpp | 3939 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in captureVariablyModifiedType()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 2190 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 3902 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
D | RewriteModernObjC.cpp | 2279 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 4743 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 291 Record.AddStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType() 302 Record.AddStmt(T->getUnderlyingExpr()); in VisitDecltypeType()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1634 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU)); in VisitTypeOfExprTypeLoc() 1682 if (Expr *E = TL.getUnderlyingExpr()) in VisitDecltypeTypeLoc()
|