Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/wtf/
DRefPtr.h36 ALWAYS_INLINE RefPtr() : m_ptr(0) { } in RefPtr() function
37 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); } in RefPtr() function
38 ALWAYS_INLINE explicit RefPtr(T& ref) : m_ptr(&ref) { m_ptr->ref(); } in RefPtr() function
39 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); } in RefPtr() function
40 …template<typename U> RefPtr(const RefPtr<U>& o, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(o.get()… in RefPtr() function
46 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } in RefPtr() function
82 …template<typename T> template<typename U> inline RefPtr<T>::RefPtr(const PassRefPtr<U>& o, EnsureP… in RefPtr() function
DForward.h31 template<typename T> class RefPtr; variable
DPassRefPtr.h30 template<typename T> class RefPtr; variable
/external/chromium_org/skia/ext/
Drefptr.h47 RefPtr() : ptr_(NULL) {} in RefPtr() function
49 RefPtr(const RefPtr& other) in RefPtr() function
55 RefPtr(const RefPtr<U>& other) in RefPtr() function
98 explicit RefPtr(T* ptr) : ptr_(ptr) {} in RefPtr() function
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
Dp5.cpp47 struct RefPtr { struct
52 intrefptr;
57 intrefptr2;
62 refptr0;
66 refptr1;
73 refptr2; // expected-note {{in instantiation}}
/external/clang/test/SemaTemplate/
Dinstantiate-default-assignment-operator.cpp3 template<typename T> struct RefPtr { struct
4RefPtr& operator=(const RefPtr&) { int a[sizeof(T) ? -1 : -1];} // expected-error 2 {{array with a… in operator =() argument
/external/clang/test/CodeGenCXX/
Dvtable-available-externally.cpp84 template <class T> struct RefPtr { struct
85 T* p;
86 ~RefPtr() { in ~RefPtr()
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp12.cpp15 template<typename> struct RefPtr { }; struct