Home | History | Annotate | Download | only in rs

Lines Matching refs:ref

104     ObjectBaseRef(const ObjectBaseRef &ref) {
105 mRef = ref.get();
111 ObjectBaseRef(T *ref) {
112 mRef = ref;
114 ref->incSysRef();
118 ObjectBaseRef & operator= (const ObjectBaseRef &ref) {
119 if (&ref != this) {
120 set(ref);
129 void set(T *ref) {
130 if (mRef != ref) {
132 mRef = ref;
134 ref->incSysRef();
139 void set(const ObjectBaseRef &ref) {
140 set(ref.mRef);