Searched refs:auto_array (Results 1 – 15 of 15) sorted by relevance
51 class auto_array { class55 auto_array(T* = NULL) throw();56 auto_array(auto_array< T >&) throw();57 auto_array(auto_array_ref< T >) throw();58 ~auto_array(void) throw();65 auto_array< T >& operator=(auto_array< T >&) throw();66 auto_array< T >& operator=(auto_array_ref< T >) throw();73 auto_array< T >::auto_array(T* ptr) in auto_array() function in atf::auto_array80 auto_array< T >::auto_array(auto_array< T >& ptr) in auto_array() function in atf::auto_array87 auto_array< T >::auto_array(auto_array_ref< T > ref) in auto_array() function in atf::auto_array[all …]
51 atf::auto_array< test_array >52 do_copy(atf::auto_array< test_array >& ta) in do_copy()54 return atf::auto_array< test_array >(ta); in do_copy()96 using atf::auto_array; in ATF_TEST_CASE_BODY()100 auto_array< test_array > t(new test_array[10]); in ATF_TEST_CASE_BODY()114 using atf::auto_array; in ATF_TEST_CASE_BODY()118 auto_array< test_array > t1(new test_array[10]); in ATF_TEST_CASE_BODY()122 auto_array< test_array > t2(t1); in ATF_TEST_CASE_BODY()138 using atf::auto_array; in ATF_TEST_CASE_BODY()142 auto_array< test_array > t1(new test_array[10]); in ATF_TEST_CASE_BODY()[all …]
49 atf::auto_array< const char* >52 atf::auto_array< const char* > argv(new const char*[c.size() + 1]); in collection_to_argv()
61 auto_array< const char* > m_exec_argv;
57 template< class > friend class utils::auto_array;75 class auto_array { class80 auto_array(T* = NULL) throw();81 auto_array(auto_array< T >&) throw();82 auto_array(detail::auto_array_ref< T >) throw();83 ~auto_array(void) throw();91 auto_array< T >& operator=(auto_array< T >&) throw();92 auto_array< T >& operator=(detail::auto_array_ref< T >) throw();
32 #include "utils/auto_array.hpp"53 /// Constructs a new auto_array from a given pointer.60 auto_array< T >::auto_array(T* ptr) throw() :66 /// Constructs a copy of an auto_array.71 auto_array< T >::auto_array(auto_array< T >& ptr) throw() :77 /// Constructs a new auto_array form a reference.79 /// Internal function used to construct a new auto_array from an object84 auto_array< T >::auto_array(detail::auto_array_ref< T > ref) throw() :90 /// Destructor for auto_array objects.92 auto_array< T >::~auto_array(void) throw()[all …]
41 using utils::auto_array;122 auto_array< test_array > t(new test_array[10]); in ATF_TEST_CASE_BODY()139 auto_array< test_array > t1(new test_array[10]); in ATF_TEST_CASE_BODY()143 auto_array< test_array > t2(t1); in ATF_TEST_CASE_BODY()162 auto_array< test_array > t1(new test_array[10]); in ATF_TEST_CASE_BODY()166 auto_array< test_array > t2 = t1; in ATF_TEST_CASE_BODY()184 auto_array< test_array > t(ta); in ATF_TEST_CASE_BODY()199 auto_array< test_array > t(ta1); in ATF_TEST_CASE_BODY()223 auto_array< test_array > t(ta1); in ATF_TEST_CASE_BODY()244 auto_array< test_array > t1(new test_array[10]); in ATF_TEST_CASE_BODY()[all …]
38 template< class > class auto_array;
34 libutils_a_SOURCES = utils/auto_array.hpp35 libutils_a_SOURCES += utils/auto_array.ipp
51 utils::auto_array< char > _read_buf;54 utils::auto_array< char > _write_buf;
64 utils::auto_array< ::option > long_options;284 utils::auto_array< const char* > argv(new const char*[args.size() + 1]); in parse()
95 utils::auto_array< ::regmatch_t > _matches;
554 utils::auto_array< char > buf(new char[full_template.str().length() + 1]); in mkdtemp_public()606 utils::auto_array< char > buf(new char[full_template.str().length() + 1]); in mkstemp()
210 auto_array< const char * > array(new const char*[(config.size() * 2) + 1]); in init()
122 atf::auto_array< char > buf(new char[file.str().length() + 1]); in temp_file()