/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | ASTNodeTraverser.h | 377 Visit(T->getUnderlyingExpr()); in VisitTypeOfExprType() 380 Visit(T->getUnderlyingExpr()); in VisitDecltypeType()
|
H A D | TypeLoc.h | 1993 Expr* getUnderlyingExpr() const { in getUnderlyingExpr() function 1994 return getTypePtr()->getUnderlyingExpr(); in getUnderlyingExpr() 2034 Expr *getUnderlyingExpr() const { return getTypePtr()->getUnderlyingExpr(); } in getUnderlyingExpr() function
|
H A D | TypeProperties.td | 393 let Read = [{ node->getUnderlyingExpr() }]; 424 let Read = [{ node->getUnderlyingExpr() }];
|
H A D | CanonicalType.h | 536 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(Expr *, getUnderlyingExpr)
|
H A D | RecursiveASTVisitor.h | 1067 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1072 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1341 { TRY_TO(TraverseStmt(TL.getUnderlyingExpr())); }) 1349 TRY_TO(TraverseStmt(TL.getTypePtr()->getUnderlyingExpr()));
|
H A D | Type.h | 4617 Expr *getUnderlyingExpr() const { return TOExpr; } 4649 Profile(ID, Context, getUnderlyingExpr(), 4705 Expr *getUnderlyingExpr() const { return E; } 4730 Profile(ID, Context, getUnderlyingExpr());
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | ASTStructuralEquivalence.cpp | 1027 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 1028 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 1048 cast<DecltypeType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 1049 cast<DecltypeType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
|
H A D | TypePrinter.cpp | 1109 if (T->getUnderlyingExpr()) in printTypeOfExprBefore() 1110 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printTypeOfExprBefore() 1129 if (T->getUnderlyingExpr()) in printDecltypeBefore() 1130 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printDecltypeBefore()
|
H A D | ODRHash.cpp | 999 AddStmt(T->getUnderlyingExpr()); in VisitDecltypeType() 1210 AddStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType()
|
H A D | TypeLoc.cpp | 327 getUnderlyingExpr()->getSourceRange().getEnd()); in getLocalSourceRange()
|
H A D | Type.cpp | 3508 QualType QT = getUnderlyingExpr()->getType(); in desugar()
|
H A D | ItaniumMangle.cpp | 3953 Expr *E = T->getUnderlyingExpr(); in mangleType()
|
H A D | ASTImporter.cpp | 1369 ExpectedExpr ToExprOrErr = import(T->getUnderlyingExpr()); in VisitTypeOfExprType() 1396 ExpectedExpr ToExprOrErr = import(T->getUnderlyingExpr()); in VisitDecltypeType()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaTemplateDeduction.cpp | 6146 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters() 6153 cast<DecltypeType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
|
H A D | TreeTransform.h | 6296 ExprResult E = getDerived().TransformExpr(TL.getUnderlyingExpr()); in TransformTypeOfExprType() 6306 if (getDerived().AlwaysRebuild() || E.get() != TL.getUnderlyingExpr()) { in TransformTypeOfExprType() 6356 ExprResult E = getDerived().TransformExpr(T->getUnderlyingExpr()); in TransformDecltypeType() 6366 E.get() != T->getUnderlyingExpr()) { in TransformDecltypeType()
|
H A D | SemaChecking.cpp | 10335 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr() 13198 LHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts(); in AnalyzeComparison() 13200 RHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts(); in AnalyzeComparison()
|
H A D | SemaTemplateInstantiateDecl.cpp | 963 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) && in InstantiateTypedefNameDecl()
|
H A D | SemaExpr.cpp | 4587 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in captureVariablyModifiedType()
|
/openbsd/gnu/llvm/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 2199 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 3899 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
H A D | RewriteModernObjC.cpp | 2286 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 4731 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 2351 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
|
H A D | CGDebugInfo.cpp | 3302 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CIndex.cpp | 1822 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU)); in VisitTypeOfExprTypeLoc() 1869 if (Expr *E = TL.getUnderlyingExpr()) in VisitDecltypeTypeLoc()
|