Searched refs:otherObj (Results 1 – 16 of 16) sorted by relevance
26 RemoteObjectWrap *otherObj = static_cast<RemoteObjectWrap *>(IRemoteObjectWrap::Query(&other)); in Equals() local27 return otherObj != nullptr && otherObj->remoteObject_ == remoteObject_; in Equals()
31 Boolean *otherObj = static_cast<Boolean *>(IBoolean::Query(&other)); in Equals() local32 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
36 UserObject *otherObj = static_cast<UserObject *>(IUserObject::Query(&other)); in Equals() local37 if (otherObj == nullptr) { in Equals()40 if (value_->GetClassName() == otherObj->value_->GetClassName()) { in Equals()41 return otherObj->value_->Equals(value_); in Equals()
32 String *otherObj = static_cast<String *>(IString::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->string_ == string_; in Equals()
32 Double *otherObj = static_cast<Double *>(IDouble::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
32 Float *otherObj = static_cast<Float *>(IFloat::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
32 Integer *otherObj = static_cast<Integer *>(IInteger::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
32 Long *otherObj = static_cast<Long *>(ILong::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
32 Short *otherObj = static_cast<Short *>(IShort::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
32 Byte *otherObj = static_cast<Byte *>(IByte::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
32 Char *otherObj = static_cast<Char *>(IChar::Query(&other)); in Equals() local33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
149 Object *otherObj = nullptr; in Equals() local150 otherObj = static_cast<Object *>(&other); in Equals()151 return this == otherObj; in Equals()
82 Array *otherObj = static_cast<Array *>(IArray::Query(&other)); in Equals() local83 if (otherObj == nullptr) { in Equals()87 if (this == otherObj) { in Equals()91 if (otherObj->size_ != size_ || otherObj->typeId_ != typeId_) { in Equals()100 if (!Object::Equals(*(values_[i].GetRefPtr()), *(otherObj->values_[i].GetRefPtr()))) { in Equals()
52 WantParamWrapper *otherObj = static_cast<WantParamWrapper *>(IWantParams::Query(&other)); in Equals() local53 return otherObj != nullptr && otherObj->wantParams_ == wantParams_; in Equals()
1872 PacMap *otherObj = static_cast<PacMap *>(IPacMap::Query(&other)); in Equals() local1873 if (otherObj == nullptr) { in Equals()1877 return Equals(otherObj); in Equals()
37 DistributedWantParamWrapper* otherObj = in Equals() local39 return otherObj != nullptr && otherObj->wantParams_ == wantParams_; in Equals()