Home
last modified time | relevance | path

Searched defs:RsAny (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/round_corner_display/
H A Drs_any.h24 struct RsAny { struct
25 RsAny(void) {} in RsAny() function
26 RsAny(const RsAny &that) : m_ptr(that.Clone()) {} in RsAny() argument
27 RsAny(RsAny &&that) : m_ptr(std::move(that.m_ptr)) {} in RsAny() function
30 … !std::is_same<typename std::decay<U>::type, RsAny>::value, U>::type> RsAny(U &&value) : m_ptr( in RsAny() function
50 RsAny& operator=(const RsAny &a) argument
62 using BaseUPtr = std::unique_ptr<Base>;
63 struct Base {
69 struct Derived : Base {
81 BaseUPtr m_ptr;
[all …]