Searched refs:classID (Results 1 - 25 of 90) sorted by relevance

1234

/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
/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 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 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...]
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 DBreakpoint002Test.java160 long classID = debuggeeWrapper.vmMirror.getClassID(getDebuggeeClassSignature());
161 assertTrue("Failed to find debuggee class", classID != -1);
164 int breakpointReqID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, methodName);
/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);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DSetValues002Test.java296 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
[all...]
H A DGetValues002Test.java180 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_VALU
[all...]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DClassTable.java22 private int classID; field in class:ClassTable.ClassEntry
24 public ClassEntry(int glyphID, int classID) argument
27 this.classID = classID;
37 return classID;
98 private int classID; field in class:ClassTable.ClassRangeRecord
100 public ClassRangeRecord(int startGlyphID, int endGlyphID, int classID) argument
104 this.classID = classID;
113 System.out.println(classID);
133 addMapping(int charID, int classID) argument
140 addMapping(int startCharID, int endCharID, int classID) 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/batches/
H A DGrBatch.cpp49 GrBatch::GrBatch(uint32_t classID) argument
50 : fClassID(classID)
H A DGrDrawBatch.cpp10 GrDrawBatch::GrDrawBatch(uint32_t classID) : INHERITED(classID), fPipelineInstalled(false) { } argument
H A DGrBatch.h58 GrBatch(uint32_t classID);
64 if (this->classID() != that->classID()) {
87 SkASSERT(T::ClassID() == this->classID());
92 SkASSERT(T::ClassID() == this->classID());
96 uint32_t classID() const { SkASSERT(kIllegalBatchID != fClassID); return fClassID; } function in class:GrBatch
/external/icu/icu4c/source/common/unicode/
H A Duobject.h295 static char classID = 0; \
296 return (UClassID)&classID; \
312 static char classID = 0; \
313 return (UClassID)&classID; \
/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/lzma/CPP/Windows/
H A DCOM.h58 HRESULT StringToGUIDW(const wchar_t *string, GUID &classID);
59 HRESULT StringToGUIDA(const char *string, GUID &classID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DBytecodesTest.java52 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
54 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
64 packet.setNextValueAsClassID(classID);
H A DIsObsoleteTest.java49 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
51 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
61 packet.setNextValueAsClassID(classID);
H A DLineTableTest.java49 long classID = getClassIDBySignature("L"+getDebuggeeClassName().replace('.', '/')+";");
51 MethodInfo[] methodsInfo = jdwpGetMethodsInfo(classID);
58 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID());
/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 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,
162 * @param classID
170 protected abstract CommandPacket buildInvokeCommand(long threadId, long classID, argument
H A DJDWPTestCase.java172 long classID = getObjectReferenceType(objectID);
173 return getClassSignature(classID);
199 * @param classID -
205 protected long getMethodID(long classID, String methodName) { argument
209 command.setNextValueAsClassID(classID);
228 * @param classID -
236 protected long getMethodID(long classID, String methodName, String methodSignature) { argument
240 command.setNextValueAsClassID(classID);
259 * @param classID -
265 protected ReplyPacket getLineTable(long classID, lon argument
284 getMethodName(long classID, long methodID) argument
310 getClassSignature(long classID) argument
[all...]

Completed in 1407 milliseconds

1234