Lines Matching defs:writes
25 return this->writes == other.writes;
31 (void)res.addWrites(rhs.writes);
42 ChangeResult addWrites(const SetVector<StringAttr> &writes) {
43 int sizeBefore = this->writes.size();
44 this->writes.insert(writes.begin(), writes.end());
45 int sizeAfter = this->writes.size();
53 writes, os, [&](const StringAttr &a) { os << a.str(); }, " ");
57 void clear() { writes.clear(); }
59 SetVector<StringAttr> writes;
175 *this, "assume-func-writes", llvm::cl::init(false),