Home
last modified time | relevance | path

Searched refs:otherObj (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/ability/ability_base/interfaces/inner_api/base/src/
H A Dremote_object_wrapper.cpp26 RemoteObjectWrap *otherObj = static_cast<RemoteObjectWrap *>(IRemoteObjectWrap::Query(&other)); in Equals() local
27 return otherObj != nullptr && otherObj->remoteObject_ == remoteObject_; in Equals()
H A Dbool_wrapper.cpp31 Boolean *otherObj = static_cast<Boolean *>(IBoolean::Query(&other)); in Equals() local
32 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Duser_object_wrapper.cpp36 UserObject *otherObj = static_cast<UserObject *>(IUserObject::Query(&other)); in Equals() local
37 if (otherObj == nullptr) { in Equals()
40 if (value_->GetClassName() == otherObj->value_->GetClassName()) { in Equals()
41 return otherObj->value_->Equals(value_); in Equals()
H A Dstring_wrapper.cpp32 String *otherObj = static_cast<String *>(IString::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->string_ == string_; in Equals()
H A Ddouble_wrapper.cpp32 Double *otherObj = static_cast<Double *>(IDouble::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Dfloat_wrapper.cpp32 Float *otherObj = static_cast<Float *>(IFloat::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Dint_wrapper.cpp32 Integer *otherObj = static_cast<Integer *>(IInteger::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Dlong_wrapper.cpp32 Long *otherObj = static_cast<Long *>(ILong::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Dshort_wrapper.cpp32 Short *otherObj = static_cast<Short *>(IShort::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Dbyte_wrapper.cpp32 Byte *otherObj = static_cast<Byte *>(IByte::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Dzchar_wrapper.cpp32 Char *otherObj = static_cast<Char *>(IChar::Query(&other)); in Equals() local
33 return otherObj != nullptr && otherObj->value_ == value_; in Equals()
H A Dbase_object.cpp149 Object *otherObj = nullptr; in Equals() local
150 otherObj = static_cast<Object *>(&other); in Equals()
151 return this == otherObj; in Equals()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Darray_wrapper.cpp82 Array *otherObj = static_cast<Array *>(IArray::Query(&other)); in Equals() local
83 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()
H A Dwant_params_wrapper.cpp52 WantParamWrapper *otherObj = static_cast<WantParamWrapper *>(IWantParams::Query(&other)); in Equals() local
53 return otherObj != nullptr && otherObj->wantParams_ == wantParams_; in Equals()
H A Dpac_map.cpp1872 PacMap *otherObj = static_cast<PacMap *>(IPacMap::Query(&other)); in Equals() local
1873 if (otherObj == nullptr) { in Equals()
1877 return Equals(otherObj); in Equals()
/ohos5.0/foundation/ability/dmsfwk/services/dtbschedmgr/src/distributedWant/
H A Ddistributed_want_params_wrapper.cpp37 DistributedWantParamWrapper* otherObj = in Equals() local
39 return otherObj != nullptr && otherObj->wantParams_ == wantParams_; in Equals()