| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | EvaluatedExprVisitor.h | 51 void VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
| D | Expr.h | 3534 class ChooseExpr : public Expr { 3540 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() function 3558 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
|
| D | RecursiveASTVisitor.h | 2219 DEF_TRAVERSE_STMT(ChooseExpr, { })
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/ |
| D | StmtNodes.td | 92 def ChooseExpr : DStmt<Expr>;
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | Expr.cpp | 1989 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning() 2366 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) { in IgnoreParens() 2740 if (cast<ChooseExpr>(this)->isConditionDependent()) in isConstantInitializer() 2742 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer() 2902 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects(Ctx); in HasSideEffects() 3101 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { in isNullPointerConstant()
|
| D | ExprClassification.cpp | 290 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
|
| D | StmtProfile.cpp | 470 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
|
| D | StmtPrinter.cpp | 1085 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
|
| D | ExprConstant.cpp | 3835 RetTy VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr() 8576 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); in CheckICE()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaPseudoObject.cpp | 104 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild() 111 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
|
| D | SemaExceptionSpec.cpp | 1029 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
|
| D | TreeTransform.h | 7173 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
|
| D | SemaExpr.cpp | 10167 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, in ActOnChooseExpr()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | CGExprComplex.cpp | 273 ComplexPairTy VisitChooseExpr(ChooseExpr *CE); 784 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
| D | CGExprAgg.cpp | 158 void VisitChooseExpr(const ChooseExpr *CE); 922 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
|
| D | CGExprConstant.cpp | 591 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
|
| D | CGExprScalar.cpp | 511 Value *VisitChooseExpr(ChooseExpr *CE); 3164 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
| D | CGExpr.cpp | 858 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/ |
| D | CFG.cpp | 357 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); 1089 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit() 1526 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr() 3674 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr() 4058 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
|
| D | ThreadSafety.cpp | 435 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(Exp)) { in buildSExpr()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| D | CoreEngine.cpp | 368 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
|
| D | BugReporter.cpp | 444 if (allowNestedContexts || cast<ChooseExpr>(Parent)->getCond() == S) in getEnclosingStmtLocation() 947 S = cast<ChooseExpr>(S)->getCond(); in cleanUpLocation() 1935 return cast<ChooseExpr>(S)->getCond() == Cond; in isConditionForTerminator()
|
| D | ExprEngine.cpp | 992 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ |
| D | ASTReaderStmt.cpp | 831 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr() 2117 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
|
| D | ASTWriterStmt.cpp | 770 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|