Searched defs:classID (Results 1 - 25 of 33) sorted by relevance

12

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DLocation.java35 public long classID; field in class:Location
44 classID = 0;
52 public Location(byte tag, long classID, long methodID, long index) { argument
54 this.classID = classID;
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
73 return classID == loc.classID && methodID == loc.methodID
H A DField.java37 private long classID; field in class:Field
52 classID = -1;
63 * @param classID
72 public Field(long id, long classID, String name, String signature, argument
75 this.classID = classID;
157 return classID;
293 return this.id == field.id && this.classID == field.classID
306 String str = "Field: id=" + id + ", classID
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
H A DLengthTest.java55 // obtain classID
56 long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayReferenceDebuggee;");
62 packet.setNextValueAsReferenceTypeID(classID);
75 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 10);
78 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 8);
81 checkArrayLength(classID, fieldID, JDWPConstants.Error.INVALID_ARRAY, 0);
89 private void checkArrayLength(long classID, long fieldID, int error, int length) { argument
90 //System.err.println("classID="+classID);
95 packet.setNextValueAsReferenceTypeID(classID);
[all...]
H A DSetValuesTest.java53 // 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, argument
103 packet.setNextValueAsReferenceTypeID(classID);
H A DGetValuesTest.java57 // obtain classID
58 long classID = getClassIDBySignature(debuggeeSig);
64 packet.setNextValueAsReferenceTypeID(classID);
78 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
84 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
90 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
96 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
102 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
108 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
115 checkArrayValues(classID, fieldI
137 checkArrayValues(long classID, long fieldID, int error, int length, int checksNumber, byte expectedArrayTag, byte expectedElementTag, boolean checkValues) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DSetValuesTest.java54 long classID = getClassIDBySignature(getDebuggeeSignature());
56 FieldInfo[] fields = jdwpGetFieldIDs(classID);
61 testField(classID, field);
65 private void testField(long classID, FieldInfo fieldInfo) throws UnsupportedEncodingException { argument
72 testField(classID, fieldInfo, new Value(Byte.MIN_VALUE));
73 testField(classID, fieldInfo, new Value(Byte.MAX_VALUE));
74 testField(classID, fieldInfo, new Value((byte)0));
77 testField(classID, fieldInfo, new Value((char)Character.MAX_VALUE));
78 testField(classID, fieldInfo, new Value((char)Character.MIN_VALUE));
81 testField(classID, fieldInf
119 testField(long classID, FieldInfo fieldInfo, Value value) argument
154 jdwpGetFieldIDs(long classID) argument
[all...]
H A DInvokeMethodWithSuspensionTest.java38 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
43 command.setNextValueAsClassID(classID);
H A DNewInstanceWithSuspensionTest.java37 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
42 command.setNextValueAsClassID(classID);
H A DSuperClassTest.java43 private ReplyPacket jdwpGetSuperClassReply(long classID, int errorExpected) { argument
47 packet.setNextValueAsClassID(classID);
87 long classID = getClassIDBySignature("Ljava/lang/String;");
89 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
97 long classID = getClassIDBySignature("[Ljava/lang/String;");
99 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
107 long classID = getClassIDBySignature("[I");
109 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
116 long classID = getClassIDBySignature(getDebuggeeSignature());
118 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstant
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DBreakpointMultipleTest.java50 long classID = getClassIDBySignature(getDebuggeeClassSignature());
51 int breakpoint1 = setBreakpoint(classID);
52 int breakpoint2 = setBreakpoint(classID);
59 int breakpoint3 = setBreakpoint(classID);
80 long classID = getClassIDBySignature(getDebuggeeClassSignature());
81 int breakpoint1 = setBreakpoint(classID);
82 int breakpoint2 = setBreakpoint(classID);
112 private int setBreakpoint(long classID) { argument
114 return mirror.setBreakpointAtMethodBegin(classID, "breakpointTest");
H A DCombinedEventsTestCase.java53 void printMethodLineTable(long classID, String className /* may be null */, String methodName) { argument
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) { argument
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);
116 getMethodEndCodeIndex(long classID, String methodName) argument
140 getMethodEntryLocation(long classID, String methodName) argument
169 getMethodEndLocation(long classID, String methodName) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DDisposeDuringInvokeTest.java59 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) { argument
115 long thisObjectFieldID = checkField(classID, DisposeDuringInvokeDebuggee.THIS_FIELD_NAME);
117 debuggeeWrapper.vmMirror.getReferenceTypeValue(classID, thisObjectFieldID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DInvokeMethodWithSuspensionTest.java38 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
55 command.setNextValueAsClassID(classID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPInvokeMethodWithSuspensionTestCase.java61 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, argument
H A DJDWPTestCase.java155 long classID = getObjectReferenceType(objectID);
156 return getClassSignature(classID);
182 * @param classID -
188 protected long getMethodID(long classID, String methodName) { argument
192 command.setNextValueAsClassID(classID);
211 * @param classID -
217 protected ReplyPacket getLineTable(long classID, long methodID) { argument
221 lineTableCommand.setNextValueAsReferenceTypeID(classID);
232 * @param classID class id
236 protected String getMethodName(long classID, lon argument
262 getClassSignature(long classID) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DJDWPMethodTestCase.java86 protected MethodInfo[] jdwpGetMethodsInfo(long classID) { argument
91 packet.setNextValueAsClassID(classID);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DISimpleElement.java23 ISimpleElement setClass (String classID); argument
50 public ISimpleElement setClass (final String classID) argument
52 if ((classID != null) && (classID.length () > 0))
54 getAttributes ().set (Attribute.CLASS, classID);
H A DHTMLDocument.java151 public void addH (final int level, final String text, final String classID) argument
157 h.setClass (classID);
162 public void addH (final int level, final IContent text, final String classID) argument
168 h.setClass (classID);
/external/skia/src/gpu/gl/
H A DGrGLProgramDesc.cpp71 uint32_t classID = proc.classID(); local
76 if ((textureKey | transformKey | classID) & kMetaKeyInvalidMask) {
85 key[1] = (classID << 16 | SkToU16(processorKeySize));
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DJDWPStackFrameTestCase.java124 protected VarInfo[] jdwpGetVariableTable(long classID, long methodID) { argument
128 packet.setNextValueAsClassID(classID);
H A DJDWPStackFrameAccessTest.java141 long classID = getClassIDBySignature(getDebuggeeClassSignature());
144 int breakpointRequestID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
154 checkStackFrame(classID, eventThreadID, tester, true);
166 checkStackFrame(classID, eventThreadID, tester, false);
172 * @param classID
181 private void checkStackFrame(long classID, long eventThreadID, StackFrameTester tester, argument
185 long testMethodID = getMethodID(classID, testMethodName);
187 VarInfo[] variables = jdwpGetVariableTable(classID, testMethodID);
191 FrameInfo testMethodFrame = getFrameInfo(eventThreadID, classID, testMethodID);
324 * @param classID
331 getVariableInfo(long classID, long methodID, String variableName) argument
355 getFrameInfo(long threadID, long classID, long methodID) argument
455 getStaticFieldValue(long classID, String fieldName) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtrnserr.cpp270 static char classID = 0; local
271 return (UClassID)&classID;
/external/skia/include/gpu/
H A DGrProcessor.h95 uint32_t classID() const { SkASSERT(kIllegalProcessorClassID != fClassID); return fClassID; } function in class:GrProcessor
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
H A DLaunchedDebugger.java197 long classID = 0;
200 classID = reply.getNextValueAsReferenceTypeID();
205 assertTrue("VirtualMachine::ClassesBySignature command returned invalid classID:<" +
206 classID + "> for signature " + signature, classID > 0);
207 return classID;
217 methodName = getMethodName(frameInfos[i].location.classID,
227 protected String getMethodName(long classID, long methodID) { argument
231 packet.setNextValueAsClassID(classID);
/external/skia/src/gpu/
H A DGrBatch.h57 if (this->classID() != that->classID()) {
90 uint32_t classID() const { SkASSERT(kIllegalBatchClassID != fClassID); return fClassID; } function in class:GrBatch

Completed in 569 milliseconds

12