Lines Matching refs:Exprs
483 llvm::ArrayRef<Expr *> Exprs = {}) { in callPrintFunction()
486 Args.reserve((TheCall->getNumArgs() - 2) + /*Format*/ 1 + Exprs.size());
489 Args.insert(Args.end(), Exprs.begin(), Exprs.end());
16633 SmallVector<const Expr *, 2> Exprs(1, E); in CheckForIntOverflow() local
16636 const Expr *OriginalE = Exprs.pop_back_val(); in CheckForIntOverflow()
16645 Exprs.append(InitList->inits().begin(), InitList->inits().end()); in CheckForIntOverflow()
16649 Exprs.append(Call->arg_begin(), Call->arg_end()); in CheckForIntOverflow()
16651 Exprs.append(Message->arg_begin(), Message->arg_end()); in CheckForIntOverflow()
16653 Exprs.append(Construct->arg_begin(), Construct->arg_end()); in CheckForIntOverflow()
16655 Exprs.push_back(Temporary->getSubExpr()); in CheckForIntOverflow()
16657 Exprs.push_back(Array->getIdx()); in CheckForIntOverflow()
16659 Exprs.push_back(Compound->getInitializer()); in CheckForIntOverflow()
16663 Exprs.push_back(*ArraySize); in CheckForIntOverflow()
16665 } while (!Exprs.empty()); in CheckForIntOverflow()