Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2637 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in isUnusedResultAWarning()
3463 return cast<GenericSelectionExpr>(this)->getResultExpr() in isConstantInitializer()
3760 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in HasSideEffects()
4016 } else if (const GenericSelectionExpr *GE = in isNullPointerConstant()
4017 dyn_cast<GenericSelectionExpr>(this)) { in isNullPointerConstant()
4413 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4439 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4466 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4490 GenericSelectionExpr::GenericSelectionExpr( in GenericSelectionExpr() function in GenericSelectionExpr
4514 GenericSelectionExpr::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs) in GenericSelectionExpr() function in GenericSelectionExpr
[all …]
H A DExprClassification.cpp337 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal()
339 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
H A DJSONNodeDumper.cpp201 void JSONNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
1504 const GenericSelectionExpr *GSE) { in VisitGenericSelectionExpr()
H A DComputeDependence.cpp716 ExprDependence clang::computeDependence(GenericSelectionExpr *E, in computeDependence()
H A DStmtProfile.cpp1648 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
1650 for (const GenericSelectionExpr::ConstAssociation Assoc : in VisitGenericSelectionExpr()
H A DASTStructuralEquivalence.cpp253 bool IsStmtEquivalent(const GenericSelectionExpr *E1, in IsStmtEquivalent()
254 const GenericSelectionExpr *E2) { in IsStmtEquivalent()
H A DStmtPrinter.cpp1653 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
1660 for (const GenericSelectionExpr::Association &Assoc : Node->associations()) { in VisitGenericSelectionExpr()
H A DTextNodeDumper.cpp531 void TextNodeDumper::Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
1618 void TextNodeDumper::VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtDataCollectors.td189 class GenericSelectionExpr {
191 for (const GenericSelectionExpr::ConstAssociation Assoc : S->associations()) {
H A DComputeDependence.h92 class GenericSelectionExpr; variable
187 ExprDependence computeDependence(GenericSelectionExpr *E,
H A DEvaluatedExprVisitor.h65 void VisitGenericSelectionExpr(PTR(GenericSelectionExpr) E) { in VisitGenericSelectionExpr()
H A DIgnoreExpr.h159 else if (auto *GSE = dyn_cast<GenericSelectionExpr>(E)) { in IgnoreParensSingleStep()
H A DTextNodeDumper.h196 void Visit(const GenericSelectionExpr::ConstAssociation &A);
283 void VisitGenericSelectionExpr(const GenericSelectionExpr *E);
H A DJSONNodeDumper.h209 void Visit(const GenericSelectionExpr::ConstAssociation &A);
309 void VisitGenericSelectionExpr(const GenericSelectionExpr *GSE);
H A DASTNodeTraverser.h161 if (isa<DeclStmt, GenericSelectionExpr, RequiresExpr,
259 void Visit(const GenericSelectionExpr::ConstAssociation &A) { in Visit()
894 void VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
H A DExpr.h6103 class GenericSelectionExpr final
6105 private llvm::TrailingObjects<GenericSelectionExpr, Stmt *,
6184 friend class GenericSelectionExpr; variable
6214 friend class GenericSelectionExpr; variable
6259 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc,
6269 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc,
6278 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc,
6288 GenericSelectionExpr(const ASTContext &Context, SourceLocation GenericLoc,
6296 explicit GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs);
6301 static GenericSelectionExpr *
[all …]
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenExprComplex.cpp52 mlir::Value VisitGenericSelectionExpr(GenericSelectionExpr *e);
270 ComplexExprEmitter::VisitGenericSelectionExpr(GenericSelectionExpr *e) { in VisitGenericSelectionExpr()
H A DCIRGenExprConstant.cpp80 mlir::Attribute VisitGenericSelectionExpr(GenericSelectionExpr *ge, in VisitGenericSelectionExpr()
/freebsd/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.cpp1341 if (cast<GenericSelectionExpr>(S)->isResultDependent()) in canThrow()
1343 return canThrow(cast<GenericSelectionExpr>(S)->getResultExpr()); in canThrow()
H A DSemaExprObjC.cpp4563 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast()
4572 for (const GenericSelectionExpr::Association assoc : gse->associations()) { in stripARCUnbridgedCast()
4580 return GenericSelectionExpr::Create( in stripARCUnbridgedCast()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td100 def GenericSelectionExpr : StmtNode<Expr>;
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DCompiler.h193 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E);
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp206 AST_MATCHER_P(GenericSelectionExpr, hasControllingExpr, in AST_MATCHER_P() argument
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp985 const internal::VariadicDynCastAllOfMatcher<Stmt, GenericSelectionExpr>

12