Home
last modified time | relevance | path

Searched refs:ark_web_scoped_refptr (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/web/webview/ohos_interface/ohos_glue/base/include/
H A Dark_web_scoped_refptr.h20 class ark_web_scoped_refptr {
22 ark_web_scoped_refptr() = default;
24 ark_web_scoped_refptr(T* p) : ptr_(p) in ark_web_scoped_refptr() function
31 ark_web_scoped_refptr(const ark_web_scoped_refptr& r) : ark_web_scoped_refptr(r.ptr_) {} in ark_web_scoped_refptr() function
33 ~ark_web_scoped_refptr() in ~ark_web_scoped_refptr()
55 ark_web_scoped_refptr& operator=(std::nullptr_t)
60 ark_web_scoped_refptr& operator=(T* p)
62 return *this = ark_web_scoped_refptr(p);
65 ark_web_scoped_refptr& operator=(ark_web_scoped_refptr r) noexcept
H A Dark_web_types.h30 using ArkWebRefPtr = ark_web_scoped_refptr<T>;