HomeSort by relevance Sort by last modified time
    Searched refs:classID (Results 26 - 50 of 102) sorted by null

12 3 4 5

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
VariableTableTest.java 51 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
53 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
63 packet.setNextValueAsClassID(classID);
VariableTableWithGenericTest.java 52 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
54 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
64 packet.setNextValueAsClassID(classID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Field.java 37 private long classID;
52 classID = -1;
63 * @param classID
72 public Field(long id, long classID, String name, String signature,
75 this.classID = classID;
157 return classID;
293 return this.id == field.id && this.classID == field.classID
306 String str = "Field: id=" + id + ", classID=" + classID + ", name='
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
BreakpointOnCatchTest.java 52 long classID = getClassIDBySignature(getDebuggeeClassSignature());
53 long methodID = getMethodID(classID, BreakpointOnCatchDebuggee.BREAKPOINT_METHOD_NAME);
70 assertEquals("Invalid class ID:", classID, catchLocation.classID);
ExceptionBaseTest.java 96 if (location.classID != 0 && location.methodID != 0) {
97 classSig = getClassSignature(location.classID);
98 methodName = getMethodName(location.classID, location.methodID);
102 builder.append("0x" + Long.toHexString(location.classID));
BreakpointTest.java 57 long classID = getClassIDBySignature(getDebuggeeClassSignature());
58 int requestID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID,
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
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);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ThaiCharacterClasses.java 116 public static String getClassName(int classID)
118 if (classID < 0 || classID >= cCount) {
122 return classNames[classID];
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameAccessTest.java 166 long classID = getClassIDBySignature(getDebuggeeClassSignature());
175 checkStackFrame(classID, eventThreadID, tester, suspensionMethodInfo, true);
184 checkStackFrame(classID, eventThreadID, tester, suspensionMethodInfo, false);
217 * @param classID
230 private void checkStackFrame(long classID, long eventThreadID, StackFrameTester tester,
234 long testMethodID = getMethodID(classID, testMethodName);
238 VarInfo[] variables = jdwpGetVariableTable(classID, testMethodID);
242 FrameInfo testMethodFrame = getFrameInfo(eventThreadID, classID, testMethodID);
371 * @param classID
378 protected VarInfo getVariableInfo(long classID, long methodID, String variableName)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethodAfterMultipleThreadSuspensionTest.java 40 protected CommandPacket buildInvokeCommand(long threadId, long classID,
45 command.setNextValueAsClassID(classID);
InvokeMethodWithSuspensionTest.java 38 protected CommandPacket buildInvokeCommand(long threadId, long classID,
43 command.setNextValueAsClassID(classID);
NewInstanceAfterMultipleThreadSuspensionTest.java 39 protected CommandPacket buildInvokeCommand(long threadId, long classID,
44 command.setNextValueAsClassID(classID);
NewInstanceWithSuspensionTest.java 37 protected CommandPacket buildInvokeCommand(long threadId, long classID,
42 command.setNextValueAsClassID(classID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
LaunchedDebugger.java 197 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) {
231 packet.setNextValueAsClassID(classID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
ClassObjectIDTest.java 49 * <BR>It runs multiSessionDebuggee, gets classID and classObjectID, re-connects
58 long classID = debuggeeWrapper.vmMirror.getClassID(DEBUGGEE_SIGNATURE);
59 long classObjectID = debuggeeWrapper.vmMirror.getClassObjectId(classID);
71 logWriter.println("=> Trying to get classID using old classObjectID");
RefTypeIDTest.java 49 * <BR>It runs multiSessionDebuggee, gets classID, re-connects
50 * and tries to set request for BREAKPOINT event using classID, received before
58 long classID = debuggeeWrapper.vmMirror.getClassID(DEBUGGEE_SIGNATURE);
71 logWriter.println("=> Trying to set a breakpoint using old classID");
75 .setBreakpointAtMethodBegin(classID, METHOD_NAME);
  /external/skia/src/gpu/batches/
GrTestBatch.h 52 GrTestBatch(uint32_t classID, const GrGeometryProcessor* gp, const SkRect& bounds)
53 : INHERITED(classID) {
GrVertexBatch.h 27 GrVertexBatch(uint32_t classID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FramesTest.java 89 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
90 classSignature = getClassSignature(frame.loc.classID);
143 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
144 classSignature = getClassSignature(frame.loc.classID);
198 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
199 classSignature = getClassSignature(frame.loc.classID);
259 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
260 classSignature = getClassSignature(frame.loc.classID);
285 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
286 classSignature = getClassSignature(frame.loc.classID);
    [all...]
StopTest.java 66 long classID =
70 debuggeeWrapper.vmMirror.getFieldID(classID, StopDebuggee.FIELD_NAME);
77 packet.setNextValueAsReferenceTypeID(classID);
  /external/skia/include/gpu/
GrXferProcessor.h 216 if (this->classID() != that.classID()) {
330 if (this->classID() != that.classID()) {
341 uint32_t classID() const { SkASSERT(kIllegalXPFClassID != fClassID); return fClassID; }
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
Resume002Test.java 78 long classID = getClassIDBySignature(getDebuggeeClassSignature());
79 long methodID = getMethodID(classID, BREAKPOINT_METHOD_NAME);
80 Location location = new Location(JDWPConstants.TypeTag.CLASS, classID, methodID, 0);
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 151 public void addH (final int level, final String text, final String classID)
157 h.setClass (classID);
162 public void addH (final int level, final IContent text, final String classID)
168 h.setClass (classID);
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 68 uint32_t classID = proc.classID();
72 if ((processorKeySize | classID) & kMetaKeyInvalidMask) {
79 key[0] = (classID << 16) | SkToU32(processorKeySize);
  /external/skia/src/gpu/vk/
GrVkProgramDesc.cpp 55 uint32_t classID = proc.classID();
59 if ((processorKeySize | classID) & kMetaKeyInvalidMask) {
66 key[0] = (classID << 16) | SkToU32(processorKeySize);

Completed in 1216 milliseconds

12 3 4 5