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

1 2 3 4 5

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Location.java 35 public long classID;
44 classID = 0;
52 public Location(byte tag, long classID, long methodID, long index) {
54 this.classID = classID;
64 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
75 return classID == loc.classID && methodID == loc.methodID
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
SetValuesTest.java 52 long classID = getClassIDBySignature(getDebuggeeSignature());
54 FieldInfo[] fields = jdwpGetFieldIDs(classID);
59 testField(classID, field);
63 private void testField(long classID, FieldInfo fieldInfo) {
70 testField(classID, fieldInfo, Value.createByte(Byte.MIN_VALUE));
71 testField(classID, fieldInfo, Value.createByte(Byte.MAX_VALUE));
72 testField(classID, fieldInfo, Value.createByte((byte)0));
75 testField(classID, fieldInfo, Value.createChar(Character.MAX_VALUE));
76 testField(classID, fieldInfo, Value.createChar(Character.MIN_VALUE));
79 testField(classID, fieldInfo, Value.createFloat(Float.MIN_VALUE))
    [all...]
SuperClassTest.java 41 private ReplyPacket jdwpGetSuperClassReply(long classID, int errorExpected) {
45 packet.setNextValueAsClassID(classID);
85 long classID = getClassIDBySignature("Ljava/lang/String;");
87 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
95 long classID = getClassIDBySignature("[Ljava/lang/String;");
97 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
105 long classID = getClassIDBySignature("[I");
107 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
114 long classID = getClassIDBySignature(getDebuggeeSignature());
116 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEventsTestCase.java 53 void printMethodLineTable(long classID, String className /* may be null */, String methodName) {
54 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
57 ("## printMethodLineTable(): Can NOT get methodID for classID = "
58 + classID + "; Method name = " + methodName);
65 packet.setNextValueAsClassID(classID);
92 long getMethodStartCodeIndex(long classID, String methodName) {
93 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
96 ("## getMethodStartCodeIndex(): Can NOT get methodID for classID = "
97 + classID + "; Method name = " + methodName);
104 packet.setNextValueAsClassID(classID);
    [all...]
BreakpointMultipleTest.java 51 long classID = getClassIDBySignature(getDebuggeeClassSignature());
52 int breakpoint1 = setBreakpoint(classID);
53 int breakpoint2 = setBreakpoint(classID);
60 int breakpoint3 = setBreakpoint(classID);
81 long classID = getClassIDBySignature(getDebuggeeClassSignature());
82 int breakpoint1 = setBreakpoint(classID);
83 int breakpoint2 = setBreakpoint(classID);
113 private int setBreakpoint(long classID) {
115 return mirror.setBreakpointAtMethodBegin(classID, "breakpointTest");
Breakpoint002Test.java 160 long classID = debuggeeWrapper.vmMirror.getClassID(getDebuggeeClassSignature());
161 assertTrue("Failed to find debuggee class", classID != -1);
164 int breakpointReqID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, methodName);
BreakpointOnCatchTest.java 51 long classID = getClassIDBySignature(getDebuggeeClassSignature());
52 long methodID = getMethodID(classID, BreakpointOnCatchDebuggee.BREAKPOINT_METHOD_NAME);
69 assertEquals("Invalid class ID:", classID, catchLocation.classID);
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
ISimpleElement.java 23 ISimpleElement setClass (String classID);
50 public ISimpleElement setClass (final String classID)
52 if ((classID != null) && (classID.length () > 0))
54 getAttributes ().set (Attribute.CLASS, classID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
SetValues002Test.java 296 long classID = getClassIDBySignature(getDebuggeeClassSignature());
297 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE");
298 Value newValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE_TO_SET");
316 long classID = getClassIDBySignature(getDebuggeeClassSignature());
317 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE");
318 Value newValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE_TO_SET");
337 long classID = getClassIDBySignature(getDebuggeeClassSignature());
338 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE");
339 Value newValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE_TO_SET");
359 long classID = getClassIDBySignature(getDebuggeeClassSignature())
    [all...]
GetValues002Test.java 180 long classID = getClassIDBySignature(getDebuggeeClassSignature());
181 Value thisValue = getStaticFieldValue(classID, "THIS_OBJECT");
198 long classID = getClassIDBySignature(getDebuggeeClassSignature());
199 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE");
216 long classID = getClassIDBySignature(getDebuggeeClassSignature());
217 Value oldValue = getStaticFieldValue(classID, "ARRAY_PARAM_VALUE");
234 long classID = getClassIDBySignature(getDebuggeeClassSignature());
235 Value oldValue = getStaticFieldValue(classID, "ARRAY_PARAM_VALUE");
251 long classID = getClassIDBySignature(getDebuggeeClassSignature());
252 Value oldValue = getStaticFieldValue(classID, "CLASS_PARAM_VALUE")
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ClassTable.java 24 private int classID;
26 public ClassEntry(int glyphID, int classID)
29 this.classID = classID;
39 return classID;
100 private int classID;
102 public ClassRangeRecord(int startGlyphID, int endGlyphID, int classID)
106 this.classID = classID;
115 System.out.println(classID);
    [all...]
  /external/skia/src/gpu/ops/
GrOp.cpp 55 GrOp::GrOp(uint32_t classID)
56 : fClassID(classID)
58 SkASSERT(classID == SkToU32(fClassID));
GrOp.h 56 static uint32_t ClassID() { \
63 GrOp(uint32_t classID);
69 if (this->classID() != that->classID()) {
111 SkASSERT(T::ClassID() == this->classID());
116 SkASSERT(T::ClassID() == this->classID());
120 uint32_t classID() const { SkASSERT(kIllegalOpID != fClassID); return fClassID; }
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DisposeDuringInvokeTest.java 59 long classID = getClassIDBySignature(getDebuggeeClassSignature());
60 long invokedMethodId = getMethodID(classID,
62 int breakpointID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
65 long thisObjectId = getReceiverObjectId(classID);
79 command.setNextValueAsClassID(classID);
110 * @param classID
114 private long getReceiverObjectId(long classID) {
115 long thisObjectFieldID = checkField(classID, DisposeDuringInvokeDebuggee.THIS_FIELD_NAME);
117 debuggeeWrapper.vmMirror.getReferenceTypeValue(classID, thisObjectFieldID);
  /external/icu/icu4c/source/common/unicode/
uobject.h 297 static char classID = 0; \
298 return (UClassID)&classID; \
314 static char classID = 0; \
315 return (UClassID)&classID; \
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
LengthTest.java 53 // obtain classID
54 long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayReferenceDebuggee;");
60 packet.setNextValueAsReferenceTypeID(classID);
73 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 10);
76 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 8);
79 checkArrayLength(classID, fieldID, JDWPConstants.Error.INVALID_ARRAY, 0);
87 private void checkArrayLength(long classID, long fieldID, int error, int length) {
88 //System.err.println("classID="+classID);
93 packet.setNextValueAsReferenceTypeID(classID);
    [all...]
SetValuesTest.java 53 // obtain classID
54 long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayReferenceDebuggee;");
60 packet.setNextValueAsReferenceTypeID(classID);
77 checkArrayValues(valuesRegion, classID, fieldID);
84 checkArrayValues(valuesRegion, classID, fieldID);
91 checkArrayValues(valuesRegion, classID, fieldID);
98 private void checkArrayValues(ArrayRegion valuesRegion, long classID,
103 packet.setNextValueAsReferenceTypeID(classID);
GetValuesTest.java 55 // obtain classID
56 long classID = getClassIDBySignature(debuggeeSig);
62 packet.setNextValueAsReferenceTypeID(classID);
76 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
82 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
88 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
94 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
100 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
106 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
113 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 10
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
BytecodesTest.java 51 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
53 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
63 packet.setNextValueAsClassID(classID);
IsObsoleteTest.java 49 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
51 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
61 packet.setNextValueAsClassID(classID);
LineTableTest.java 47 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
49 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
56 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPInvokeMethodWithSuspensionTestCase.java 61 long classID = getClassIDBySignature(getDebuggeeClassSignature());
62 long invokeMethodID = getMethodID(classID, invokedMethodName);
66 int breakpointEventThread = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
72 int breakpointAllThreads = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
89 CommandPacket invokeMethodCommand = buildInvokeCommand(eventThreadOne, classID,
113 CommandPacket anotherInvokeMethodCommand = buildInvokeCommand(eventThreadOne, classID,
153 * @param classID
161 protected abstract CommandPacket buildInvokeCommand(long threadId, long classID,
JDWPInvokeMethodSuspendedTwiceTestCase.java 60 long classID = getClassIDBySignature(getDebuggeeClassSignature());
61 long invokeMethodID = getMethodID(classID, invokedMethodName);
65 int breakpointEventThread = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
90 CommandPacket invokeMethodCommand = buildInvokeCommand(eventThreadOne, classID,
124 CommandPacket anotherInvokeMethodCommand = buildInvokeCommand(eventThreadOne, classID,
164 * @param classID
172 protected abstract CommandPacket buildInvokeCommand(long threadId, long classID,
JDWPTestCase.java 174 long classID = getObjectReferenceType(objectID);
175 return getClassSignature(classID);
201 * @param classID -
207 protected long getMethodID(long classID, String methodName) {
211 command.setNextValueAsClassID(classID);
230 * @param classID -
238 protected long getMethodID(long classID, String methodName, String methodSignature) {
242 command.setNextValueAsClassID(classID);
261 * @param classID -
267 protected ReplyPacket getLineTable(long classID, long methodID)
    [all...]
JDWPProxyTestCase.java 63 long classId = getClassIDBySignature(debuggeeSignature);
65 classId, "breakpointMethodFromProxy");
91 String className = getClassSignature(location.classID);
92 String methodName = getMethodName(location.classID, location.methodID);
94 if (location.classID != proxyClassId &&
95 IsProxy(location.classID, proxyClassId)) {
115 long classId = getClassIDBySignature(debuggeeSignature);
116 long checkedProxyObjectFieldId = checkField(classId, "checkedProxyObject");
118 Value[] fieldValues = debuggeeWrapper.vmMirror.getReferenceTypeValues(classId, fieldIDs);

Completed in 503 milliseconds

1 2 3 4 5