HomeSort by relevance Sort by last modified time
    Searched refs:TestClass (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /art/test/435-new-instance/src/
TestClass.java 17 public abstract class TestClass {
  /external/clang/test/OpenMP/
single_codegen.cpp 10 class TestClass {
13 TestClass() : a(0) {}
14 TestClass(const TestClass &C) : a(C.a) {}
15 TestClass &operator=(const TestClass &) { return *this;}
16 ~TestClass(){};
25 TestClass tc;
26 TestClass tc2[2];
39 TestClass c
    [all...]
  /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/google-breakpad/src/client/mac/testapp/
TestClass.h 32 @interface TestClass : NSObject {
  /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/harmony-tests/src/test/java/org/apache/harmony/tests/pkg1/
TestClass.java 24 * as the TestClass in o.a.h.l.tests.pkg2
26 public class TestClass implements Serializable {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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 
  /art/test/128-reg-spilling-on-implicit-nullcheck/src/
Main.java 26 TestClass f = null;
41 class TestClass {
  /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/llvm/test/tools/llvm-pdbdump/Inputs/
FilterTest.cpp 26 FilterTestClass TestClass;
  /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/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
CountModifierDebuggee.java 39 static class TestClass {
41 System.out.println("TestClass.eventTestMethod: count=" + locationEventCount);
45 System.out.println("TestClass.throwException: exceptionCount=" + exceptionEventCount);
50 private void countAndCall(TestClass obj) {
55 private static void catchException(TestClass obj) {
72 TestClass obj = new TestClass();
InstanceOnlyModifierDebuggee.java 31 static class TestClass {
36 "InstanceOnlyModifierDebuggee.TestClass.eventTestMethod()");
49 "InstanceOnlyModifierDebuggee.TestClass.readAndWriteField()");
55 "InstanceOnlyModifierDebuggee.TestClass.throwException()");
60 static TestClass INSTANCE_ONLY;
67 final TestClass[] instances = new TestClass[10];
69 instances[i] = new TestClass();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethod002Debuggee.java 27 static class TestClass {
38 // The instance used to invoke "TestClass.testMethod".
39 static TestClass invokeReceiver = new TestClass();
46 // Preload TestClass so it is available during the test.
49 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.ObjectReference.InvokeMethod002Debuggee$TestClass");
InvokeMethod003Debuggee.java 26 static class TestClass {
29 return "TestClass.toString()";
33 // The instance used to invoke "TestClass.testMethod".
34 static TestClass invokeReceiver = new TestClass();
41 // Preload TestClass so it is available during the test.
44 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.ObjectReference.InvokeMethod003Debuggee$TestClass");
  /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...]

Completed in 557 milliseconds

1 2 3 4 5