Home | History | Annotate | Download | only in common

Lines Matching full:instance

31  * A SharedPtr<T> instance can refer to no object or an object of type T.
35 * assigning the SharedPtr instance, not the T object which could be large.
37 * clients can still assume that each SharedPtr<T> instance has its own
38 * private instance of T because each SharedPtr<T> instance offers only a
41 * readWrite() on the SharedPtr instance. readWrite() ensures that the
108 * pointer, returns FALSE while leaving this instance unchanged.
121 * reset makes this instance refer to no object.
140 * Swaps this instance with other.
168 * readOnly gives const access to this instance's T object. If this
169 * instance refers to no object, returns NULL.
178 * On memory allocation error or if this instance refers to no object,
179 * this method returns NULL leaving this instance unchanged.