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

123

/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;
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/ArrayReference/
H A DLengthTest.java54 // obtain classID
55 long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayReferenceDebuggee;");
58 Field[] fields = debuggeeWrapper.vmMirror.getFieldsInfo(classID);
66 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 10);
69 checkArrayLength(classID, fieldID, JDWPConstants.Error.NONE, 8);
72 checkArrayLength(classID, fieldID, JDWPConstants.Error.INVALID_ARRAY, 0);
80 private void checkArrayLength(long classID, long fieldID, int error, int length) { argument
81 //System.err.println("classID="+classID);
86 packet.setNextValueAsReferenceTypeID(classID);
[all...]
H A DSetValuesTest.java54 // obtain classID
55 long classID = getClassIDBySignature("Lorg/apache/harmony/jpda/tests/jdwp/ArrayReference/ArrayReferenceDebuggee;");
58 Field[] fields = debuggeeWrapper.vmMirror.getFieldsInfo(classID);
70 checkArrayValues(valuesRegion, classID, fieldID);
77 checkArrayValues(valuesRegion, classID, fieldID);
84 checkArrayValues(valuesRegion, classID, fieldID);
91 private void checkArrayValues(ArrayRegion valuesRegion, long classID, argument
96 packet.setNextValueAsReferenceTypeID(classID);
H A DGetValuesTest.java56 // obtain classID
57 long classID = getClassIDBySignature(debuggeeSig);
60 Field[] fields = debuggeeWrapper.vmMirror.getFieldsInfo(classID);
69 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
75 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
81 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
87 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
93 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
99 checkArrayValues(classID, fieldID, JDWPConstants.Error.NONE, 1,
106 checkArrayValues(classID, fieldI
128 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.java53 long classID = getClassIDBySignature(getDebuggeeSignature());
55 Field[] fields = jdwpGetFieldIDs(classID);
60 testField(classID, field);
64 private void testField(long classID, Field fieldInfo) { argument
71 testField(classID, fieldInfo, Value.createByte(Byte.MIN_VALUE));
72 testField(classID, fieldInfo, Value.createByte(Byte.MAX_VALUE));
73 testField(classID, fieldInfo, Value.createByte((byte)0));
76 testField(classID, fieldInfo, Value.createChar(Character.MAX_VALUE));
77 testField(classID, fieldInfo, Value.createChar(Character.MIN_VALUE));
80 testField(classID, fieldInf
118 testField(long classID, Field fieldInfo, Value value) argument
153 jdwpGetFieldIDs(long classID) argument
[all...]
H A DInvokeMethodAfterMultipleThreadSuspensionTest.java40 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
45 command.setNextValueAsClassID(classID);
H A DInvokeMethodWithSuspensionTest.java38 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
43 command.setNextValueAsClassID(classID);
H A DNewInstanceAfterMultipleThreadSuspensionTest.java39 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
44 command.setNextValueAsClassID(classID);
H A DNewInstanceWithSuspensionTest.java37 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
42 command.setNextValueAsClassID(classID);
H A DSuperClassTest.java42 private ReplyPacket jdwpGetSuperClassReply(long classID, int errorExpected) { argument
46 packet.setNextValueAsClassID(classID);
86 long classID = getClassIDBySignature("Ljava/lang/String;");
88 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
96 long classID = getClassIDBySignature("[Ljava/lang/String;");
98 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
106 long classID = getClassIDBySignature("[I");
108 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
115 long classID = getClassIDBySignature(getDebuggeeSignature());
117 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstant
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DBreakpointMultipleTest.java51 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) { argument
115 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/skia/src/gpu/
H A DGrGeometryProcessor.h22 GrGeometryProcessor(ClassID classID) argument
23 : INHERITED(classID)
/external/skia/src/gpu/ops/
H A DGrDrawOp.h23 GrDrawOp(uint32_t classID) : INHERITED(classID) {} argument
H A DGrOp.cpp57 GrOp::GrOp(uint32_t classID) argument
58 : fClassID(classID)
60 SkASSERT(classID == SkToU32(fClassID));
/external/skqp/src/gpu/
H A DGrGeometryProcessor.h22 GrGeometryProcessor(ClassID classID) argument
23 : INHERITED(classID)
/external/skqp/src/gpu/ops/
H A DGrDrawOp.h23 GrDrawOp(uint32_t classID) : INHERITED(classID) {} argument
H A DGrOp.cpp57 GrOp::GrOp(uint32_t classID) argument
58 : fClassID(classID)
60 SkASSERT(classID == SkToU32(fClassID));
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DInvokeMethodAfterMultipleThreadSuspensionTest.java40 protected CommandPacket buildInvokeCommand(long threadId, long classID, argument
57 command.setNextValueAsClassID(classID);
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 DJDWPInvokeMethodSuspendedTwiceTestCase.java60 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, argument
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
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DJDWPStackFrameTestCase.java103 protected Frame.Variable[] jdwpGetVariableTable(long classID, long methodID) { argument
104 List<Variable> variables = debuggeeWrapper.vmMirror.getVariableTable(classID, methodID);
/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);

Completed in 509 milliseconds

123