Searched refs:ChooseExpr (Results 1 – 25 of 26) sorted by relevance
12
/external/clang/include/clang/AST/ |
D | EvaluatedExprVisitor.h | 51 void VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | Expr.h | 3562 class ChooseExpr : public Expr { 3568 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() function 3586 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
|
D | DataRecursiveASTVisitor.h | 2184 DEF_TRAVERSE_STMT(ChooseExpr, {})
|
D | RecursiveASTVisitor.h | 2214 DEF_TRAVERSE_STMT(ChooseExpr, {})
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 92 def ChooseExpr : DStmt<Expr>;
|
/external/clang/lib/AST/ |
D | Expr.cpp | 2035 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning() 2427 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) { in IgnoreParens() 2829 if (cast<ChooseExpr>(this)->isConditionDependent()) { in isConstantInitializer() 2834 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer() 3019 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects( in HasSideEffects() 3231 } 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 | 700 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
|
D | StmtPrinter.cpp | 1340 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
|
D | ExprConstant.cpp | 3991 bool VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr() 9018 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); in CheckICE()
|
/external/clang/lib/Sema/ |
D | SemaPseudoObject.cpp | 105 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild() 112 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
|
D | SemaExceptionSpec.cpp | 1084 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
|
D | TreeTransform.h | 8053 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 543 VISIT(ChooseExpr); in VisitExpr() 604 IGNORE_EXPR(ChooseExpr);
|
/external/clang/lib/CodeGen/ |
D | CGExprAgg.cpp | 163 void VisitChooseExpr(const ChooseExpr *CE); 949 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
|
D | CGExprComplex.cpp | 281 ComplexPairTy VisitChooseExpr(ChooseExpr *CE); 984 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | CGExprConstant.cpp | 612 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
|
D | CGExprScalar.cpp | 553 Value *VisitChooseExpr(ChooseExpr *CE); 3357 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | CGExpr.cpp | 922 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CoreEngine.cpp | 374 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() 1923 return cast<ChooseExpr>(S)->getCond() == Cond; in isConditionForTerminator()
|
D | ExprEngine.cpp | 1115 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 363 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); 1412 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit() 1855 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr() 4063 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr() 4491 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 830 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr() 2568 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 771 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
12