Searched refs:copy (Results 1 - 25 of 105) sorted by path

12345

/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php24 // you must *copy* (apache doesn't seem to like symlinks) it there.
/haiku/headers/cpp/
H A Dalgobase.h6 * Permission to use, copy, modify, distribute and sell this software
17 * Permission to use, copy, modify, distribute and sell this software
49 using __STD::copy;
H A Dsstream15 You should have received a copy of the GNU General Public License
62 str.copy(stream, stream_len);
88 str.copy(stream, stream_len);
H A Dstl_algo.h6 * Permission to use, copy, modify, distribute and sell this software
18 * Permission to use, copy, modify, distribute and sell this software
829 return copy(__first, __middle, copy(__middle, __last, __result));
1067 copy(__buffer, __result2, __result1);
1955 return copy(__first2, __last2, copy(__first1, __last1, __result));
1974 return copy(__first2, __last2, copy(__first1, __last1, __result));
2062 __buffer_end = copy(__middl
[all...]
H A Dstl_algobase.h6 * Permission to use, copy, modify, distribute and sell this software
18 * Permission to use, copy, modify, distribute and sell this software
113 // copy
116 // calls to copy with memmove whenever possible. (Memmove, not memcpy,
157 static _OutputIter copy(_InputIter __first, _InputIter __last, function in struct:__copy_dispatch
168 static _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) { function in struct:__copy_dispatch
176 static _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) { function in struct:__copy_dispatch
182 inline _OutputIter copy(_InputIter __first, _InputIter __last, function
188 ::copy(__first, __last, __result);
194 inline _OutputIter copy(_InputIte function
202 inline char* copy(const char* __first, const char* __last, char* __result) { function
207 inline wchar_t* copy(const wchar_t* __first, const wchar_t* __last, function
259 static _BidirectionalIter2 copy(_BidirectionalIter1 __first, function in struct:__copy_backward_dispatch
269 static _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) { function in struct:__copy_backward_dispatch
279 static _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) { function in struct:__copy_backward_dispatch
[all...]
H A Dstl_bvector.h6 * Permission to use, copy, modify, distribute and sell this software
18 * Permission to use, copy, modify, distribute and sell this software
429 iterator __i = copy(begin(), __position, iterator(__q, 0));
431 _M_finish = copy(__position, end(), __i);
455 copy(__first, __last, _M_start);
477 copy(__first, __last, __position);
483 iterator __i = copy(begin(), __position, iterator(__q, 0));
484 __i = copy(__first, __last, __i);
485 _M_finish = copy(__position, end(), __i);
543 copy(__
[all...]
H A Dstl_deque.h6 * Permission to use, copy, modify, distribute and sell this software
18 * Permission to use, copy, modify, distribute and sell this software
617 erase(copy(__x.begin(), __x.end(), _M_start), _M_finish);
620 copy(__x.begin(), __mid, _M_start);
683 copy(__first, __mid, begin());
687 erase(copy(__first, __last, begin()), end());
823 copy(__next, _M_finish, __pos);
1059 copy(__last, _M_finish, __first);
1243 copy(__first, __last, inserter(*this, __pos));
1294 copy(__front
[all...]
H A Dstl_rope.h5 * Permission to use, copy, modify, distribute and sell this software
20 // really copy enough of the data structure to leave the original
127 copy(__x._M_buffer, __x._M_buffer + __x._M_buf_count, _M_buffer);
144 copy(__x._M_buffer, __x._M_buffer + __x._M_buf_count, _M_buffer);
263 // Internal rope nodes potentially store a copy of the allocator
774 // a copy constructor or generating reference to a proxy
799 // the only unusual operation it uses is the copy constructor, which
1000 // Perhaps we should instead copy the iterator
1329 // For strings shorter than _S_copy_max, we copy to
1746 void copy(_Char function in class:rope
1756 size_type copy(size_type __pos, size_type __n, _CharT* __buffer) const function in class:rope
2280 size_type copy(_CharT* __buffer, size_type __n, function in class:rope
[all...]
H A Dstl_uninitialized.h6 * Permission to use, copy, modify, distribute and sell this software
18 * Permission to use, copy, modify, distribute and sell this software
38 // Valid if copy construction is equivalent to assignment, and if the
46 return copy(__first, __last, __result);
141 // Valid if copy construction is equivalent to assignment, and if the
181 // Valid if copy construction is equivalent to assignment, and if the
H A Dstl_vector.h6 * Permission to use, copy, modify, distribute and sell this software
18 * Permission to use, copy, modify, distribute and sell this software
408 copy(__position + 1, _M_finish, __position);
414 iterator __i = copy(__last, _M_finish, __first);
531 iterator __i = copy(__x.begin(), __x.end(), begin());
535 copy(__x.begin(), __x.begin() + size(), _M_start);
586 iterator __new_finish = copy(__first, __last, _M_start);
593 copy(__first, __mid, _M_start);
740 copy(__first, __last, __position);
749 copy(__firs
[all...]
/haiku/headers/cpp/std/
H A Dbastring.cc15 // You should have received a copy of the GNU General Public License
72 p->copy (0, data (), len);
106 p->copy (0, data (), length ());
136 copy (size_t pos, const charT *s, size_t n) function in class:basic_string::Rep
139 traits::copy (data () + pos, s, n);
165 p->copy (0, data (), pos);
166 p->copy (pos + n2, data () + pos + n1, len - (pos + n1));
167 p->copy (pos, s, n2);
173 rep ()->copy (pos, s, n2);
201 p->copy (
231 copy (charT* s, size_type n, size_type pos) const function in class:basic_string
[all...]
H A Dstraits.h15 // You should have received a copy of the GNU General Public License
77 static char_type* copy (char_type* s1, const char_type* s2, size_t n) function in struct:string_char_traits
126 static char_type* copy (char_type* s1, const char_type* s2, size_t n) function in struct:string_char_traits
154 static char_type* copy (char_type* s1, const char_type* s2, size_t n)
/haiku/headers/libs/print/libprint/
H A DStatusWindow.h25 bool UpdateStatusBar(uint32 page, uint32 copy);
/haiku/headers/os/mail/
H A DMailContainer.h40 BMIMEMultipartMailContainer(BMIMEMultipartMailContainer &copy);
/haiku/headers/private/userlandfs/legacy/
H A Dfsproto.h234 extern _IMPEXP_KERNEL int new_path(const char *path, char **copy);
/haiku/headers/tools/cppunit/
H A DLockerSyncObject.h23 //! Prevents the use of the copy constructor.
24 LockerSyncObject( const LockerSyncObject &copy );
26 //! Prevents the use of the copy operator.
27 void operator =( const LockerSyncObject &copy );
H A DSemaphoreSyncObject.h23 //! Prevents the use of the copy constructor.
24 SemaphoreSyncObject( const SemaphoreSyncObject &copy );
26 //! Prevents the use of the copy operator.
27 void operator =( const SemaphoreSyncObject &copy );
H A DTestShell.h176 //! Prevents the use of the copy constructor.
177 BTestShell( const BTestShell &copy );
179 //! Prevents the use of the copy operator.
180 void operator =( const BTestShell &copy );
/haiku/headers/tools/cppunit/cppunit/
H A DCompilerOutputter.h90 /// Prevents the use of the copy constructor.
91 CompilerOutputter( const CompilerOutputter &copy );
93 /// Prevents the use of the copy operator.
94 void operator =( const CompilerOutputter &copy );
H A DSynchronizedObject.h70 /// Prevents the use of the copy constructor.
71 SynchronizedObject( const SynchronizedObject &copy );
73 /// Prevents the use of the copy operator.
74 void operator =( const SynchronizedObject &copy );
H A DTestResultCollector.h71 /// Prevents the use of the copy constructor.
72 TestResultCollector( const TestResultCollector &copy );
74 /// Prevents the use of the copy operator.
75 void operator =( const TestResultCollector &copy );
H A DTextOutputter.h48 /// Prevents the use of the copy constructor.
49 TextOutputter( const TextOutputter &copy );
51 /// Prevents the use of the copy operator.
52 void operator =( const TextOutputter &copy );
H A DTextTestProgressListener.h30 /// Prevents the use of the copy constructor.
31 TextTestProgressListener( const TextTestProgressListener &copy );
33 /// Prevents the use of the copy operator.
34 void operator =( const TextTestProgressListener &copy );
H A DXmlOutputter.h118 /// Prevents the use of the copy constructor.
119 XmlOutputter( const XmlOutputter &copy );
121 /// Prevents the use of the copy operator.
122 void operator =( const XmlOutputter &copy );
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DTestFactoryRegistry.h129 TestFactoryRegistry( const TestFactoryRegistry &copy );
130 void operator =( const TestFactoryRegistry &copy );

Completed in 126 milliseconds

12345