Home
last modified time | relevance | path

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

12

/openbsd/gnu/llvm/clang/include/clang/AST/
H A DStmtDataCollectors.td190 class GenericSelectionExpr {
192 for (const GenericSelectionExpr::ConstAssociation Assoc : S->associations()) {
H A DComputeDependence.h91 class GenericSelectionExpr; variable
183 ExprDependence computeDependence(GenericSelectionExpr *E,
H A DEvaluatedExprVisitor.h65 void VisitGenericSelectionExpr(PTR(GenericSelectionExpr) E) { in VisitGenericSelectionExpr()
H A DTextNodeDumper.h190 void Visit(const GenericSelectionExpr::ConstAssociation &A);
264 void VisitGenericSelectionExpr(const GenericSelectionExpr *E);
H A DASTNodeTraverser.h145 if (isa<DeclStmt>(S) || isa<GenericSelectionExpr>(S) ||
224 void Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
733 void VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
H A DIgnoreExpr.h158 else if (auto *GSE = dyn_cast<GenericSelectionExpr>(E)) { in IgnoreParensSingleStep()
H A DJSONNodeDumper.h207 void Visit(const GenericSelectionExpr::ConstAssociation &A);
293 void VisitGenericSelectionExpr(const GenericSelectionExpr *GSE);
H A DExpr.h5631 class GenericSelectionExpr final
5633 private llvm::TrailingObjects<GenericSelectionExpr, Stmt *,
5675 friend class GenericSelectionExpr; variable
5705 friend class GenericSelectionExpr; variable
5749 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc,
5758 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc,
5766 explicit GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs);
5770 static GenericSelectionExpr *
5778 static GenericSelectionExpr *
5785 static GenericSelectionExpr *CreateEmpty(const ASTContext &Context,
H A DRecursiveASTVisitor.h2555 DEF_TRAVERSE_STMT(GenericSelectionExpr, {
2557 for (const GenericSelectionExpr::Association Assoc : S->associations()) {
/openbsd/gnu/llvm/clang/lib/AST/
H A DExpr.cpp4304 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4329 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4352 GenericSelectionExpr::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs) in GenericSelectionExpr() function in GenericSelectionExpr
4355 GenericSelectionExpr *GenericSelectionExpr::Create( in Create()
4363 alignof(GenericSelectionExpr)); in Create()
4364 return new (Mem) GenericSelectionExpr( in Create()
4369 GenericSelectionExpr *GenericSelectionExpr::Create( in Create()
4377 alignof(GenericSelectionExpr)); in Create()
4378 return new (Mem) GenericSelectionExpr( in Create()
4383 GenericSelectionExpr *
[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.cpp184 void JSONNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
1383 const GenericSelectionExpr *GSE) { in VisitGenericSelectionExpr()
H A DStmtProfile.cpp1560 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
1562 for (const GenericSelectionExpr::ConstAssociation Assoc : in VisitGenericSelectionExpr()
H A DTextNodeDumper.cpp348 void TextNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
1120 void TextNodeDumper::VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
H A DComputeDependence.cpp650 ExprDependence clang::computeDependence(GenericSelectionExpr *E, in computeDependence()
H A DASTStructuralEquivalence.cpp239 bool IsStmtEquivalent(const GenericSelectionExpr *E1, in IsStmtEquivalent()
240 const GenericSelectionExpr *E2) { in IsStmtEquivalent()
H A DStmtPrinter.cpp1459 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
1462 for (const GenericSelectionExpr::Association Assoc : Node->associations()) { in VisitGenericSelectionExpr()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaPseudoObject.cpp136 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild()
146 for (const GenericSelectionExpr::Association assoc : in rebuild()
155 return GenericSelectionExpr::Create( in rebuild()
H A DSemaExceptionSpec.cpp1344 if (cast<GenericSelectionExpr>(S)->isResultDependent()) in canThrow()
1346 return canThrow(cast<GenericSelectionExpr>(S)->getResultExpr()); in canThrow()
H A DSemaExprObjC.cpp4552 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast()
4560 for (const GenericSelectionExpr::Association assoc : gse->associations()) { in stripARCUnbridgedCast()
4568 return GenericSelectionExpr::Create( in stripARCUnbridgedCast()
H A DSemaInit.cpp172 } else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) { in updateStringLiteralType()
194 } else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) { in updateGNUCompoundLiteralRValue()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td99 def GenericSelectionExpr : StmtNode<Expr>;
/openbsd/gnu/llvm/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp103 AST_MATCHER_P(GenericSelectionExpr, hasControllingExpr, in AST_MATCHER_P() argument
/openbsd/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp944 const internal::VariadicDynCastAllOfMatcher<Stmt, GenericSelectionExpr>
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGExprComplex.cpp112 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()

12