Definition at line 13 of file rm_cp_test.cpp.
◆ CPPUNIT_TEST() [1/11]
◆ CPPUNIT_TEST() [2/11]
◆ CPPUNIT_TEST() [3/11]
RmCpTest::CPPUNIT_TEST |
( |
remif1 |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [4/11]
◆ CPPUNIT_TEST() [5/11]
◆ CPPUNIT_TEST() [6/11]
◆ CPPUNIT_TEST() [7/11]
◆ CPPUNIT_TEST() [8/11]
◆ CPPUNIT_TEST() [9/11]
◆ CPPUNIT_TEST() [10/11]
◆ CPPUNIT_TEST() [11/11]
◆ CPPUNIT_TEST_SUITE()
RmCpTest::CPPUNIT_TEST_SUITE |
( |
RmCpTest |
| ) |
|
|
private |
◆ CPPUNIT_TEST_SUITE_END()
RmCpTest::CPPUNIT_TEST_SUITE_END |
( |
| ) |
|
|
private |
◆ remcopy1()
void RmCpTest::remcopy1 |
( |
| ) |
|
|
protected |
Definition at line 216 of file rm_cp_test.cpp.
217{
218 int numbers[6] = { 1, 2, 3, 1, 2, 3 };
219 int result[6] = { 0, 0, 0, 0, 0, 0 };
220
222
229}
_STLP_INLINE_LOOP _OutputIter remove_copy(_InputIter __first, _InputIter __last, _OutputIter __result, const _Tp &__val)
#define CPPUNIT_ASSERT(X)
◆ remcpif1()
void RmCpTest::remcpif1 |
( |
| ) |
|
|
protected |
Definition at line 231 of file rm_cp_test.cpp.
232{
233 int numbers[6] = { 1, 2, 3, 1, 2, 3 };
234 int result[6] = { 0, 0, 0, 0, 0, 0 };
235
237
238
245}
_STLP_INLINE_LOOP _OutputIter remove_copy_if(_InputIter __first, _InputIter __last, _OutputIter __result, _Predicate __pred)
◆ remif1()
void RmCpTest::remif1 |
( |
| ) |
|
|
protected |
Definition at line 201 of file rm_cp_test.cpp.
202{
203 int numbers[6] = { 0, 0, 1, 1, 2, 2 };
204
206
207
214}
_STLP_INLINE_LOOP _ForwardIter remove_if(_ForwardIter __first, _ForwardIter __last, _Predicate __pred)
◆ remove1()
void RmCpTest::remove1 |
( |
| ) |
|
|
protected |
Definition at line 187 of file rm_cp_test.cpp.
188{
189 int numbers[6] = { 1, 2, 3, 1, 2, 3 };
190 remove((
int*)numbers, (
int*)numbers + 6, 1);
191
192
199}
◆ repcpif1()
void RmCpTest::repcpif1 |
( |
| ) |
|
|
protected |
Definition at line 153 of file rm_cp_test.cpp.
154{
158 vector <int>
v2(
v1.size());
159
160
161
162
174
185}
_STLP_INLINE_LOOP _OutputIter replace_copy_if(_Iterator __first, _Iterator __last, _OutputIter __result, _Predicate __pred, const _Tp &__new_value)
GLfloat GLfloat GLfloat v2
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
◆ replace0()
void RmCpTest::replace0 |
( |
| ) |
|
|
protected |
Definition at line 117 of file rm_cp_test.cpp.
118{
119 int numbers[6] = { 0, 1, 2, 0, 1, 2 };
120
121 replace(numbers, numbers + 6, 2, 42);
122
123
130}
INT replace(TCHAR source[MAX_PATH], TCHAR dest[MAX_PATH], DWORD dwFlags, BOOL *doMore)
◆ replace1()
void RmCpTest::replace1 |
( |
| ) |
|
|
protected |
◆ replcpy1()
void RmCpTest::replcpy1 |
( |
| ) |
|
|
protected |
Definition at line 103 of file rm_cp_test.cpp.
104{
105 int numbers[6] = { 0, 1, 2, 0, 1, 2 };
106 int result[6] = { 0, 0, 0, 0, 0, 0 };
107
115}
_STLP_INLINE_LOOP _OutputIter replace_copy(_InputIter __first, _InputIter __last, _OutputIter __result, const _Tp &__old_value, const _Tp &__new_value)
◆ replif1()
void RmCpTest::replif1 |
( |
| ) |
|
|
protected |
Definition at line 82 of file rm_cp_test.cpp.
83{
87
89
90
101}
_STLP_INLINE_LOOP void replace_if(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, const _Tp &__new_value)
◆ revcopy1()
void RmCpTest::revcopy1 |
( |
| ) |
|
|
protected |
Definition at line 67 of file rm_cp_test.cpp.
68{
69 int numbers[6] = { 0, 1, 2, 3, 4, 5 };
70
73
80}
_STLP_INLINE_LOOP _OutputIter reverse_copy(_BidirectionalIter __first, _BidirectionalIter __last, _OutputIter __result)
◆ reverse1()
void RmCpTest::reverse1 |
( |
| ) |
|
|
protected |
Definition at line 54 of file rm_cp_test.cpp.
55{
56 int numbers[6] = { 0, 1, 2, 3, 4, 5 };
57
65}
static void reverse(int *pidx, int cch)
The documentation for this class was generated from the following file: