Home
last modified time | relevance | path

Searched refs:TestClass (Results 1 – 25 of 56) sorted by relevance

123

/external/stlport/test/eh/
DTestClass.h32 class TestClass
35 inline TestClass();
36 inline TestClass( int value );
37 inline TestClass( const TestClass& rhs );
38 inline ~TestClass();
40 inline TestClass& operator=( const TestClass& rhs );
43 inline TestClass operator!() const;
45 bool operator==( const TestClass& rhs ) const
50 bool operator<( const TestClass& rhs ) const {
69 __MSL_FIX_ITERATORS__(TestClass);
[all …]
Dtest_algobase.cpp37 : stuff( new TestClass[kBufferSize] ), end_of_stuff(stuff + kBufferSize) { in test_uninitialized_copy()
43 void operator()( TestClass* buffer ) const in operator ()()
45 EH_STD::uninitialized_copy((TestClass*)stuff, (TestClass*)end_of_stuff, buffer ); in operator ()()
46 EH_ASSERT( EH_STD::equal( (TestClass*)stuff, (TestClass*)end_of_stuff, buffer ) ); in operator ()()
51 TestClass * stuff;
52 TestClass * end_of_stuff;
61 void operator()( TestClass* buffer ) const in operator ()()
63 TestClass* buf_end = buffer + kBufferSize; in operator ()()
70 TestClass testValue;
78 void operator()( TestClass* buffer ) const in operator ()()
[all …]
DSortClass.h26 class SortClass : public TestClass
31 SortClass( int v ) : TestClass( v ), addr(0) { in SortClass()
35 SortClass() : TestClass( (int)get_random(kRange) ), addr(0) { in SortClass()
39 bool operator<( const TestClass& rhs ) const
42 return (const TestClass&)*this < ( rhs );
45 bool operator==( const TestClass& rhs ) const
48 return (const TestClass&)*this == ( rhs );
Dtest_vector.cpp31 typedef EH_STD::vector<TestClass, eh_allocator(TestClass) > TestVector;
33 typedef EH_STD::__vector__<TestClass, eh_allocator(TestClass) > TestVector;
64 inline void prepare_insert_range( TestVector& vec, size_t, TestClass* first, TestClass* last ) in prepare_insert_range()
86 TestClass x; in test_vector()
88 testVector2.push_back( TestClass() ); in test_vector()
92 TestClass *insFirst = new TestVector::value_type[1+ insCnt]; in test_vector()
DThrowCompare.h25 bool operator()( const TestClass& a, const TestClass& b ) const { in operator()
33 inline bool operator()( const TestClass& a, const TestClass& b ) const { in operator()
40 inline EH_CSTD::size_t operator()( const TestClass& a ) const { in operator()
Dtest_slist.cpp32 typedef EH_STD::slist<TestClass, eh_allocator(TestClass) > TestSList;
34 typedef EH_STD::__slist__<TestClass, eh_allocator(TestClass) > TestSList;
60 TestClass x; in test_slist()
62 testSList2.push_front( TestClass() ); in test_slist()
74 TestClass *insFirst = new TestSList::value_type[1+insCnt]; in test_slist()
Dtest_hash_map.cpp37 typedef EH_STD::__hash_multimap__<TestClass, TestClass, ThrowHash, ThrowEqual,
38 eh_allocator(TestClass) > TestMultiMap;
84 typedef EH_STD::__hash_map__<TestClass, TestClass, ThrowHash,
85 ThrowEqual, eh_allocator(TestClass) > TestMap;
Dtest_map.cpp48 typedef EH_STD::__multimap__<TestClass, TestClass, ThrowCompare, eh_allocator(TestClass) > TestMult…
86 typedef EH_STD::__map__<TestClass, TestClass, ThrowCompare, eh_allocator(TestClass) > TestMap;
Dtest_list.cpp31 typedef EH_STD::__list__<TestClass, eh_allocator(TestClass) > TestList;
71 TestClass x; in test_list()
73 testList2.push_back( TestClass() ); in test_list()
85 TestClass *insFirst = new TestList::value_type[1+insCnt]; in test_list()
Dtest_set.cpp34 typedef EH_STD::__multiset__<TestClass, ThrowCompare, eh_allocator(TestClass) > TestMultiSet;
68 typedef EH_STD::__set__<TestClass, ThrowCompare, eh_allocator(TestClass) > TestSet;
Dtest_hash_set.cpp32 typedef EH_STD::__hash_multiset__<TestClass, ThrowHash, ThrowEqual,
33 eh_allocator(TestClass) > TestMultiSet;
80 typedef EH_STD::__hash_set__<TestClass, ThrowHash, ThrowEqual, eh_allocator(TestClass) > TestSet;
Dexport4 TestClass.cpp
5 TestClass.h
Dtest_valarray.cpp30 typedef __valarray__<TestClass, eh_allocator(TestClass) > TestValarray;
DTestClass.cpp20 std::ostream& operator << (std::ostream& s, const TestClass& t) { in operator <<()
Ddescrip.mms14 AUX_LIST=TestClass.obj,main.obj,nc_alloc.obj,random_number.obj
Dcray.mak9 AUX_LIST=TestClass.o main.o nc_alloc.o random_number.o
Dcomo-linux.mak14 AUX_LIST=TestClass.cpp main.cpp nc_alloc.cpp random_number.cpp
Dtest_deque.cpp37 typedef TestClass DQTestClass;
Dintel.mak26 Dep_stl = TestClass.obj main.obj nc_alloc.obj \
/external/chromium/third_party/icu/source/test/intltest/
Ditformat.cpp56 #define TESTCLASS(id, TestClass) \ argument
58 name = #TestClass; \
60 logln(#TestClass " test---"); \
62 TestClass test; \
/external/icu4c/test/intltest/
Ditformat.cpp59 #define TESTCLASS(id, TestClass) \ argument
61 name = #TestClass; \
63 logln(#TestClass " test---"); \
65 TestClass test; \
/external/gtest/include/gtest/internal/
Dgtest-internal.h543 template <class TestClass>
546 virtual Test* CreateTest() { return new TestClass; } in CreateTest()
673 typedef typename GTEST_BIND_(TestSel, Type) TestClass; in Register() typedef
684 TestClass::SetUpTestCase, in Register()
685 TestClass::TearDownTestCase, in Register()
686 new TestFactoryImpl<TestClass>); in Register()
Dgtest-param-util.h361 template <class TestClass>
364 typedef typename TestClass::ParamType ParamType;
368 TestClass::SetParam(&parameter_); in CreateTest()
369 return new TestClass(); in CreateTest()
/external/protobuf/gtest/include/gtest/internal/
Dgtest-internal.h542 template <class TestClass>
545 virtual Test* CreateTest() { return new TestClass; } in CreateTest()
672 typedef typename GTEST_BIND_(TestSel, Type) TestClass; in Register() typedef
683 TestClass::SetUpTestCase, in Register()
684 TestClass::TearDownTestCase, in Register()
685 new TestFactoryImpl<TestClass>); in Register()
Dgtest-param-util.h370 template <class TestClass>
373 typedef typename TestClass::ParamType ParamType;
377 TestClass::SetParam(&parameter_); in CreateTest()
378 return new TestClass(); in CreateTest()

123