Home
last modified time | relevance | path

Searched refs:ChooseExpr (Results 1 – 25 of 25) sorted by relevance

/external/clang/include/clang/AST/
DEvaluatedExprVisitor.h54 void VisitChooseExpr(PTR(ChooseExpr) E) { in VisitChooseExpr()
DExpr.h3613 class ChooseExpr : public Expr {
3619 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() function
3637 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
DRecursiveASTVisitor.h2204 DEF_TRAVERSE_STMT(ChooseExpr, {})
/external/clang/lib/AST/
DExpr.cpp2072 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning()
2467 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) { in IgnoreParens()
2875 if (cast<ChooseExpr>(this)->isConditionDependent()) { in isConstantInitializer()
2880 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer()
3102 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects( in HasSideEffects()
3325 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { in isNullPointerConstant()
DExprClassification.cpp295 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
DStmtProfile.cpp789 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
DStmtPrinter.cpp1496 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
DExprConstant.cpp4095 bool VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr()
9393 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); in CheckICE()
/external/clang/include/clang/Basic/
DStmtNodes.td99 def ChooseExpr : DStmt<Expr>;
/external/clang/lib/Sema/
DSemaPseudoObject.cpp164 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild()
171 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
DSemaExceptionSpec.cpp1116 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
DTreeTransform.h8724 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
DSemaExpr.cpp11391 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, in ActOnChooseExpr()
/external/v8/tools/gcmole/
Dgcmole.cc543 VISIT(ChooseExpr); in VisitExpr()
604 IGNORE_EXPR(ChooseExpr);
/external/clang/lib/CodeGen/
DCGExprComplex.cpp283 ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
993 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExprAgg.cpp165 void VisitChooseExpr(const ChooseExpr *CE);
961 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
DCGExprConstant.cpp630 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
DCGExprScalar.cpp553 Value *VisitChooseExpr(ChooseExpr *CE);
3357 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExpr.cpp1038 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
/external/clang/lib/StaticAnalyzer/Core/
DCoreEngine.cpp374 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
DBugReporter.cpp445 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()
DExprEngine.cpp1145 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
/external/clang/lib/Analysis/
DCFG.cpp434 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
1469 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit()
1912 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr()
4140 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr()
4569 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp870 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
2824 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp814 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()