Home
last modified time | relevance | path

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

12

/external/clang/include/clang/AST/
DEvaluatedExprVisitor.h51 void VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DExpr.h3474 class ChooseExpr : public Expr {
3480 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() function
3498 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
DRecursiveASTVisitor.h2287 DEF_TRAVERSE_STMT(ChooseExpr, { })
/external/clang/include/clang/Basic/
DStmtNodes.td92 def ChooseExpr : DStmt<Expr>;
/external/clang/lib/AST/
DExpr.cpp1933 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning()
2310 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) { in IgnoreParens()
2687 if (cast<ChooseExpr>(this)->isConditionDependent()) in isConstantInitializer()
2689 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer()
2848 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects(Ctx); in HasSideEffects()
3046 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { in isNullPointerConstant()
DExprClassification.cpp289 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
DStmtProfile.cpp454 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
DStmtPrinter.cpp1060 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp104 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild()
111 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
DSemaExceptionSpec.cpp1028 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
/external/clang/lib/CodeGen/
DCGExprComplex.cpp272 ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
780 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExprAgg.cpp158 void VisitChooseExpr(const ChooseExpr *CE);
922 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
DCGExprConstant.cpp612 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
DCGExprScalar.cpp508 Value *VisitChooseExpr(ChooseExpr *CE);
3087 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
DCGExpr.cpp854 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc548 VISIT(ChooseExpr); in VisitExpr()
610 IGNORE_EXPR(ChooseExpr);
/external/v8/tools/gcmole/
Dgcmole.cc548 VISIT(ChooseExpr); in VisitExpr()
611 IGNORE_EXPR(ChooseExpr);
/external/clang/lib/Analysis/
DCFG.cpp356 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
1083 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit()
1502 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr()
3623 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr()
3998 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
DThreadSafety.cpp433 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(Exp)) { in buildSExpr()
/external/clang/lib/StaticAnalyzer/Core/
DCoreEngine.cpp368 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
DBugReporter.cpp409 if (allowNestedContexts || cast<ChooseExpr>(Parent)->getCond() == S) in getEnclosingStmtLocation()
912 S = cast<ChooseExpr>(S)->getCond(); in cleanUpLocation()
1890 return cast<ChooseExpr>(S)->getCond() == Cond; in isConditionForTerminator()
DExprEngine.cpp950 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp831 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
2082 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp769 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h2193 DEF_TRAVERSE_STMT(ChooseExpr, { })

12