Home
last modified time | relevance | path

Searched refs:GenericSelectionExpr (Results 1 – 25 of 38) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp4303 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4330 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4358 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4383 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4408 GenericSelectionExpr::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs) in GenericSelectionExpr() function in GenericSelectionExpr
4411 GenericSelectionExpr *GenericSelectionExpr::Create( in Create()
4419 alignof(GenericSelectionExpr)); in Create()
4425 GenericSelectionExpr *GenericSelectionExpr::Create( in Create()
4439 GenericSelectionExpr *GenericSelectionExpr::Create( in Create()
4454 GenericSelectionExpr *GenericSelectionExpr::Create( in Create()
[all …]
H A DExprClassification.cpp310 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal()
312 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
H A DJSONNodeDumper.cpp185 void JSONNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
1455 const GenericSelectionExpr *GSE) { in VisitGenericSelectionExpr()
H A DStmtProfile.cpp1596 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
1598 for (const GenericSelectionExpr::ConstAssociation Assoc : in VisitGenericSelectionExpr()
H A DASTStructuralEquivalence.cpp250 bool IsStmtEquivalent(const GenericSelectionExpr *E1, in IsStmtEquivalent()
251 const GenericSelectionExpr *E2) { in IsStmtEquivalent()
H A DTextNodeDumper.cpp362 void TextNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
1242 void TextNodeDumper::VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
H A DComputeDependence.cpp676 ExprDependence clang::computeDependence(GenericSelectionExpr *E, in computeDependence()
H A DStmtPrinter.cpp1469 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
1476 for (const GenericSelectionExpr::Association &Assoc : Node->associations()) { in VisitGenericSelectionExpr()
H A DASTImporter.cpp575 ExpectedStmt VisitGenericSelectionExpr(GenericSelectionExpr *E);
7256 ASTNodeImporter::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
7285 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr()
7290 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr()
7297 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr()
7302 return GenericSelectionExpr::Create( in VisitGenericSelectionExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h91 class GenericSelectionExpr; variable
183 ExprDependence computeDependence(GenericSelectionExpr *E,
H A DStmtDataCollectors.td190 class GenericSelectionExpr {
192 for (const GenericSelectionExpr::ConstAssociation Assoc : S->associations()) {
H A DEvaluatedExprVisitor.h65 void VisitGenericSelectionExpr(PTR(GenericSelectionExpr) E) { in VisitGenericSelectionExpr()
H A DASTNodeTraverser.h145 if (isa<DeclStmt>(S) || isa<GenericSelectionExpr>(S) ||
224 void Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
739 void VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
H A DTextNodeDumper.h190 void Visit(const GenericSelectionExpr::ConstAssociation &A);
273 void VisitGenericSelectionExpr(const GenericSelectionExpr *E);
H A DIgnoreExpr.h159 else if (auto *GSE = dyn_cast<GenericSelectionExpr>(E)) { in IgnoreParensSingleStep()
H A DJSONNodeDumper.h207 void Visit(const GenericSelectionExpr::ConstAssociation &A);
302 void VisitGenericSelectionExpr(const GenericSelectionExpr *GSE);
H A DExpr.h5693 class GenericSelectionExpr final
5695 private llvm::TrailingObjects<GenericSelectionExpr, Stmt *,
5774 friend class GenericSelectionExpr; variable
5804 friend class GenericSelectionExpr; variable
5849 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc,
5886 explicit GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs);
5891 static GenericSelectionExpr *
5900 static GenericSelectionExpr *
5908 static GenericSelectionExpr *
5917 static GenericSelectionExpr *
[all …]
H A DRecursiveASTVisitor.h2554 DEF_TRAVERSE_STMT(GenericSelectionExpr, {
2560 for (const GenericSelectionExpr::Association Assoc : S->associations()) {
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp136 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild()
146 for (const GenericSelectionExpr::Association assoc : in rebuild()
156 return GenericSelectionExpr::Create( in rebuild()
160 return GenericSelectionExpr::Create( in rebuild()
H A DSemaExceptionSpec.cpp1352 if (cast<GenericSelectionExpr>(S)->isResultDependent()) in canThrow()
1354 return canThrow(cast<GenericSelectionExpr>(S)->getResultExpr()); in canThrow()
H A DSemaExprObjC.cpp4557 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast()
4566 for (const GenericSelectionExpr::Association assoc : gse->associations()) { in stripARCUnbridgedCast()
4574 return GenericSelectionExpr::Create( in stripARCUnbridgedCast()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td99 def GenericSelectionExpr : StmtNode<Expr>;
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp150 AST_MATCHER_P(GenericSelectionExpr, hasControllingExpr, in AST_MATCHER_P() argument
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp954 const internal::VariadicDynCastAllOfMatcher<Stmt, GenericSelectionExpr>
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprComplex.cpp112 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()

12