Searched refs:fieldsCount (Results 1 – 6 of 6) sorted by relevance
122 int fieldsCount = targetClass.u2fieldsCount; in addField() local126 if (fields.length <= fieldsCount) in addField()128 targetClass.fields = new ProgramField[fieldsCount+1]; in addField()131 fieldsCount); in addField()151 int fieldsCount = targetClass.u2fieldsCount; in removeField() local159 fieldsCount - fieldIndex - 1); in removeField()172 int fieldsCount = targetClass.u2fieldsCount; in findFieldIndex() local175 for (int index = 0; index < fieldsCount; index++) in findFieldIndex()183 return fieldsCount; in findFieldIndex()
20 protected FieldsSet(int whichEnum, int fieldsCount) { in FieldsSet() argument21 if (fieldsCount <= 0 && whichEnum != NO_ENUM) { in FieldsSet()22 fieldsCount = DebugUtilities.enumCount(whichEnum); in FieldsSet()25 fFieldsCount = fieldsCount; in FieldsSet()26 if(fieldsCount<0) { in FieldsSet()27 throw new InternalError("Preposterous field count " + fieldsCount); in FieldsSet()
19 protected FieldsSet(int whichEnum, int fieldsCount) { in FieldsSet() argument20 if (fieldsCount <= 0 && whichEnum != NO_ENUM) { in FieldsSet()21 fieldsCount = DebugUtilities.enumCount(whichEnum); in FieldsSet()24 fFieldsCount = fieldsCount; in FieldsSet()25 if(fieldsCount<0) { in FieldsSet()26 throw new InternalError("Preposterous field count " + fieldsCount); in FieldsSet()
188 int fieldsCount = reply.getNextValueAsInt(); in testInvokeMethod() local189 assertTrue("Invalid fieldsCount=" + fieldsCount + ", must be >= " + fieldValues.length in testInvokeMethod()190 , fieldsCount >= fieldValues.length); in testInvokeMethod()192 for (int i = 0; i < fieldsCount; i++) { in testInvokeMethod()
2386 int fieldsCount = fieldIDs.length; in getObjectReferenceValues() local2387 if (fieldsCount == 0) { in getObjectReferenceValues()2395 command.setNextValueAsInt(fieldsCount); in getObjectReferenceValues()2396 for (int i = 0; i < fieldsCount; i++) { in getObjectReferenceValues()2402 Value[] values = new Value[fieldsCount]; in getObjectReferenceValues()2403 for (int i = 0; i < fieldsCount; i++) { in getObjectReferenceValues()2420 int fieldsCount = fieldIDs.length; in getReferenceTypeValues() local2421 if (fieldsCount == 0) { in getReferenceTypeValues()2429 command.setNextValueAsInt(fieldsCount); in getReferenceTypeValues()2430 for (int i = 0; i < fieldsCount; i++) { in getReferenceTypeValues()[all …]
44 FieldsSet(int32_t fieldsCount);