Lines Matching refs:other
28 ResourceItem::ResourceItem(const ResourceItem &other) in ResourceItem() argument
30 CopyFrom(other); in ResourceItem()
117 ResourceItem &ResourceItem::operator=(const ResourceItem &other) in operator =() argument
119 if (this == &other) { in operator =()
122 CopyFrom(other); in operator =()
136 void ResourceItem::CopyFrom(const ResourceItem &other) in CopyFrom() argument
138 name_ = other.name_; in CopyFrom()
139 keyparams_ = other.keyparams_; in CopyFrom()
140 type_ = other.type_; in CopyFrom()
141 dataLen_ = other.dataLen_; in CopyFrom()
142 filePath_ = other.filePath_; in CopyFrom()
143 limitKey_ = other.limitKey_; in CopyFrom()
144 if (!SetData(other.data_, other.dataLen_)) { in CopyFrom()