/external/clang/include/clang/AST/ |
D | EvaluatedExprVisitor.h | 54 void VisitChooseExpr(PTR(ChooseExpr) E) { in VisitChooseExpr()
|
D | Expr.h | 3547 class ChooseExpr : public Expr { 3553 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() function 3571 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
|
D | RecursiveASTVisitor.h | 2307 DEF_TRAVERSE_STMT(ChooseExpr, {})
|
/external/clang/lib/AST/ |
D | Expr.cpp | 1919 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning() 2314 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) { in IgnoreParens() 2722 if (cast<ChooseExpr>(this)->isConditionDependent()) { in isConstantInitializer() 2727 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer() 2954 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects( in HasSideEffects() 3184 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { in isNullPointerConstant()
|
D | ExprClassification.cpp | 295 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
|
D | StmtProfile.cpp | 905 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
|
D | StmtPrinter.cpp | 1626 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
|
D | ExprConstant.cpp | 4242 bool VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr() 9711 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); in CheckICE()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 99 def ChooseExpr : DStmt<Expr>;
|
/external/clang/lib/Sema/ |
D | SemaPseudoObject.cpp | 164 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild() 171 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
|
D | SemaExceptionSpec.cpp | 1126 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
|
D | TreeTransform.h | 9031 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
|
D | SemaExpr.cpp | 11923 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, in ActOnChooseExpr()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 575 VISIT(ChooseExpr); in VisitExpr() 636 IGNORE_EXPR(ChooseExpr);
|
/external/clang/lib/CodeGen/ |
D | CGExprComplex.cpp | 283 ComplexPairTy VisitChooseExpr(ChooseExpr *CE); 994 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | CGExprAgg.cpp | 165 void VisitChooseExpr(const ChooseExpr *CE); 963 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
|
D | CGExprConstant.cpp | 636 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
|
D | CGExprScalar.cpp | 553 Value *VisitChooseExpr(ChooseExpr *CE); 3346 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | CGExpr.cpp | 1064 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CoreEngine.cpp | 386 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
|
D | 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()
|
D | ExprEngine.cpp | 1155 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 434 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); 1469 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit() 1912 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr() 4172 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr() 4601 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 875 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr() 3126 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 826 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|