Home
last modified time | relevance | path

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

12

/external/clang/include/clang/AST/
DEvaluatedExprVisitor.h51 void VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DExpr.h3562 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
DDataRecursiveASTVisitor.h2184 DEF_TRAVERSE_STMT(ChooseExpr, {})
DRecursiveASTVisitor.h2214 DEF_TRAVERSE_STMT(ChooseExpr, {})
/external/clang/include/clang/Basic/
DStmtNodes.td92 def ChooseExpr : DStmt<Expr>;
/external/clang/lib/AST/
DExpr.cpp2035 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()
DExprClassification.cpp290 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
DStmtProfile.cpp700 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
DStmtPrinter.cpp1340 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
DExprConstant.cpp3991 bool VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr()
9018 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); in CheckICE()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp105 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild()
112 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
DSemaExceptionSpec.cpp1084 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
DTreeTransform.h8053 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
/external/v8/tools/gcmole/
Dgcmole.cc543 VISIT(ChooseExpr); in VisitExpr()
604 IGNORE_EXPR(ChooseExpr);
/external/clang/lib/CodeGen/
DCGExprAgg.cpp163 void VisitChooseExpr(const ChooseExpr *CE);
949 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
DCGExprComplex.cpp281 ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
984 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExprConstant.cpp612 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
DCGExprScalar.cpp553 Value *VisitChooseExpr(ChooseExpr *CE);
3357 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExpr.cpp922 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()
1923 return cast<ChooseExpr>(S)->getCond() == Cond; in isConditionForTerminator()
DExprEngine.cpp1115 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
/external/clang/lib/Analysis/
DCFG.cpp363 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/
DASTReaderStmt.cpp830 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
2568 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp771 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()

12