| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | EvaluatedExprVisitor.h | 54 void VisitChooseExpr(PTR(ChooseExpr) E) { in VisitChooseExpr()
|
| HD | Expr.h | 3564 class ChooseExpr : public Expr { 3570 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() function 3588 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
|
| HD | DataRecursiveASTVisitor.h | 2210 DEF_TRAVERSE_STMT(ChooseExpr, {})
|
| HD | RecursiveASTVisitor.h | 2242 DEF_TRAVERSE_STMT(ChooseExpr, {})
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | StmtNodes.td | 94 def ChooseExpr : DStmt<Expr>;
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | Expr.cpp | 2035 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning() 2427 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) { in IgnoreParens() 2835 if (cast<ChooseExpr>(this)->isConditionDependent()) { in isConstantInitializer() 2840 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer() 3055 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects( in HasSideEffects() 3267 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { in isNullPointerConstant()
|
| HD | ExprClassification.cpp | 292 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
|
| HD | StmtProfile.cpp | 720 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
|
| HD | StmtPrinter.cpp | 1373 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
|
| HD | ExprConstant.cpp | 3990 bool VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr() 9031 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); in CheckICE()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaPseudoObject.cpp | 105 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild() 112 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
|
| HD | SemaExceptionSpec.cpp | 1093 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
|
| HD | TreeTransform.h | 8305 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
|
| HD | SemaExpr.cpp | 11202 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, in ActOnChooseExpr()
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGExprComplex.cpp | 281 ComplexPairTy VisitChooseExpr(ChooseExpr *CE); 985 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
| HD | CGExprAgg.cpp | 165 void VisitChooseExpr(const ChooseExpr *CE); 957 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
|
| HD | CGExprConstant.cpp | 630 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
|
| HD | CGExprScalar.cpp | 553 Value *VisitChooseExpr(ChooseExpr *CE); 3375 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
| HD | CGExpr.cpp | 923 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
|
| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| HD | CoreEngine.cpp | 374 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
|
| HD | BugReporter.cpp | 445 if (allowNestedContexts || cast<ChooseExpr>(Parent)->getCond() == S) in getEnclosingStmtLocation() 942 S = cast<ChooseExpr>(S)->getCond(); in cleanUpLocation() 1921 return cast<ChooseExpr>(S)->getCond() == Cond; in isConditionForTerminator()
|
| HD | ExprEngine.cpp | 1120 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Analysis/ |
| HD | CFG.cpp | 362 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); 1423 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit() 1866 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr() 4074 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr() 4502 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReaderStmt.cpp | 840 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr() 2623 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
|
| HD | ASTWriterStmt.cpp | 783 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|