Searched refs:ChooseExpr (Results 1 – 25 of 28) sorted by relevance
12
/external/clang/include/clang/AST/ |
D | EvaluatedExprVisitor.h | 51 void VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | Expr.h | 3474 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
|
D | RecursiveASTVisitor.h | 2287 DEF_TRAVERSE_STMT(ChooseExpr, { })
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 92 def ChooseExpr : DStmt<Expr>;
|
/external/clang/lib/AST/ |
D | Expr.cpp | 1933 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()
|
D | ExprClassification.cpp | 289 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
|
D | StmtProfile.cpp | 454 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
|
D | StmtPrinter.cpp | 1060 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
|
/external/clang/lib/Sema/ |
D | SemaPseudoObject.cpp | 104 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild() 111 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
|
D | SemaExceptionSpec.cpp | 1028 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
|
/external/clang/lib/CodeGen/ |
D | CGExprComplex.cpp | 272 ComplexPairTy VisitChooseExpr(ChooseExpr *CE); 780 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | CGExprAgg.cpp | 158 void VisitChooseExpr(const ChooseExpr *CE); 922 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
|
D | CGExprConstant.cpp | 612 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
|
D | CGExprScalar.cpp | 508 Value *VisitChooseExpr(ChooseExpr *CE); 3087 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
D | CGExpr.cpp | 854 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
|
/external/chromium_org/v8/tools/gcmole/ |
D | gcmole.cc | 548 VISIT(ChooseExpr); in VisitExpr() 610 IGNORE_EXPR(ChooseExpr);
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 548 VISIT(ChooseExpr); in VisitExpr() 611 IGNORE_EXPR(ChooseExpr);
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 356 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()
|
D | ThreadSafety.cpp | 433 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(Exp)) { in buildSExpr()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CoreEngine.cpp | 368 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
|
D | BugReporter.cpp | 409 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()
|
D | ExprEngine.cpp | 950 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 831 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr() 2082 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 769 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 2193 DEF_TRAVERSE_STMT(ChooseExpr, { })
|
12