/external/stlport/test/eh/ |
TestClass.h | 2 TestClass.h 15 SUMMARY: TestClass simulates a class that uses resources. It is designed to 32 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 ) [all...] |
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 {
|
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* buffer ) cons [all...] |
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 );
|
TestClass.cpp | 2 TestClass.cpp 16 #include "TestClass.h" 20 std::ostream& operator << (std::ostream& s, const TestClass& t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/ |
T_invoke_static_2.java | 19 import dot.junit.opcodes.invoke_static.TestClass; 24 return TestClass.test();
|
T_invoke_static_15.java | 19 import dot.junit.opcodes.invoke_static.TestClass; 26 if(TestClass.testArgsOrder(12, 2) == 6)
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/d/ |
T_invoke_static_range_2.java | 19 import dot.junit.opcodes.invoke_static_range.TestClass; 24 return TestClass.test();
|
T_invoke_static_range_15.java | 19 import dot.junit.opcodes.invoke_static_range.TestClass; 26 if(TestClass.testArgsOrder(12, 2) == 6)
|
/libcore/luni/src/test/resources/org/apache/harmony/luni/tests/java/lang/ |
illegalClasses.jar | |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg1/ |
TestClass.java | 24 * as the TestClass in o.a.h.l.tests.pkg2 26 public class TestClass implements Serializable {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/pkg2/ |
TestClass.java | 24 * as the TestClass in o.a.h.l.tests.pkg1 26 public class TestClass implements Serializable {
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/pkg1/ |
TestClass.java | 24 * as the TestClass in o.a.h.l.tests.pkg2 26 public class TestClass implements Serializable {
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/pkg2/ |
TestClass.java | 24 * as the TestClass in o.a.h.l.tests.pkg1 26 public class TestClass implements Serializable {
|
/libcore/support/src/test/java/tests/resources/ |
illegalClasses.jar | |
/external/android-mock/tests/com/google/android/testing/mocking/ |
ConstructorCreationTests.java | 42 public static class TestClass { 47 public TestClass(Foo foo) { 51 public TestClass(Foo foo, Bar bar) { 55 public TestClass(int v1) { 59 public TestClass(int v1, float v2) { 65 public TestClass(int v1, double v2) { 73 Constructor<TestClass> constructor = 74 AndroidMock.getConstructorFor(TestClass.class, args); 80 Constructor<TestClass> constructor = 81 AndroidMock.getConstructorFor(TestClass.class, args) [all...] |
/external/javassist/src/test/test/javassist/proxy/ |
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)proxyClass4.newInstance() [all...] |
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 implements Serializabl [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/ |
AccessibleObjectTest.java | 24 public class TestClass { 34 AccessibleObject ao = TestClass.class.getField("aField"); 49 AccessibleObject ao = TestClass.class.getField("aField");
|
/external/guava/guava-tests/test/com/google/common/base/ |
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{field1=42}", toTest) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/ |
TestClass.java | 19 public class TestClass {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/ |
TestClass.java | 19 public class TestClass {
|
/external/chromium_org/tools/clang/rewrite_scoped_array/tests/ |
test-expected.cc | 10 class TestClass {
|
test-original.cc | 10 class TestClass {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ClassTest.java | 60 public static class TestClass { 83 public TestClass() { 87 private TestClass(Object o) { 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.class.getDeclaredConstructor(Object.class) [all...] |