Lines Matching defs:AllOperands
351 SmallVector<const Expr *, N> &AllOperands,
357 return collectOperands<TExpr>(Operands.first, AllOperands, OpKind) ||
358 collectOperands<TExpr>(Operands.second, AllOperands, OpKind);
361 AllOperands.push_back(Part);
406 SmallVector<const Expr *, 4> AllOperands;
407 if (collectOperands<TExpr>(Operands.first, AllOperands, OpKind))
409 if (collectOperands<TExpr>(Operands.second, AllOperands, OpKind))
411 size_t NumOperands = AllOperands.size();
419 if (AllOperands[J]->HasSideEffects(Context))
422 if (areEquivalentExpr(AllOperands[I], AllOperands[J])) {
426 DynTypedNode::create(*AllOperands[J]));
432 DynTypedNode::create(*AllOperands[I]));