Lines Matching refs:other
28 ResourceItem::ResourceItem(const ResourceItem &other)
30 CopyFrom(other);
123 ResourceItem &ResourceItem::operator=(const ResourceItem &other)
125 if (this == &other) {
128 CopyFrom(other);
142 void ResourceItem::CopyFrom(const ResourceItem &other)
144 name_ = other.name_;
145 keyparams_ = other.keyparams_;
146 type_ = other.type_;
147 dataLen_ = other.dataLen_;
148 filePath_ = other.filePath_;
149 limitKey_ = other.limitKey_;
150 if (!SetData(other.data_, other.dataLen_)) {