Home
last modified time | relevance | path

Searched refs:rhs (Results 1 - 25 of 211) sorted by relevance

123456789

/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/adapter/common/
H A Dtext_style.cpp48 bool FontFeatures::operator ==(const FontFeatures& rhs) const in operator ==()
50 return featureSet_ == rhs.featureSet_; in operator ==()
68 bool FontVariations::operator ==(const FontVariations& rhs) const in operator ==()
70 return axis_ == rhs.axis_; in operator ==()
89 bool TextShadow::operator ==(const TextShadow& rhs) const in operator ==()
91 return color == rhs.color && offset == rhs.offset && blurRadius == rhs.blurRadius; in operator ==()
94 bool TextShadow::operator !=(const TextShadow& rhs) const in operator !=()
96 return !(*this == rhs); in operator !=()
[all...]
/foundation/multimedia/media_foundation/src/buffer/avbuffer/
H A Davbuffer_common.cpp31 AVBufferConfig::AVBufferConfig(const AVBufferConfig &rhs) in AVBufferConfig() argument
33 FALSE_RETURN_W(&rhs != this); in AVBufferConfig()
35 *(this->surfaceBufferConfig) = *(rhs.surfaceBufferConfig); in AVBufferConfig()
36 this->size = rhs.size; in AVBufferConfig()
37 this->align = rhs.align; in AVBufferConfig()
38 this->dmaFd = rhs.dmaFd; in AVBufferConfig()
39 this->capacity = rhs.capacity; in AVBufferConfig()
40 this->memoryFlag = rhs.memoryFlag; in AVBufferConfig()
41 this->memoryType = rhs.memoryType; in AVBufferConfig()
44 AVBufferConfig::AVBufferConfig(AVBufferConfig &&rhs) noexcep
55 operator =(const AVBufferConfig &rhs) operator =() argument
[all...]
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/export/rosen_text/
H A Dtypography_style.h33 bool operator==(const TextTab& rhs) const in operator ==()
35 return (this->alignment == rhs.alignment) && in operator ==()
36 (skia::textlayout::nearlyEqual(this->location, rhs.location)); in operator ==()
78 bool operator==(const TypographyStyle &rhs) const { in operator ==()
80 this->ELLIPSIS == rhs.ELLIPSIS && in operator ==()
81 this->fontWeight == rhs.fontWeight && in operator ==()
82 this->fontStyle == rhs.fontStyle && in operator ==()
83 this->fontFamily == rhs.fontFamily && in operator ==()
84 skia::textlayout::nearlyEqual(this->fontSize, rhs.fontSize) && in operator ==()
85 skia::textlayout::nearlyEqual(this->heightScale, rhs in operator ==()
[all...]
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/
H A Dvector.h71 inline constexpr Vec2& operator+=(const Vec2& rhs) in operator +=() argument
73 x += rhs.x; in operator +=()
74 y += rhs.y; in operator +=()
90 inline constexpr Vec2& operator-=(const Vec2& rhs) in operator -=() argument
92 x -= rhs.x; in operator -=()
93 y -= rhs.y; in operator -=()
103 inline constexpr Vec2& operator*=(const Vec2& rhs) in operator *=() argument
105 x *= rhs.x; in operator *=()
106 y *= rhs.y; in operator *=()
116 inline constexpr Vec2& operator/=(const Vec2& rhs) in operator /=() argument
373 operator +=(const UVec2& rhs) operator +=() argument
386 operator -=(const UVec2& rhs) operator -=() argument
399 operator *=(const UVec2& rhs) operator *=() argument
412 operator /=(const UVec2& rhs) operator /=() argument
641 operator +=(const IVec2& rhs) operator +=() argument
654 operator -=(const IVec2& rhs) operator -=() argument
667 operator *=(const IVec2& rhs) operator *=() argument
680 operator /=(const IVec2& rhs) operator /=() argument
897 operator +=(const Vec3& rhs) operator +=() argument
917 operator -=(const Vec3& rhs) operator -=() argument
931 operator *=(const Vec3& rhs) operator *=() argument
945 operator /=(const Vec3& rhs) operator /=() argument
1021 operator +=(const Vec4& rhs) operator +=() argument
1042 operator -=(const Vec4& rhs) operator -=() argument
1057 operator *=(const Vec4& rhs) operator *=() argument
1072 operator /=(const Vec4& rhs) operator /=() argument
[all...]
H A Dmatrix.h84 inline constexpr Mat3X3 operator*(const Mat3X3& rhs) const in operator *()
86 const Vec3& rha { rhs.x.x, rhs.y.x, rhs.z.x }; in operator *()
87 const Vec3& rhb { rhs.x.y, rhs.y.y, rhs.z.y }; in operator *()
88 const Vec3& rhc { rhs.x.z, rhs.y.z, rhs in operator *()
[all...]
H A Dvector_util.h30 static inline constexpr float Dot(const Vec2& lhs, const Vec2& rhs) in Dot() argument
32 return (lhs.x * rhs.x) + (lhs.y * rhs.y); in Dot()
36 static inline constexpr float Cross(const Vec2& lhs, const Vec2& rhs) in Cross() argument
38 return lhs.x * rhs.y - lhs.y * rhs.x; in Cross()
67 static constexpr inline Vec2 min(const Vec2& lhs, const Vec2& rhs) in min() argument
69 return Vec2(min(lhs.x, rhs.x), min(lhs.y, rhs.y)); in min()
73 static constexpr inline Vec2 max(const Vec2& lhs, const Vec2& rhs) in max() argument
149 Dot(const Vec3& lhs, const Vec3& rhs) Dot() argument
155 Cross(const Vec3& lhs, const Vec3& rhs) Cross() argument
197 min(const Vec3& lhs, const Vec3& rhs) min() argument
203 max(const Vec3& lhs, const Vec3& rhs) max() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dtext_style.cpp28 bool TextStyle::operator==(const TextStyle& rhs) const in operator ==()
30 return fontFamilies_ == rhs.fontFamilies_ && fontFeatures_ == rhs.fontFeatures_ && in operator ==()
31 textDecorationStyle_ == rhs.textDecorationStyle_ && in operator ==()
32 preferFontSizes_ == rhs.preferFontSizes_ && fontSize_ == rhs.fontSize_ && in operator ==()
33 adaptMinFontSize_ == rhs.adaptMinFontSize_ && adaptMaxFontSize_ == rhs.adaptMaxFontSize_ && in operator ==()
34 adaptFontSizeStep_ == rhs.adaptFontSizeStep_ && lineHeight_ == rhs in operator ==()
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/test/src/
H A Dtest_utils.cpp63 bool operator>(const BASE_NS::Math::Vec3& lhs, const BASE_NS::Math::Vec3& rhs) in operator >() argument
65 return ((lhs.x > rhs.x) && (lhs.y > rhs.y)); in operator >()
68 bool operator<(const BASE_NS::Math::Vec3& lhs, const BASE_NS::Math::Vec3& rhs) in operator <() argument
70 return ((lhs.x < rhs.x) && (lhs.y < rhs.y)); in operator <()
73 bool operator>(const BASE_NS::Math::Vec2& lhs, const BASE_NS::Math::Vec2& rhs) in operator >() argument
75 return ((lhs.x > rhs.x) && (lhs.y > rhs.y)); in operator >()
78 bool operator<(const BASE_NS::Math::Vec2& lhs, const BASE_NS::Math::Vec2& rhs) in operator <() argument
83 operator >=(const BASE_NS::Math::Vec3& lhs, const BASE_NS::Math::Vec3& rhs) operator >=() argument
88 operator <=(const BASE_NS::Math::Vec3& lhs, const BASE_NS::Math::Vec3& rhs) operator <=() argument
93 operator >=(const BASE_NS::Math::Vec2& lhs, const BASE_NS::Math::Vec2& rhs) operator >=() argument
98 operator <=(const BASE_NS::Math::Vec2& lhs, const BASE_NS::Math::Vec2& rhs) operator <=() argument
103 AreEqual(const BASE_NS::Math::Vec3& lhs, const BASE_NS::Math::Vec3& rhs, float epsilon) AreEqual() argument
109 AreNear(const BASE_NS::Math::Vec3& lhs, const BASE_NS::Math::Vec3& rhs) AreNear() argument
114 AreEqual(const BASE_NS::Math::Vec2& lhs, const BASE_NS::Math::Vec2& rhs, float epsilon) AreEqual() argument
119 AreNear(const BASE_NS::Math::Vec2& lhs, const BASE_NS::Math::Vec2& rhs) AreNear() argument
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/
H A Dtime_span.h36 constexpr TimeSpan(const TimeSpan& rhs) noexcept = default;
37 constexpr TimeSpan(TimeSpan&& rhs) noexcept = default;
39 constexpr TimeSpan& operator=(const TimeSpan& rhs) noexcept = default;
40 constexpr TimeSpan& operator=(TimeSpan&& rhs) noexcept = default;
112 constexpr bool operator==(const TimeSpan& rhs) const noexcept
114 return value_ == rhs.value_;
117 constexpr bool operator!=(const TimeSpan& rhs) const noexcept
119 return value_ != rhs.value_;
122 constexpr bool operator<(const TimeSpan& rhs) const noexcept
124 return value_ < rhs
282 operator *(int n, const TimeSpan& rhs) operator *() argument
286 operator *(float n, const TimeSpan& rhs) operator *() argument
290 operator /(float n, const TimeSpan& rhs) operator /() argument
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_ref.h74 explicit JsiRef(const JsiWeak<T>& rhs) in JsiRef() argument
76 *this = rhs.Lock(); in JsiRef()
110 JsiRef(const JsiRef<T>& rhs) : value_(rhs.value_) {} in JsiRef() argument
112 JsiRef(JsiRef<T>&& rhs) : value_(std::move(rhs.value_)) in JsiRef() argument
114 rhs.value_.Reset(); in JsiRef()
117 JsiRef<T>& operator=(const JsiRef<T>& rhs) in operator =() argument
120 value_ = rhs.value_; in operator =()
124 JsiRef<T>& operator=(JsiRef<T>&& rhs) in operator =() argument
173 JsiWeak(const JsiWeak<T>& rhs) JsiWeak() argument
178 JsiWeak(JsiWeak<T>&& rhs) JsiWeak() argument
184 JsiWeak(const JsiRef<T>& rhs) JsiWeak() argument
189 operator =(const JsiWeak<T>& rhs) operator =() argument
197 operator =(const JsiRef<T>& rhs) operator =() argument
204 operator =(JsiWeak<T>&& rhs) operator =() argument
[all...]
/foundation/filemanagement/storage_service/services/storage_daemon/mtpfs/include/
H A Dmtpfs_type_basic.h68 MtpFsTypeBasic &operator = (const MtpFsTypeBasic &rhs) in operator =() argument
70 id_ = rhs.id_; in operator =()
71 parentId_ = rhs.parentId_; in operator =()
72 storageId_ = rhs.storageId_; in operator =()
73 name_ = rhs.name_; in operator =()
77 bool operator == (const std::string &rhs) const in operator ==()
79 return name_ == rhs; in operator ==()
81 bool operator == (const MtpFsTypeBasic &rhs) const in operator ==()
83 return name_ == rhs.name_; in operator ==()
85 bool operator < (const std::string &rhs) cons in operator ==()
[all...]
H A Dmtpfs_type_file.h49 MtpFsTypeFile &operator = (const MtpFsTypeFile &rhs);
51 bool operator == (const std::string &rhs) const in operator ==()
53 return MtpFsTypeBasic::operator == (rhs); in operator ==()
55 bool operator == (const MtpFsTypeFile &rhs) const in operator ==()
57 return MtpFsTypeBasic::operator == (rhs); in operator ==()
59 bool operator < (const std::string &rhs) const in operator <()
61 return MtpFsTypeBasic::operator < (rhs); in operator <()
63 bool operator < (const MtpFsTypeFile &rhs) const in operator <()
65 return MtpFsTypeBasic::operator < (rhs); in operator <()
H A Dmtpfs_type_dir.h94 MtpFsTypeDir &operator = (const MtpFsTypeDir &rhs);
95 bool operator == (const std::string &rhs) const in operator ==()
97 return MtpFsTypeBasic::operator == (rhs); in operator ==()
99 bool operator == (const MtpFsTypeDir &rhs) const in operator ==()
101 return MtpFsTypeBasic::operator == (rhs); in operator ==()
103 bool operator < (const std::string &rhs) const in operator <()
105 return MtpFsTypeBasic::operator < (rhs); in operator <()
107 bool operator < (const MtpFsTypeDir &rhs) const in operator <()
109 return MtpFsTypeBasic::operator < (rhs); in operator <()
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/
H A Duid_range.h32 friend bool operator<(const UidRange &lhs, const UidRange &rhs) in operator <()
34 return lhs.begin_ != rhs.begin_ ? (lhs.begin_ < rhs.begin_) : (lhs.end_ < rhs.end_); in operator <()
37 friend bool operator==(const UidRange &lhs, const UidRange &rhs) in operator ==()
39 return (lhs.begin_ == rhs.begin_ && lhs.end_ == rhs.end_); in operator ==()
42 friend bool operator!=(const UidRange &lhs, const UidRange &rhs) in operator !=()
44 return !(lhs == rhs); in operator !=()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A Djs_ref_ptr.h34 explicit JSRefPtrImpl(const ImplDetail& rhs) : object_(rhs) {} in JSRefPtrImpl() argument
35 explicit JSRefPtrImpl(ImplDetail&& rhs) : object_(std::move(rhs)) {} in JSRefPtrImpl() argument
37 JSRefPtrImpl(const JSRefPtrImpl<T, ImplDetail>& rhs) : object_(rhs.object_) {} in JSRefPtrImpl() argument
38 JSRefPtrImpl(JSRefPtrImpl<T, ImplDetail>&& rhs) : object_(std::move(rhs.object_)) {} in JSRefPtrImpl() argument
39 JSRefPtrImpl<T, ImplDetail>& operator=(const JSRefPtrImpl<T, ImplDetail>& rhs) in operator =() argument
42 object_ = rhs in operator =()
46 operator =(JSRefPtrImpl<T, ImplDetail>&& rhs) operator =() argument
[all...]
/foundation/graphic/graphic_2d/rosen/modules/texgine/export/texgine/
H A Dtext_style.h52 bool operator ==(const FontFeatures& rhs) const;
73 bool operator ==(TextShadow const& rhs) const;
87 bool operator ==(const RectStyle& rhs) const in operator ==()
89 return color == rhs.color && in operator ==()
90 leftTopRadius == rhs.leftTopRadius && in operator ==()
91 rightTopRadius == rhs.rightTopRadius && in operator ==()
92 rightBottomRadius == rhs.rightBottomRadius && in operator ==()
93 leftBottomRadius == rhs.leftBottomRadius; in operator ==()
96 bool operator !=(const RectStyle& rhs) const in operator !=()
98 return color != rhs in operator !=()
[all...]
H A Dtypography_types.h89 TextAlign operator |(TextAlign lhs, TextAlign rhs);
90 TextAlign operator &(TextAlign lhs, TextAlign rhs);
91 TextAlign operator ^(TextAlign lhs, TextAlign rhs);
93 void operator &=(TextAlign &lhs, const TextAlign &rhs);
94 void operator |=(TextAlign &lhs, const TextAlign &rhs);
95 void operator ^=(TextAlign &lhs, const TextAlign &rhs);
116 TextDecoration operator &(TextDecoration const &lhs, TextDecoration const &rhs);
117 TextDecoration operator |(TextDecoration const &lhs, TextDecoration const &rhs);
118 TextDecoration operator ^(TextDecoration const &lhs, TextDecoration const &rhs);
119 TextDecoration operator +(TextDecoration const &lhs, TextDecoration const &rhs);
[all...]
/foundation/resourceschedule/ffrt/src/util/
H A DIntrusiveList.h36 void Swap(SListNode& rhs) noexcept
38 std::swap(next, rhs.next);
56 SList(SList&& rhs) noexcept
58 Swap(rhs); variable
60 SList& operator=(SList&& rhs) noexcept
62 if (this != &rhs) {
63 SList tmp {std::move(rhs)};
87 void Swap(SList& rhs) noexcept
89 m_head.Swap(rhs.m_head);
121 List(List&& rhs) noexcep
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_filter.cpp69 std::shared_ptr<RSFilter> operator+(const std::shared_ptr<RSFilter>& lhs, const std::shared_ptr<RSFilter>& rhs) in operator +() argument
72 return rhs; in operator +()
74 if (rhs == nullptr) { in operator +()
77 return lhs->Add(rhs); in operator +()
80 std::shared_ptr<RSFilter> operator-(const std::shared_ptr<RSFilter>& lhs, const std::shared_ptr<RSFilter>& rhs) in operator -() argument
82 if (rhs == nullptr) { in operator -()
86 return rhs->Negate(); in operator -()
88 return lhs->Sub(rhs); in operator -()
91 std::shared_ptr<RSFilter> operator*(const std::shared_ptr<RSFilter>& lhs, float rhs) in operator *() argument
96 return lhs->Multiply(rhs); in operator *()
[all...]
/foundation/multimedia/camera_framework/services/camera_service/include/
H A Dhcamera_device_manager.h35 inline bool operator == (const CameraProcessPriority& rhs) const in operator ==()
37 return (this->processState_ == rhs.processState_) && (this->focusState_ == rhs.focusState_); in operator ==()
40 inline bool operator < (const CameraProcessPriority& rhs) const in operator <()
45 } else if (this->processUid_ >= maxSysUid_ && rhs.processUid_ < maxSysUid_) { in operator <()
46 MEDIA_DEBUG_LOG("this->processUid_ :%{public}d, rhs.processUid_ :%{public}d", in operator <()
47 this->processUid_, rhs.processUid_); in operator <()
50 if (this->processState_ == rhs.processState_) { in operator <()
51 MEDIA_DEBUG_LOG("this->processState_ :%{public}d == rhs.processState_: %{public}d", in operator <()
52 this->processState_, rhs in operator <()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/txt/
H A Dtext_style.h85 bool operator ==(const RectStyle& rhs) const in operator ==()
87 return color == rhs.color && in operator ==()
88 leftTopRadius == rhs.leftTopRadius && in operator ==()
89 rightTopRadius == rhs.rightTopRadius && in operator ==()
90 rightBottomRadius == rhs.rightBottomRadius && in operator ==()
91 leftBottomRadius == rhs.leftBottomRadius; in operator ==()
94 bool operator !=(const RectStyle& rhs) const in operator !=()
96 return color != rhs.color || in operator !=()
97 leftTopRadius != rhs.leftTopRadius || in operator !=()
98 rightTopRadius != rhs in operator !=()
[all...]
/foundation/CastEngine/castengine_cast_framework/common/include/private/
H A Dcast_service_common.h54 bool operator==(const CastInnerRemoteDevice &rhs) const in operator ==()
56 return deviceId == rhs.deviceId && deviceName == rhs.deviceName && bleMac == rhs.bleMac in operator ==()
57 && wifiIp == rhs.wifiIp && wifiPort == rhs.wifiPort && customData == rhs.customData; in operator ==()
60 bool operator!=(const CastInnerRemoteDevice &rhs) const in operator !=()
62 return !(rhs == *this); in operator !=()
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/
H A Dnet_adj_info.cpp82 bool NetAdjInfo::operator==(const NetAdjInfo &rhs) const in operator ==()
84 if (this == &rhs) { in operator ==()
87 return type_ == rhs.type_ && identity_ == rhs.identity_ && fromIface_ == rhs.fromIface_ && in operator ==()
88 adjQoeLevel_ == rhs.adjQoeLevel_ && netAddrList_ == rhs.netAddrList_; in operator ==()
91 bool NetAdjInfo::operator!=(const NetAdjInfo &rhs) const in operator !=()
93 return !(rhs == *this); in operator !=()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_utils_bridge.h84 JsWeak(const JsWeak<T>& rhs) : value_(rhs.value_) in JsWeak() argument
89 JsWeak(JsWeak<T>&& rhs) : value_(std::move(rhs.value_)) in JsWeak() argument
92 rhs.value_.Reset(); in JsWeak()
95 explicit JsWeak(const T& rhs) : value_(rhs) in JsWeak() argument
100 JsWeak<T>& operator=(const JsWeak<T>& rhs) in operator =() argument
103 value_ = rhs.value_; in operator =()
108 JsWeak<T>& operator=(const T& rhs) in operator =() argument
115 operator =(JsWeak<T>&& rhs) operator =() argument
[all...]
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/
H A Duid.h122 constexpr int compare(const Uid& rhs) const in compare()
124 if (data[0] < rhs.data[0]) { in compare()
127 if (data[0] > rhs.data[0]) { in compare()
130 if (data[1] < rhs.data[1]) { in compare()
133 if (data[1] > rhs.data[1]) { in compare()
141 inline constexpr bool operator<(const Uid& lhs, const Uid& rhs) in operator <() argument
143 if (lhs.data[0] > rhs.data[0]) { in operator <()
146 if (lhs.data[0] < rhs.data[0]) { in operator <()
149 if (lhs.data[1] < rhs.data[1]) { in operator <()
155 inline constexpr bool operator==(const Uid& lhs, const Uid& rhs) in operator ==() argument
160 operator !=(const Uid& lhs, const Uid& rhs) operator !=() argument
[all...]

Completed in 10 milliseconds

123456789