Searched refs:fieldsCount (Results 1 – 8 of 8) 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()
74 private fun Class<*>.fieldsCountOrDefault(defaultValue: Int) = kotlin.runCatching { fieldsCount() }… in <lambda>()76 private tailrec fun Class<*>.fieldsCount(accumulator: Int = 0): Int { in fieldsCount() method77 val fieldsCount = declaredFields.count { !Modifier.isStatic(it.modifiers) } in fieldsCount() constant78 val totalFields = accumulator + fieldsCount in fieldsCount()80 return superClass.fieldsCount(totalFields) in fieldsCount()
21 protected FieldsSet(int whichEnum, int fieldsCount) { in FieldsSet() argument22 if (fieldsCount <= 0 && whichEnum != NO_ENUM) { in FieldsSet()23 fieldsCount = DebugUtilities.enumCount(whichEnum); in FieldsSet()26 fFieldsCount = fieldsCount; in FieldsSet()27 if(fieldsCount<0) { in FieldsSet()28 throw new InternalError("Preposterous field count " + fieldsCount); in FieldsSet()
24 protected FieldsSet(int whichEnum, int fieldsCount) { in FieldsSet() argument25 if (fieldsCount <= 0 && whichEnum != NO_ENUM) { in FieldsSet()26 fieldsCount = DebugUtilities.enumCount(whichEnum); in FieldsSet()29 fFieldsCount = fieldsCount; in FieldsSet()30 if(fieldsCount<0) { in FieldsSet()31 throw new InternalError("Preposterous field count " + fieldsCount); in FieldsSet()
163 int fieldsCount = fields.length; in testInvokeMethod() local164 assertTrue("Invalid fieldsCount=" + fieldsCount + ", must be >= " + fieldValues.length in testInvokeMethod()165 , fieldsCount >= fieldValues.length); in testInvokeMethod()
2054 int fieldsCount = fieldIDs.length; in getObjectReferenceValues() local2055 if (fieldsCount == 0) { in getObjectReferenceValues()2063 command.setNextValueAsInt(fieldsCount); in getObjectReferenceValues()2064 for (int i = 0; i < fieldsCount; i++) { in getObjectReferenceValues()2070 Value[] values = new Value[fieldsCount]; in getObjectReferenceValues()2071 for (int i = 0; i < fieldsCount; i++) { in getObjectReferenceValues()2088 int fieldsCount = fieldIDs.length; in getReferenceTypeValues() local2089 if (fieldsCount == 0) { in getReferenceTypeValues()2097 command.setNextValueAsInt(fieldsCount); in getReferenceTypeValues()2098 for (int i = 0; i < fieldsCount; i++) { in getReferenceTypeValues()[all …]
46 FieldsSet(int32_t fieldsCount);
469 int fieldsCount = reader.u2(); in readFields() local471 for (int i = 0; i < fieldsCount; i++) { in readFields()