Searched refs:ChooseExpr (Results 1 - 23 of 23) sorted by relevance

/external/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h54 void VisitChooseExpr(PTR(ChooseExpr) E) {
H A DExpr.h3538 /// ChooseExpr - GNU builtin-in function __builtin_choose_expr.
3547 class ChooseExpr : public Expr { class in class:clang::StringLiteral::final::CallExpr
3553 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, function in class:clang::StringLiteral::final::CallExpr::ChooseExpr
3571 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } function in class:clang::StringLiteral::final::CallExpr::ChooseExpr
H A DRecursiveASTVisitor.h2307 DEF_TRAVERSE_STMT(ChooseExpr, {})
/external/clang/lib/AST/
H A DExpr.cpp1919 return cast<ChooseExpr>(this)->getChosenSubExpr()->
2314 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) {
2722 if (cast<ChooseExpr>(this)->isConditionDependent()) {
2727 return cast<ChooseExpr>(this)->getChosenSubExpr()
2954 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects(
3184 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) {
H A DExprClassification.cpp295 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr());
H A DStmtProfile.cpp905 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) {
H A DExprConstant.cpp4242 bool VisitChooseExpr(const ChooseExpr *E)
9711 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx);
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp164 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) {
171 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(),
H A DSemaExceptionSpec.cpp1126 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr());
H A DSemaExpr.cpp11923 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc,
H A DTreeTransform.h9031 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) {
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp386 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred);
H A DBugReporter.cpp445 if (allowNestedContexts || cast<ChooseExpr>(Parent)->getCond() == S)
942 S = cast<ChooseExpr>(S)->getCond();
1921 return cast<ChooseExpr>(S)->getCond() == Cond;
H A DExprEngine.cpp1150 // FIXME: ChooseExpr is really a constant. We need to fix
1155 const ChooseExpr *C = cast<ChooseExpr>(S);
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp283 ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
994 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) {
H A DCGExprAgg.cpp165 void VisitChooseExpr(const ChooseExpr *CE);
963 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
H A DCGExprConstant.cpp636 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) {
H A DCGExprScalar.cpp553 Value *VisitChooseExpr(ChooseExpr *CE);
3346 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) {
H A DCGExpr.cpp1064 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr());
/external/v8/tools/gcmole/
H A Dgcmole.cc575 VISIT(ChooseExpr);
636 IGNORE_EXPR(ChooseExpr);
/external/clang/lib/Analysis/
H A DCFG.cpp434 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
1469 return VisitChooseExpr(cast<ChooseExpr>(S), asc);
1912 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
4172 void VisitChooseExpr(ChooseExpr *C) {
4601 E = cast<ChooseExpr>(Terminator)->getCond();
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp875 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) {
3126 S = new (Context) ChooseExpr(Empty);
H A DASTWriterStmt.cpp826 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) {

Completed in 987 milliseconds