| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ComputeDependence.h | 41 class ChooseExpr; variable 130 ExprDependence computeDependence(ChooseExpr *E);
|
| H A D | EvaluatedExprVisitor.h | 57 void VisitChooseExpr(PTR(ChooseExpr) E) { in VisitChooseExpr()
|
| H A D | IgnoreExpr.h | 164 else if (auto *CE = dyn_cast<ChooseExpr>(E)) { in IgnoreParensSingleStep()
|
| H A D | Expr.h | 4776 class ChooseExpr : public Expr { 4782 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, QualType t, in ChooseExpr() function 4795 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenExprComplex.cpp | 49 mlir::Value VisitChooseExpr(ChooseExpr *e); 252 mlir::Value ComplexExprEmitter::VisitChooseExpr(ChooseExpr *e) { in VisitChooseExpr()
|
| H A D | CIRGenExprConstant.cpp | 85 mlir::Attribute VisitChooseExpr(ChooseExpr *ce, QualType t) { in VisitChooseExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaPseudoObject.cpp | 166 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild() 174 ChooseExpr(ce->getBuiltinLoc(), ce->getCond(), LHS, RHS, in rebuild()
|
| H A D | SemaExceptionSpec.cpp | 1334 auto *CE = cast<ChooseExpr>(S); in canThrow()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 114 def ChooseExpr : StmtNode<Expr>;
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Compiler.h | 194 bool VisitChooseExpr(const ChooseExpr *E);
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CoreEngine.cpp | 388 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
|
| H A D | BugReporter.cpp | 694 if (allowNestedContexts || cast<ChooseExpr>(Parent)->getCond() == S) in getEnclosingStmtLocation() 1411 return cast<ChooseExpr>(S)->getCond() == Cond; in isConditionForTerminator()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprClassification.cpp | 361 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
|
| H A D | Expr.cpp | 2644 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning() 3466 if (cast<ChooseExpr>(this)->isConditionDependent()) { in isConstantInitializer() 3471 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer() 3764 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects( in HasSideEffects() 4021 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { in isNullPointerConstant()
|
| H A D | ComputeDependence.cpp | 202 ExprDependence clang::computeDependence(ChooseExpr *E) { in computeDependence()
|
| H A D | ASTStructuralEquivalence.cpp | 209 bool IsStmtEquivalent(const ChooseExpr *E1, const ChooseExpr *E2) { in IsStmtEquivalent()
|
| H A D | StmtProfile.cpp | 1573 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
|
| H A D | StmtPrinter.cpp | 1867 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CFG.cpp | 588 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); 2327 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit() 2888 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr() 5699 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr() 6409 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprComplex.cpp | 396 ComplexPairTy VisitChooseExpr(ChooseExpr *CE); 1439 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
| H A D | CGExprAgg.cpp | 184 void VisitChooseExpr(const ChooseExpr *CE); 1458 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
|
| H A D | CGExprConstant.cpp | 1159 llvm::Constant *VisitChooseExpr(const ChooseExpr *CE, QualType T) { in VisitChooseExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 975 const internal::VariadicDynCastAllOfMatcher<Stmt, ChooseExpr> chooseExpr;
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1362 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr() 3391 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2602 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ChooseExpr>
|