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.h3547 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
DRecursiveASTVisitor.h2307 DEF_TRAVERSE_STMT(ChooseExpr, {})
/external/clang/lib/AST/
DExpr.cpp1919 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()
DExprClassification.cpp295 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
DStmtProfile.cpp905 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
DStmtPrinter.cpp1626 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
DExprConstant.cpp4242 bool VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr()
9711 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.cpp1126 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
DTreeTransform.h9031 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
DSemaExpr.cpp11923 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, in ActOnChooseExpr()
/external/v8/tools/gcmole/
Dgcmole.cc575 VISIT(ChooseExpr); in VisitExpr()
636 IGNORE_EXPR(ChooseExpr);
/external/clang/lib/CodeGen/
DCGExprComplex.cpp283 ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
994 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExprAgg.cpp165 void VisitChooseExpr(const ChooseExpr *CE);
963 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
DCGExprConstant.cpp636 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
DCGExprScalar.cpp553 Value *VisitChooseExpr(ChooseExpr *CE);
3346 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExpr.cpp1064 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
/external/clang/lib/StaticAnalyzer/Core/
DCoreEngine.cpp386 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.cpp1155 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()
4172 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr()
4601 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp875 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
3126 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp826 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()