Lines Matching defs:newArgAttrs
208 SmallVector<DictionaryAttr, 4> newArgAttrs;
209 newArgAttrs.reserve(originalNumArgs + argIndices.size());
213 newArgAttrs.resize(newArgAttrs.size() + untilIdx - oldIdx);
216 newArgAttrs.append(oldArgAttrRange.begin() + oldIdx,
223 newArgAttrs.push_back(argAttrs.empty() ? DictionaryAttr{} : argAttrs[i]);
226 setAllArgAttrDicts(op, newArgAttrs);
287 SmallVector<DictionaryAttr, 4> newArgAttrs;
288 newArgAttrs.reserve(argAttrs.size());
291 newArgAttrs.emplace_back(llvm::cast<DictionaryAttr>(argAttrs[i]));
292 setAllArgAttrDicts(op, newArgAttrs);