Home | History | Annotate | Download | only in internal

Lines Matching defs:scoped_ptr

221 //   scoped_ptr     - as in TR2.
1123 // Defines scoped_ptr.
1125 // This implementation of scoped_ptr is PARTIAL - it only contains
1128 class scoped_ptr {
1132 explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
1133 ~scoped_ptr() { reset(); }
1154 friend void swap(scoped_ptr& a, scoped_ptr& b) {
1162 GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr);
1929 scoped_ptr<ValueHolderFactory> default_factory_;
2135 scoped_ptr<ValueHolderFactory> default_factory_;