/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Expr.cpp | 2620 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in isUnusedResultAWarning() 3439 return cast<GenericSelectionExpr>(this)->getResultExpr() in isConstantInitializer() 3735 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in HasSideEffects() 3989 } else if (const GenericSelectionExpr *GE = in isNullPointerConstant() 3990 dyn_cast<GenericSelectionExpr>(this)) { in isNullPointerConstant() 4385 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr 4412 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr 4440 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr 4465 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr 4490 GenericSelectionExpr::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs) in GenericSelectionExpr() function in GenericSelectionExpr [all …]
|
H A D | ExprClassification.cpp | 323 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal() 325 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
|
H A D | JSONNodeDumper.cpp | 202 void JSONNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit() 1490 const GenericSelectionExpr *GSE) { in VisitGenericSelectionExpr()
|
H A D | StmtProfile.cpp | 1607 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr() 1609 for (const GenericSelectionExpr::ConstAssociation Assoc : in VisitGenericSelectionExpr()
|
H A D | ASTStructuralEquivalence.cpp | 251 bool IsStmtEquivalent(const GenericSelectionExpr *E1, in IsStmtEquivalent() 252 const GenericSelectionExpr *E2) { in IsStmtEquivalent()
|
H A D | ComputeDependence.cpp | 715 ExprDependence clang::computeDependence(GenericSelectionExpr *E, in computeDependence()
|
H A D | StmtPrinter.cpp | 1515 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr() 1522 for (const GenericSelectionExpr::Association &Assoc : Node->associations()) { in VisitGenericSelectionExpr()
|
H A D | TextNodeDumper.cpp | 476 void TextNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit() 1465 void TextNodeDumper::VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
|
H A D | ASTImporter.cpp | 576 ExpectedStmt VisitGenericSelectionExpr(GenericSelectionExpr *E); 7358 ASTNodeImporter::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr() 7387 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr() 7392 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr() 7399 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr() 7404 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtDataCollectors.td | 190 class GenericSelectionExpr { 192 for (const GenericSelectionExpr::ConstAssociation Assoc : S->associations()) {
|
H A D | ComputeDependence.h | 92 class GenericSelectionExpr; variable 185 ExprDependence computeDependence(GenericSelectionExpr *E,
|
H A D | EvaluatedExprVisitor.h | 65 void VisitGenericSelectionExpr(PTR(GenericSelectionExpr) E) { in VisitGenericSelectionExpr()
|
H A D | TextNodeDumper.h | 196 void Visit(const GenericSelectionExpr::ConstAssociation &A); 282 void VisitGenericSelectionExpr(const GenericSelectionExpr *E);
|
H A D | IgnoreExpr.h | 159 else if (auto *GSE = dyn_cast<GenericSelectionExpr>(E)) { in IgnoreParensSingleStep()
|
H A D | JSONNodeDumper.h | 209 void Visit(const GenericSelectionExpr::ConstAssociation &A); 305 void VisitGenericSelectionExpr(const GenericSelectionExpr *GSE);
|
H A D | ASTNodeTraverser.h | 161 if (isa<DeclStmt>(S) || isa<GenericSelectionExpr>(S) || 259 void Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit() 835 void VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
|
H A D | Expr.h | 5904 class GenericSelectionExpr final 5906 private llvm::TrailingObjects<GenericSelectionExpr, Stmt *, 5985 friend class GenericSelectionExpr; variable 6015 friend class GenericSelectionExpr; variable 6060 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc, 6070 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc, 6079 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc, 6089 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc, 6097 explicit GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs); 6102 static GenericSelectionExpr * [all …]
|
H A D | RecursiveASTVisitor.h | 2612 DEF_TRAVERSE_STMT(GenericSelectionExpr, { 2618 for (const GenericSelectionExpr::Association Assoc : S->associations()) {
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaPseudoObject.cpp | 138 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild() 148 for (const GenericSelectionExpr::Association assoc : in rebuild() 158 return GenericSelectionExpr::Create( in rebuild() 162 return GenericSelectionExpr::Create( in rebuild()
|
H A D | SemaExceptionSpec.cpp | 1331 if (cast<GenericSelectionExpr>(S)->isResultDependent()) in canThrow() 1333 return canThrow(cast<GenericSelectionExpr>(S)->getResultExpr()); in canThrow()
|
H A D | SemaExprObjC.cpp | 4569 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast() 4578 for (const GenericSelectionExpr::Association assoc : gse->associations()) { in stripARCUnbridgedCast() 4586 return GenericSelectionExpr::Create( in stripARCUnbridgedCast()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 99 def GenericSelectionExpr : StmtNode<Expr>;
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ExprMutationAnalyzer.cpp | 150 AST_MATCHER_P(GenericSelectionExpr, hasControllingExpr, in AST_MATCHER_P() argument
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Compiler.h | 174 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E);
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprComplex.cpp | 117 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|