Home
last modified time | relevance | path

Searched refs:classID (Results 1 – 25 of 85) sorted by relevance

1234

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DSetValuesTest.java52 long classID = getClassIDBySignature(getDebuggeeSignature()); in testSetValues001() local
54 FieldInfo[] fields = jdwpGetFieldIDs(classID); in testSetValues001()
59 testField(classID, field); in testSetValues001()
63 private void testField(long classID, FieldInfo fieldInfo) { in testField() argument
70 testField(classID, fieldInfo, Value.createByte(Byte.MIN_VALUE)); in testField()
71 testField(classID, fieldInfo, Value.createByte(Byte.MAX_VALUE)); in testField()
72 testField(classID, fieldInfo, Value.createByte((byte)0)); in testField()
75 testField(classID, fieldInfo, Value.createChar(Character.MAX_VALUE)); in testField()
76 testField(classID, fieldInfo, Value.createChar(Character.MIN_VALUE)); in testField()
79 testField(classID, fieldInfo, Value.createFloat(Float.MIN_VALUE)); in testField()
[all …]
DSuperClassTest.java41 private ReplyPacket jdwpGetSuperClassReply(long classID, int errorExpected) { in jdwpGetSuperClassReply() argument
45 packet.setNextValueAsClassID(classID); in jdwpGetSuperClassReply()
85 long classID = getClassIDBySignature("Ljava/lang/String;"); in testSuperClass001() local
87 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); in testSuperClass001()
95 long classID = getClassIDBySignature("[Ljava/lang/String;"); in testSuperClass001() local
97 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); in testSuperClass001()
105 long classID = getClassIDBySignature("[I"); in testSuperClass001() local
107 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); in testSuperClass001()
114 long classID = getClassIDBySignature(getDebuggeeSignature()); in testSuperClass001() local
116 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); in testSuperClass001()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DSetValues002Test.java296 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testSetValues009_Object() local
297 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE"); in testSetValues009_Object()
298 Value newValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE_TO_SET"); in testSetValues009_Object()
316 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testSetValues009_ObjectWithException() local
317 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE"); in testSetValues009_ObjectWithException()
318 Value newValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE_TO_SET"); in testSetValues009_ObjectWithException()
337 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testSetValues009_ObjectConstantWithExceptionInCallee() local
338 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE"); in testSetValues009_ObjectConstantWithExceptionInCallee()
339 Value newValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE_TO_SET"); in testSetValues009_ObjectConstantWithExceptionInCallee()
359 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testSetValues009_ObjectConstantWithExceptionInCaller() local
[all …]
DGetValues002Test.java180 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testGetValues009_ThisObject() local
181 Value thisValue = getStaticFieldValue(classID, "THIS_OBJECT"); in testGetValues009_ThisObject()
198 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testGetValues009_Object() local
199 Value oldValue = getStaticFieldValue(classID, "OBJECT_PARAM_VALUE"); in testGetValues009_Object()
216 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testGetValues010_Array() local
217 Value oldValue = getStaticFieldValue(classID, "ARRAY_PARAM_VALUE"); in testGetValues010_Array()
234 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testGetValues010_ArrayAsObject() local
235 Value oldValue = getStaticFieldValue(classID, "ARRAY_PARAM_VALUE"); in testGetValues010_ArrayAsObject()
251 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testGetValues011_Class() local
252 Value oldValue = getStaticFieldValue(classID, "CLASS_PARAM_VALUE"); in testGetValues011_Class()
[all …]
DJDWPStackFrameAccessTest.java166 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in runStackFrameTest() local
175 checkStackFrame(classID, eventThreadID, tester, suspensionMethodInfo, true); in runStackFrameTest()
184 checkStackFrame(classID, eventThreadID, tester, suspensionMethodInfo, false); in runStackFrameTest()
230 private void checkStackFrame(long classID, long eventThreadID, StackFrameTester tester, in checkStackFrame() argument
234 long testMethodID = getMethodID(classID, testMethodName); in checkStackFrame()
238 VarInfo[] variables = jdwpGetVariableTable(classID, testMethodID); in checkStackFrame()
242 FrameInfo testMethodFrame = getFrameInfo(eventThreadID, classID, testMethodID); in checkStackFrame()
378 protected VarInfo getVariableInfo(long classID, long methodID, String variableName) { in getVariableInfo() argument
379 VarInfo[] variables = jdwpGetVariableTable(classID, methodID); in getVariableInfo()
402 protected FrameInfo getFrameInfo(long threadID, long classID, long methodID) { in getFrameInfo() argument
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DCombinedEventsTestCase.java53 void printMethodLineTable(long classID, String className /* may be null */, String methodName) { in printMethodLineTable() argument
54 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in printMethodLineTable()
58 + classID + "; Method name = " + methodName); in printMethodLineTable()
65 packet.setNextValueAsClassID(classID); in printMethodLineTable()
92 long getMethodStartCodeIndex(long classID, String methodName) { in getMethodStartCodeIndex() argument
93 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodStartCodeIndex()
97 + classID + "; Method name = " + methodName); in getMethodStartCodeIndex()
104 packet.setNextValueAsClassID(classID); in getMethodStartCodeIndex()
116 long getMethodEndCodeIndex(long classID, String methodName) { in getMethodEndCodeIndex() argument
117 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodEndCodeIndex()
[all …]
DBreakpointMultipleTest.java51 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testSetAndClearMultipleBreakpoint() local
52 int breakpoint1 = setBreakpoint(classID); in testSetAndClearMultipleBreakpoint()
53 int breakpoint2 = setBreakpoint(classID); in testSetAndClearMultipleBreakpoint()
60 int breakpoint3 = setBreakpoint(classID); in testSetAndClearMultipleBreakpoint()
81 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testSetMultipleBreakpoint() local
82 int breakpoint1 = setBreakpoint(classID); in testSetMultipleBreakpoint()
83 int breakpoint2 = setBreakpoint(classID); in testSetMultipleBreakpoint()
113 private int setBreakpoint(long classID) { in setBreakpoint() argument
115 return mirror.setBreakpointAtMethodBegin(classID, "breakpointTest"); in setBreakpoint()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DClassTable.java24 private int classID; field in ClassTable.ClassEntry
26 public ClassEntry(int glyphID, int classID) in ClassEntry() argument
29 this.classID = classID; in ClassEntry()
39 return classID; in getClassID()
100 private int classID; field in ClassTable.ClassRangeRecord
102 public ClassRangeRecord(int startGlyphID, int endGlyphID, int classID) in ClassRangeRecord() argument
106 this.classID = classID; in ClassRangeRecord()
115 System.out.println(classID); in write()
119 writer.writeData(classID); in write()
135 public void addMapping(int charID, int classID) in addMapping() argument
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DLocation.java35 public long classID; field in Location
44 classID = 0; in Location()
52 public Location(byte tag, long classID, long methodID, long index) { in Location() argument
54 this.classID = classID; in Location()
64 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index; in toString()
75 return classID == loc.classID && methodID == loc.methodID in equals()
DField.java37 private long classID; field in Field
52 classID = -1; in Field()
72 public Field(long id, long classID, String name, String signature, in Field() argument
75 this.classID = classID; in Field()
157 return classID; in getClassID()
294 return this.id == field.id && this.classID == field.classID in equals()
308 String str = "Field: id=" + id + ", classID=" + classID + ", name='" in toString()
DVmMirror.java162 public int setBreakpointAtMethodBegin(long classID, String methodName) { in setBreakpointAtMethodBegin() argument
163 return setBreakpointAtMethodBegin(classID, methodName, JDWPConstants.SuspendPolicy.ALL); in setBreakpointAtMethodBegin()
175 public int setBreakpointAtMethodBegin(long classID, String methodName, byte suspendPolicy) { in setBreakpointAtMethodBegin() argument
176 long methodID = getMethodID(classID, methodName); in setBreakpointAtMethodBegin()
178 ReplyPacket lineTableReply = getLineTable(classID, methodID); in setBreakpointAtMethodBegin()
201 classID, methodID, lineCodeIndex); in setBreakpointAtMethodBegin()
712 public String getClassSignature(long classID) { in getClassSignature() argument
717 commandPacket.setNextValueAsReferenceTypeID(classID); in getClassSignature()
831 public long getFieldID(long classID, String fieldName) { in getFieldID() argument
832 ReplyPacket reply = getFieldsInClass(classID); in getFieldID()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DDisposeDuringInvokeTest.java59 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in testDisposeDuringInvoke() local
60 long invokedMethodId = getMethodID(classID, in testDisposeDuringInvoke()
62 int breakpointID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, in testDisposeDuringInvoke()
65 long thisObjectId = getReceiverObjectId(classID); in testDisposeDuringInvoke()
79 command.setNextValueAsClassID(classID); in testDisposeDuringInvoke()
114 private long getReceiverObjectId(long classID) { in getReceiverObjectId() argument
115 long thisObjectFieldID = checkField(classID, DisposeDuringInvokeDebuggee.THIS_FIELD_NAME); in getReceiverObjectId()
117 debuggeeWrapper.vmMirror.getReferenceTypeValue(classID, thisObjectFieldID); in getReceiverObjectId()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
DGetValuesTest.java56 long classID = getClassIDBySignature(debuggeeSig); in testGetValues001() local
62 packet.setNextValueAsReferenceTypeID(classID); in testGetValues001()
76 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
82 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
88 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
94 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
100 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
106 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1, in testGetValues001()
113 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 10, in testGetValues001()
120 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 8, in testGetValues001()
[all …]
DLengthTest.java54 …long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayRefe… in testLength001() local
60 packet.setNextValueAsReferenceTypeID(classID); in testLength001()
73 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 10); in testLength001()
76 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 8); in testLength001()
79 checkArrayLength(classID, fieldID, JDWPConstants.Error.INVALID_ARRAY, 0); in testLength001()
87 private void checkArrayLength(long classID, long fieldID, int error, int length) { in checkArrayLength() argument
93 packet.setNextValueAsReferenceTypeID(classID); in checkArrayLength()
DSetValuesTest.java54 …long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayRefe… in testSetValues001() local
60 packet.setNextValueAsReferenceTypeID(classID); in testSetValues001()
77 checkArrayValues(valuesRegion, classID, fieldID); in testSetValues001()
84 checkArrayValues(valuesRegion, classID, fieldID); in testSetValues001()
91 checkArrayValues(valuesRegion, classID, fieldID); in testSetValues001()
98 private void checkArrayValues(ArrayRegion valuesRegion, long classID, in checkArrayValues() argument
103 packet.setNextValueAsReferenceTypeID(classID); in checkArrayValues()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java174 long classID = getObjectReferenceType(objectID); in getObjectSignature() local
175 return getClassSignature(classID); in getObjectSignature()
207 protected long getMethodID(long classID, String methodName) { in getMethodID() argument
211 command.setNextValueAsClassID(classID); in getMethodID()
238 protected long getMethodID(long classID, String methodName, String methodSignature) { in getMethodID() argument
242 command.setNextValueAsClassID(classID); in getMethodID()
267 protected ReplyPacket getLineTable(long classID, long methodID) { in getLineTable() argument
271 lineTableCommand.setNextValueAsReferenceTypeID(classID); in getLineTable()
286 protected String getMethodName(long classID, long methodID) { in getMethodName() argument
290 packet.setNextValueAsClassID(classID); in getMethodName()
[all …]
DJDWPInvokeMethodWithSuspensionTestCase.java61 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in runInvokeMethodTest() local
62 long invokeMethodID = getMethodID(classID, invokedMethodName); in runInvokeMethodTest()
66 int breakpointEventThread = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, in runInvokeMethodTest()
72 int breakpointAllThreads = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, in runInvokeMethodTest()
89 CommandPacket invokeMethodCommand = buildInvokeCommand(eventThreadOne, classID, in runInvokeMethodTest()
113 CommandPacket anotherInvokeMethodCommand = buildInvokeCommand(eventThreadOne, classID, in runInvokeMethodTest()
161 protected abstract CommandPacket buildInvokeCommand(long threadId, long classID, in buildInvokeCommand() argument
DJDWPInvokeMethodSuspendedTwiceTestCase.java60 long classID = getClassIDBySignature(getDebuggeeClassSignature()); in runInvokeMethodTest() local
61 long invokeMethodID = getMethodID(classID, invokedMethodName); in runInvokeMethodTest()
65 int breakpointEventThread = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, in runInvokeMethodTest()
90 CommandPacket invokeMethodCommand = buildInvokeCommand(eventThreadOne, classID, in runInvokeMethodTest()
124 CommandPacket anotherInvokeMethodCommand = buildInvokeCommand(eventThreadOne, classID, in runInvokeMethodTest()
172 protected abstract CommandPacket buildInvokeCommand(long threadId, long classID, in buildInvokeCommand() argument
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DISimpleElement.java23 ISimpleElement setClass (String classID); in setClass() argument
50 public ISimpleElement setClass (final String classID) in setClass() argument
52 if ((classID != null) && (classID.length () > 0)) in setClass()
54 getAttributes ().set (Attribute.CLASS, classID); in setClass()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DFramesTest.java90 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames005()
91 classSignature = getClassSignature(frame.loc.classID); in testFrames005()
144 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames004()
145 classSignature = getClassSignature(frame.loc.classID); in testFrames004()
199 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames003()
200 classSignature = getClassSignature(frame.loc.classID); in testFrames003()
260 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames002()
261 classSignature = getClassSignature(frame.loc.classID); in testFrames002()
286 methodName = getMethodName(frame.loc.classID, frame.loc.methodID); in testFrames002()
287 classSignature = getClassSignature(frame.loc.classID); in testFrames002()
[all …]
/external/skia/src/gpu/
DGrProgramDesc.cpp118 uint32_t classID = proc.classID(); in gen_meta_key() local
122 if ((processorKeySize | classID) & kMetaKeyInvalidMask) { in gen_meta_key()
129 key[0] = (classID << 16) | SkToU32(processorKeySize); in gen_meta_key()
138 uint32_t classID = xp.classID(); in gen_meta_key() local
142 if ((processorKeySize | classID) & kMetaKeyInvalidMask) { in gen_meta_key()
146 b->add32((classID << 16) | SkToU32(processorKeySize)); in gen_meta_key()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
DLaunchedDebugger.java203 long classID = 0; in getClassIDBySignature() local
206 classID = reply.getNextValueAsReferenceTypeID(); in getClassIDBySignature()
212 classID + "> for signature " + signature, classID > 0); in getClassIDBySignature()
213 return classID; in getClassIDBySignature()
223 methodName = getMethodName(frameInfos[i].location.classID, in printStackFrame()
234 protected String getMethodName(long classID, long methodID) { in getMethodName() argument
238 packet.setNextValueAsClassID(classID); in getMethodName()
/external/skia/src/gpu/ops/
DGrOp.h63 GrOp(uint32_t classID);
69 if (this->classID() != that->classID()) { in combineIfPossible()
111 SkASSERT(T::ClassID() == this->classID()); in cast()
116 SkASSERT(T::ClassID() == this->classID()); in cast()
120 uint32_t classID() const { SkASSERT(kIllegalOpID != fClassID); return fClassID; } in classID() function
DGrOp.cpp55 GrOp::GrOp(uint32_t classID) in GrOp() argument
56 : fClassID(classID) in GrOp()
58 SkASSERT(classID == SkToU32(fClassID)); in GrOp()
/external/icu/icu4c/source/common/unicode/
Duobject.h297 static char classID = 0; \
298 return (UClassID)&classID; \
314 static char classID = 0; \
315 return (UClassID)&classID; \

1234