/external/stlport/test/eh/ |
H A D | TestClass.h | 2 TestClass.h 15 SUMMARY: TestClass simulates a class that uses resources. It is designed to 32 class TestClass class 35 inline TestClass(); 36 inline TestClass( int value ); 37 inline TestClass( const TestClass& rhs ); 38 inline ~TestClass(); 40 inline TestClass& operator=( const TestClass 69 __MSL_FIX_ITERATORS__(TestClass); variable 70 __MSL_FIX_ITERATORS__(const TestClass); variable 87 inline TestClass::TestClass() function in class:TestClass 92 inline TestClass::TestClass( int value ) function in class:TestClass 97 inline TestClass::TestClass( const TestClass& rhs ) function in class:TestClass [all...] |
H A D | ThrowCompare.h | 22 #include "TestClass.h" 25 bool operator()( const TestClass& a, const TestClass& b ) const { 33 inline bool operator()( const TestClass& a, const TestClass& b ) const { 40 inline EH_CSTD::size_t operator()( const TestClass& a ) const {
|
H A D | test_algobase.cpp | 28 #include "TestClass.h" 37 : stuff( new TestClass[kBufferSize] ), end_of_stuff(stuff + kBufferSize) { 43 void operator()( TestClass* buffer ) const 45 EH_STD::uninitialized_copy((TestClass*)stuff, (TestClass*)end_of_stuff, buffer ); 46 EH_ASSERT( EH_STD::equal( (TestClass*)stuff, (TestClass*)end_of_stuff, buffer ) ); 51 TestClass * stuff; 52 TestClass * end_of_stuff; 61 void operator()( TestClass* buffe [all...] |
H A D | TestClass.cpp | 2 TestClass.cpp 16 #include "TestClass.h" 20 std::ostream& operator << (std::ostream& s, const TestClass& t) {
|
H A D | SortClass.h | 24 # include "TestClass.h" 26 class SortClass : public TestClass 31 SortClass( int v ) : TestClass( v ), addr(0) { 35 SortClass() : TestClass( (int)get_random(kRange) ), addr(0) { 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 );
|
H A D | test_slist.cpp | 18 # include "TestClass.h" 32 typedef EH_STD::slist<TestClass, eh_allocator(TestClass) > TestSList; 34 typedef EH_STD::__slist__<TestClass, eh_allocator(TestClass) > TestSList; 60 TestClass x; 62 testSList2.push_front( TestClass() ); 74 TestClass *insFirst = new TestSList::value_type[1+insCnt];
|
H A D | test_vector.cpp | 17 #include "TestClass.h" 31 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 ) 86 TestClass x; 88 testVector2.push_back( TestClass() ); 92 TestClass *insFirs [all...] |
H A D | test_hash_map.cpp | 18 #include "TestClass.h" 31 template struct pair<const TestClass, TestClass>; 32 template struct __hashtable_node<pair<const TestClass, TestClass> >; 33 template class hash_map<TestClass, TestClass, ThrowHash, ThrowEqual>; 34 template class hash_multimap<TestClass, TestClass, ThrowHash, ThrowEqual>; 37 typedef EH_STD::__hash_multimap__<TestClass, TestClas [all...] |
H A D | test_map.cpp | 17 #include "TestClass.h" 48 typedef EH_STD::__multimap__<TestClass, TestClass, ThrowCompare, eh_allocator(TestClass) > TestMultiMap; 86 typedef EH_STD::__map__<TestClass, TestClass, ThrowCompare, eh_allocator(TestClass) > TestMap;
|
H A D | test_list.cpp | 17 #include "TestClass.h" 31 typedef EH_STD::__list__<TestClass, eh_allocator(TestClass) > TestList; 71 TestClass x; 73 testList2.push_back( TestClass() ); 85 TestClass *insFirst = new TestList::value_type[1+insCnt];
|
H A D | test_hash_set.cpp | 22 #include "TestClass.h" 32 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;
|
H A D | test_set.cpp | 17 #include "TestClass.h" 34 typedef EH_STD::__multiset__<TestClass, ThrowCompare, eh_allocator(TestClass) > TestMultiSet; 68 typedef EH_STD::__set__<TestClass, ThrowCompare, eh_allocator(TestClass) > TestSet;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg1/ |
H A D | TestClass.java | 24 * as the TestClass in o.a.h.l.tests.pkg2 26 public class TestClass implements Serializable { class in inherits:Serializable
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg2/ |
H A D | TestClass.java | 24 * as the TestClass in o.a.h.l.tests.pkg1 26 public class TestClass implements Serializable { class in inherits:Serializable
|
/external/android-mock/tests/com/google/android/testing/mocking/ |
H A D | ConstructorCreationTests.java | 42 public static class TestClass { class in class:ConstructorCreationTests 47 public TestClass(Foo foo) { method in class:ConstructorCreationTests.TestClass 51 public TestClass(Foo foo, Bar bar) { method in class:ConstructorCreationTests.TestClass 55 public TestClass(int v1) { method in class:ConstructorCreationTests.TestClass 59 public TestClass(int v1, float v2) { method in class:ConstructorCreationTests.TestClass 65 public TestClass(int v1, double v2) { method in class:ConstructorCreationTests.TestClass 73 Constructor<TestClass> constructor = 74 AndroidMock.getConstructorFor(TestClass.class, args); 80 Constructor<TestClass> constructor = 81 AndroidMock.getConstructorFor(TestClass [all...] |
/external/javassist/src/test/test/javassist/proxy/ |
H A D | ProxyFactoryCompatibilityTest.java | 47 factory.setSuperclass(TestClass.class); 54 TestClass proxy1 = (TestClass)proxyClass1.newInstance(); 61 TestClass proxy2 = (TestClass)proxyClass2.newInstance(); 71 factory.setSuperclass(TestClass.class); 79 TestClass proxy3 = (TestClass)proxyClass3.newInstance(); 85 TestClass proxy4 = (TestClass)proxyClass 95 public static class TestClass { class in class:ProxyFactoryCompatibilityTest [all...] |
H A D | ProxySerializationTest.java | 21 factory.setSuperclass(TestClass.class); 34 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name}); 43 TestClass newProxy = (TestClass)in.readObject(); 61 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name}); 70 TestClass newProxy = (TestClass)in.readObject(); 128 public static class TestClass implement class in class:ProxySerializationTest 132 public TestClass() method in class:ProxySerializationTest.TestClass 136 public TestClass(String name) method in class:ProxySerializationTest.TestClass [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/ |
H A D | AccessibleObjectTest.java | 24 public class TestClass { class in class:AccessibleObjectTest 34 AccessibleObject ao = TestClass.class.getField("aField"); 49 AccessibleObject ao = TestClass.class.getField("aField");
|
/external/guava/guava-tests/test/com/google/common/base/ |
H A D | ToStringHelperTest.java | 49 String toTest = Objects.toStringHelper(new TestClass()).toString(); 50 assertEquals("TestClass{}", toTest); 54 String toTest = Objects.toStringHelper(new TestClass()).toString(); 71 String toTest = Objects.toStringHelper(TestClass.class).toString(); 72 assertEquals("TestClass{}", toTest); 76 String toTest = Objects.toStringHelper(TestClass.class).toString(); 154 String toTest = Objects.toStringHelper(new TestClass()) 157 assertEquals("TestClass{field1=Hello}", toTest); 162 String toTest = Objects.toStringHelper(new TestClass()) 165 assertEquals("TestClass{field 330 private static class TestClass {} class in class:ToStringHelperTest [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
H A D | ClassTest.java | 60 public static class TestClass { class in class:ClassTest 83 public TestClass() { method in class:ClassTest.TestClass 87 private TestClass(Object o) { method in class:ClassTest.TestClass 91 public static class SubTestClass extends TestClass { 233 TestClass.class.getConstructor(new Class[0]); 235 TestClass.class.getConstructor(Object.class); 246 Constructor[] c = TestClass.class.getConstructors(); 261 Constructor<TestClass> c = TestClass.class.getDeclaredConstructor(new Class[0]); 263 c = TestClass [all...] |
/external/icu4c/test/intltest/ |
H A D | itformat.cpp | 63 #define TESTCLASS(id, TestClass) \ 65 name = #TestClass; \ 67 logln(#TestClass " test---"); \ 69 TestClass test; \
|
/external/junit/src/org/junit/internal/runners/ |
H A D | ClassRoadie.java | 21 private TestClass fTestClass; 25 public ClassRoadie(RunNotifier notifier, TestClass testClass,
|
H A D | TestMethod.java | 22 private TestClass fTestClass; 24 public TestMethod(Method method, TestClass testClass) {
|
/external/junit/src/org/junit/runners/ |
H A D | Parameterized.java | 18 import org.junit.runners.model.TestClass; 147 private List<Object[]> getParametersList(TestClass klass) 153 private FrameworkMethod getParametersMethod(TestClass testClass)
|
/external/junit/src/org/junit/experimental/theories/internal/ |
H A D | Assignments.java | 15 import org.junit.runners.model.TestClass; 26 private final TestClass fClass; 29 List<ParameterSignature> unassigned, TestClass testClass) { 40 TestClass testClass) throws Exception {
|