Searched refs:scoped_ptr (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10.1/smb-759.0/lib/librpc/
H A Dmemory.hpp258 * @class scoped_ptr
262 * The default behavior of scoped_ptr is to use the delete operator
267 * scoped_ptr is intended to be identical to std::auto_ptr, so the
271 struct scoped_ptr { struct in namespace:platform
273 scoped_ptr() : pointer(0) {} function in struct:platform::scoped_ptr
274 explicit scoped_ptr(T * t) : pointer(t) {} function in struct:platform::scoped_ptr
275 scoped_ptr(scoped_ptr& rhs) : pointer(rhs.release()) {} function in struct:platform::scoped_ptr
277 ~scoped_ptr() {
283 scoped_ptr
331 typedef scoped_ptr<T, malloc_ptr_free> scoped_ptr; typedef in struct:platform::malloc_ptr
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h216 const internal::scoped_ptr< ::std::stringstream> ss_;
H A Dgtest.h318 internal::scoped_ptr< ::std::string> message_;
718 const internal::scoped_ptr<const ::std::string> type_param_;
721 const internal::scoped_ptr<const ::std::string> value_param_;
875 const internal::scoped_ptr<const ::std::string> type_param_;
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h136 scoped_ptr<ParamIteratorInterface<T> > impl_;
337 // Use of scoped_ptr helps manage cached value's lifetime,
339 mutable scoped_ptr<const T> value_;
535 const scoped_ptr<TestMetaFactoryBase<ParamType> > test_meta_factory;
H A Dgtest-death-test-internal.h195 ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
H A Dgtest-port.h148 // scoped_ptr - as in TR2.
774 // Defines scoped_ptr.
776 // This implementation of scoped_ptr is PARTIAL - it only contains
779 class scoped_ptr { class in namespace:testing::internal
783 explicit scoped_ptr(T* p = NULL) : ptr_(p) {} function in class:testing::internal::scoped_ptr
784 ~scoped_ptr() { reset(); }
807 GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr);
H A Dgtest-internal-inl.h888 internal::scoped_ptr<InternalRunDeathTestFlag> internal_run_death_test_flag_;
889 internal::scoped_ptr<internal::DeathTestFactory> death_test_factory_;

Completed in 205 milliseconds