Lines Matching refs:other
26 DistributedOperation::DistributedOperation(const DistributedOperation& other) : flags_(0), uri_(other.uri_.ToString())
28 flags_ = other.flags_;
29 action_ = other.action_;
30 deviceId_ = other.deviceId_;
31 entities_ = other.entities_;
32 bundleName_ = other.bundleName_;
33 abilityName_ = other.abilityName_;
34 moduleName_ = other.moduleName_;
128 bool DistributedOperation::operator==(const DistributedOperation& other) const
130 if (abilityName_ != other.abilityName_) {
133 if (action_ != other.action_) {
136 if (bundleName_ != other.bundleName_) {
139 if (deviceId_ != other.deviceId_) {
142 if (moduleName_ != other.moduleName_) {
147 size_t otherEntitiesCount = other.entities_.size();
152 if (entities_[i] != other.entities_[i]) {
157 if (flags_ != other.flags_) {
160 if (uri_.ToString() != other.uri_.ToString()) {
166 DistributedOperation& DistributedOperation::operator=(const DistributedOperation& other)
168 if (this != &other) {
169 uri_ = other.uri_;
170 flags_ = other.flags_;
171 action_ = other.action_;
172 deviceId_ = other.deviceId_;
173 entities_ = other.entities_;
174 bundleName_ = other.bundleName_;
175 abilityName_ = other.abilityName_;
176 moduleName_ = other.moduleName_;