Searched defs:auto_ptr (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h2 class auto_ptr { class
6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } function in class:auto_ptr
7 ~auto_ptr() { delete _M_ptr; }
/external/clang/test/CodeGenCXX/
H A D2010-07-23-DeclLoc.cpp14 template<typename _Tp> class auto_ptr { class in namespace:std
18 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } function in class:std::auto_ptr
78 std::auto_ptr< TRawSymbolOwnerData<SIZE> > data(new TRawSymbolOwnerData<SIZE>());
79 std::auto_ptr< TExtendedMachOHeader<SIZE_AND_ENDIANNESS> > header;
/external/clang/test/SemaCXX/
H A Dconversion-function.cpp246 // auto_ptr-like template. In particular, we can't create multiple
248 struct auto_ptr { struct in namespace:PR7055
251 auto_ptr(auto_ptr&);
252 auto_ptr(auto_ptr_ref);
253 explicit auto_ptr(int *);
259 X(auto_ptr);
263 X x(auto_ptr(new int));
264 return X(auto_ptr(new int));
267 auto_ptr fo
[all...]

Completed in 122 milliseconds