HomeSort by relevance Sort by last modified time
    Searched defs:ClassType (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod003Debuggee.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
42 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee(#1)");
44 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee(#2)");
InvokeMethodAfterMultipleThreadSuspensionTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
30 * JDWP unit test for ClassType.InvokeCommand command with thread suspended more than once before
55 return "ClassType.InvokeCommand";
InvokeMethodWithSuspensionTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
30 * JDWP unit test for ClassType.InvokeCommand command with a thread suspension.
53 return "ClassType.InvokeCommand";
JDWPClassTypeTestCase.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
33 * Super class of some JDWP unit tests for JDWP ClassType command set.
44 return "org.apache.harmony.jpda.tests.jdwp.ClassType.ClassTypeDebuggee";
53 return "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/ClassTypeDebuggee;";
NewInstanceAfterMultipleThreadSuspensionTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
29 * JDWP unit test for ClassType.NewInstance command with thread suspended more than once before the
54 return "ClassType.NewInstance";
NewInstanceTagDebuggee.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
54 // Suspend the debuggee on breakpoint so the test can send ClassType.NewInstance command.
NewInstanceWithSuspensionTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
29 * JDWP unit test for ClassType.NewInstance command with a thread suspension.
52 return "ClassType.NewInstance";
NewInstance002Debuggee.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
31 // Constructor invoked from JDWP ClassType.NewInstance command.
51 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee$TestClass");
57 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee(#1)");
59 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee(#2)");
NewInstanceStringDebuggee.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
52 // Suspend the debuggee on breakpoint so the test can send ClassType.NewInstance command.
NewInstanceTagTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
27 * JDWP unit test for ClassType.NewInstance command for particular reference
44 * Test ClassType.NewInstance of java.lang.Object returns JT_OBJECT tag.
52 * Test ClassType.NewInstance of a subclass of java.lang.Object returns JT_OBJECT tag.
61 * Test ClassType.NewInstance of java.lang.String returns JT_STRING tag.
69 * Test ClassType.NewInstance of a subclass of java.lang.ClassLoader returns
82 * Test ClassType.NewInstance of java.lang.Thread returns JT_THREAD tag.
90 * Test ClassType.NewInstance of a subclass of java.lang.Thread returns
100 * Test ClassType.NewInstance of java.lang.ThreadGroup returns
119 * Test ClassType.NewInstance of a subclass of java.lang.ThreadGroup return
    [all...]
SetValues002Debuggee.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
49 logWriter.println("\n--> Debuggee: Before ClassType::SetValues command:");
56 logWriter.println("\n--> Debuggee: After ClassType::SetValues command:");
SetValuesTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
38 * JDWP unit test for ClassType.SetValues command.
43 * This testcase exercises ClassType.SetValues command.
46 * Then sets values for these fields with ClassType.SetValues command
134 checkReplyPacket(reply, "ClassType::SetValues command");
144 checkReplyPacket(reply, "ClassType::GetValues command");
147 assertEquals("ClassType::SetValues returne invalid fields number,", 1, fields);
149 assertEquals("ClassType::SetValues returne invalid returned value,", value, returnedValue);
ClassTypeDebuggee.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * Common debuggee of some JDWP unit tests for JDWP ClassType command set.
SuperClassTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
38 * JDWP unit test for ClassType.SuperClass command.
48 checkReplyPacket(reply, "ClassType.Superclass command", errorExpected);
59 ("ClassType::Superclass command returned invalid expectedSignature that must be null",
64 assertString("ClassType::Superclass command returned invalid signature,",
70 * This testcase exercises ClassType.Superclass command.
137 * This testcase exercises ClassType.Superclass command.
181 * This testcase exercises ClassType.Superclass command.
AbstractNewInstanceTestCase.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
35 * Base class to test ClassType.NewInstance for specific reference types.
67 * Checks that ClassType.NewInstance command for the given type and constructor returns the
70 * Once the debuggee is suspended on the breakpoint, send ClassType.NewInstance command
119 .println("Sending ClassType.NewInstance command for constructor " + fullMethodName);
131 checkReplyPacket(reply, "ClassType.NewInstance command");
InvokeMethod003Test.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * JDWP unit test for ClassType.InvokeMethod command.
37 return "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee";
41 * This testcase exercises ClassType.InvokeMethod command.
44 * <BR>Then sends ClassType.InvokeMethod command for method with null
53 String debuggeeClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/InvokeMethod003Debuggee;";
121 logWriter.println(" Send ClassType.InvokeMethod without Exception");
123 checkReplyPacket(reply, "ClassType::InvokeMethod command");
128 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
137 logWriter.println(" ClassType.InvokeMethod: exception.tag=
    [all...]
NewInstance002Test.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * JDWP unit test for ClassType.NewInstance command.
38 return "org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee";
42 * This testcase exercises ClassType.NewInstance command.
45 * <BR>Then sends ClassType.NewInstance command to create a new instance and
54 String debuggeeClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/NewInstance002Debuggee;";
108 String testClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/NewInstance002Debuggee$TestClass;";
127 logWriter.println(" Send ClassType.NewInstance (without Exception)");
129 checkReplyPacket(reply, "ClassType::NewInstance command");
132 logWriter.println(" ClassType.NewInstance: newObject.tag=
    [all...]
NewInstanceStringTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
28 * JDWP unit test for ClassType.NewInstance command with java.lang.String class.
38 * Test ClassType.NewInstance using the constructor
46 * Test ClassType.NewInstance using the constructor
63 * Test ClassType.NewInstance using the constructor
81 * Test ClassType.NewInstance using the constructor
103 * Test ClassType.NewInstance using the constructor
123 * Test ClassType.NewInstance using the constructor
146 * Test ClassType.NewInstance using the constructor
166 * Test ClassType.NewInstance using the constructo
    [all...]
NewInstanceTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
39 * JDWP unit test for ClassType.NewInstance command.
49 * This testcase exercises ClassType.NewInstance command.
52 * <BR>&nbsp;&nbsp; - send ClassType.NewInstance command for class,
56 * <BR>&nbsp;&nbsp; - send ClassType.NewInstance command for class,
152 logWriter.println(" Send ClassType.NewInstance (without Exception)");
154 checkReplyPacket(reply, "ClassType::NewInstance command");
157 logWriter.println(" ClassType.NewInstance: newObject.tag="
160 logWriter.println(" ClassType.NewInstance: exception.tag="
165 assertEquals("ClassType::NewInstance returned invalid newObject.tag,", JDWPConstants.Tag.OBJECT_TAG, newObject.ta
    [all...]
SetValues002Test.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
38 * JDWP unit test for ClassType.SetValues command with incorrect types of values.
44 static final String thisCommandName = "ClassType::SetValues command";
45 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/SetValues002Debuggee;";
49 return "org.apache.harmony.jpda.tests.jdwp.ClassType.SetValues002Debuggee";
53 * The test checks ClassType.SetValues command for
InvokeMethod002Test.java 25 package org.apache.harmony.jpda.tests.jdwp.ClassType;
39 * JDWP unit test for ClassType.InvokeMethod command.
48 * This testcase checks ClassType.InvokeMethod command.
216 logWriter.println(" Send ClassType.InvokeMethod");
220 checkReplyPacket(reply, "ClassType::InvokeMethod command",
223 checkReplyPacket(reply, "ClassType::InvokeMethod command");
226 logWriter.println(" ClassType.InvokeMethod: returnValue=" + returnValue);
229 logWriter.println(" ClassType.InvokeMethod: returnedString=" + returnedString);
233 assertNotNull("ClassType::InvokeMethod returned null exception",
235 assertEquals("ClassType::InvokeMethod returned invalid exception objectID,"
    [all...]
InvokeMethodTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
39 * JDWP unit test for ClassType.InvokeMethod command.
52 * This testcase exercises ClassType.InvokeMethod command.
55 * <BR>&nbsp;&nbsp; - send ClassType.InvokeMethod command for method,
59 * <BR>&nbsp;&nbsp; - send ClassType.InvokeMethod command for method,
153 logWriter.println(" Send ClassType.InvokeMethod without Exception");
155 checkReplyPacket(reply, "ClassType::InvokeMethod command");
160 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
169 logWriter.println(" ClassType.InvokeMethod: exception.tag="
183 logWriter.println(" Send ClassType.InvokeMethod with Exception")
    [all...]
  /external/ImageMagick/MagickCore/
magick-type.h 143 } ClassType;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 53 ClassType = type(_C)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 53 ClassType = type(_C)

Completed in 442 milliseconds

1 2 3 4