Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDEvaluatedExprVisitor.h54 void VisitChooseExpr(PTR(ChooseExpr) E) { in VisitChooseExpr()
HDExpr.h3564 class ChooseExpr : public Expr {
3570 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() function
3588 explicit ChooseExpr(EmptyShell Empty) : Expr(ChooseExprClass, Empty) { } in ChooseExpr() function
HDDataRecursiveASTVisitor.h2210 DEF_TRAVERSE_STMT(ChooseExpr, {})
HDRecursiveASTVisitor.h2242 DEF_TRAVERSE_STMT(ChooseExpr, {})
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDStmtNodes.td94 def ChooseExpr : DStmt<Expr>;
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDExpr.cpp2035 return cast<ChooseExpr>(this)->getChosenSubExpr()-> in isUnusedResultAWarning()
2427 if (ChooseExpr* P = dyn_cast<ChooseExpr>(E)) { in IgnoreParens()
2835 if (cast<ChooseExpr>(this)->isConditionDependent()) { in isConstantInitializer()
2840 return cast<ChooseExpr>(this)->getChosenSubExpr() in isConstantInitializer()
3055 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects( in HasSideEffects()
3267 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { in isNullPointerConstant()
HDExprClassification.cpp292 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr()); in ClassifyInternal()
HDStmtProfile.cpp720 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { in VisitChooseExpr()
HDStmtPrinter.cpp1373 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { in VisitChooseExpr()
HDExprConstant.cpp3990 bool VisitChooseExpr(const ChooseExpr *E) in VisitChooseExpr()
9031 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); in CheckICE()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaPseudoObject.cpp105 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) { in rebuild()
112 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(), in rebuild()
HDSemaExceptionSpec.cpp1093 return canThrow(cast<ChooseExpr>(E)->getChosenSubExpr()); in canThrow()
HDTreeTransform.h8305 TreeTransform<Derived>::TransformChooseExpr(ChooseExpr *E) { in TransformChooseExpr()
HDSemaExpr.cpp11202 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, in ActOnChooseExpr()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGExprComplex.cpp281 ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
985 ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
HDCGExprAgg.cpp165 void VisitChooseExpr(const ChooseExpr *CE);
957 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { in VisitChooseExpr()
HDCGExprConstant.cpp630 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) { in VisitChooseExpr()
HDCGExprScalar.cpp553 Value *VisitChooseExpr(ChooseExpr *CE);
3375 Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
HDCGExpr.cpp923 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr()); in EmitLValue()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDCoreEngine.cpp374 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
HDBugReporter.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()
HDExprEngine.cpp1120 const ChooseExpr *C = cast<ChooseExpr>(S); in Visit()
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDCFG.cpp362 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
1423 return VisitChooseExpr(cast<ChooseExpr>(S), asc); in Visit()
1866 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, in VisitChooseExpr()
4074 void VisitChooseExpr(ChooseExpr *C) { in VisitChooseExpr()
4502 E = cast<ChooseExpr>(Terminator)->getCond(); in getTerminatorCondition()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp840 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()
2623 S = new (Context) ChooseExpr(Empty); in ReadStmtFromStream()
HDASTWriterStmt.cpp783 void ASTStmtWriter::VisitChooseExpr(ChooseExpr *E) { in VisitChooseExpr()