/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTNodeTraverser.h | 420 Visit(T->getUnderlyingExpr()); in VisitTypeOfExprType() 423 Visit(T->getUnderlyingExpr()); in VisitDecltypeType() 495 Visit(TL.getUnderlyingExpr()); in VisitTypeOfExprTypeLoc() 498 Visit(TL.getUnderlyingExpr()); in VisitDecltypeType()
|
H A D | TypeLoc.h | 2040 Expr* getUnderlyingExpr() const { in getUnderlyingExpr() function 2041 return getTypePtr()->getUnderlyingExpr(); in getUnderlyingExpr() 2081 Expr *getUnderlyingExpr() const { return getTypePtr()->getUnderlyingExpr(); } in getUnderlyingExpr() function
|
H A D | CanonicalType.h | 536 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(Expr *, getUnderlyingExpr)
|
H A D | TypeProperties.td | 430 let Read = [{ node->getUnderlyingExpr() }]; 461 let Read = [{ node->getUnderlyingExpr() }];
|
H A D | RecursiveASTVisitor.h | 1092 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1097 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1382 { TRY_TO(TraverseStmt(TL.getUnderlyingExpr())); }) 1390 TRY_TO(TraverseStmt(TL.getTypePtr()->getUnderlyingExpr()));
|
H A D | Type.h | 5679 Expr *getUnderlyingExpr() const { return TOExpr; } 5708 Profile(ID, Context, getUnderlyingExpr(), 5755 Expr *getUnderlyingExpr() const { return E; } 5778 Profile(ID, Context, getUnderlyingExpr());
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTStructuralEquivalence.cpp | 1129 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 1130 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 1150 cast<DecltypeType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 1151 cast<DecltypeType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
|
H A D | ODRHash.cpp | 1001 AddStmt(T->getUnderlyingExpr()); in VisitDecltypeType() 1194 AddStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType()
|
H A D | TypePrinter.cpp | 1217 if (T->getUnderlyingExpr()) in printTypeOfExprBefore() 1218 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printTypeOfExprBefore() 1237 if (T->getUnderlyingExpr()) in printDecltypeBefore() 1238 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printDecltypeBefore()
|
H A D | TypeLoc.cpp | 328 getUnderlyingExpr()->getSourceRange().getEnd()); in getLocalSourceRange()
|
H A D | Type.cpp | 3924 QualType QT = getUnderlyingExpr()->getType(); in desugar()
|
H A D | ItaniumMangle.cpp | 4347 Expr *E = T->getUnderlyingExpr(); in mangleType()
|
H A D | ASTImporter.cpp | 1415 ExpectedExpr ToExprOrErr = import(T->getUnderlyingExpr()); in VisitTypeOfExprType() 1442 ExpectedExpr ToExprOrErr = import(T->getUnderlyingExpr()); in VisitDecltypeType()
|
H A D | ASTContext.cpp | 13424 assert(Ctx.hasSameExpr(DX->getUnderlyingExpr(), DY->getUnderlyingExpr())); in getCommonNonSugarTypeNode()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateDeduction.cpp | 6588 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters() 6595 cast<DecltypeType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
|
H A D | TreeTransform.h | 6548 ExprResult E = getDerived().TransformExpr(TL.getUnderlyingExpr()); in TransformTypeOfExprType() 6558 if (getDerived().AlwaysRebuild() || E.get() != TL.getUnderlyingExpr()) { in TransformTypeOfExprType() 6608 ExprResult E = getDerived().TransformExpr(T->getUnderlyingExpr()); in TransformDecltypeType() 6618 E.get() != T->getUnderlyingExpr()) { in TransformDecltypeType()
|
H A D | SemaChecking.cpp | 7252 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr() 10165 LHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts(); in AnalyzeComparison() 10167 RHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts(); in AnalyzeComparison()
|
H A D | SemaTemplateInstantiateDecl.cpp | 1028 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) && in InstantiateTypedefNameDecl()
|
H A D | SemaExpr.cpp | 4481 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in captureVariablyModifiedType()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 2497 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
|
H A D | CGDebugInfo.cpp | 3590 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 2285 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 4728 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|