Home
last modified time | relevance | path

Searched refs:fieldsCount (Results 1 – 6 of 6) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
DClassEditor.java122 int fieldsCount = targetClass.u2fieldsCount; in addField() local
126 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() local
159 fieldsCount - fieldIndex - 1); in removeField()
172 int fieldsCount = targetClass.u2fieldsCount; in findFieldIndex() local
175 for (int index = 0; index < fieldsCount; index++) in findFieldIndex()
183 return fieldsCount; in findFieldIndex()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DFieldsSet.java22 protected FieldsSet(int whichEnum, int fieldsCount) { in FieldsSet() argument
23 if (fieldsCount <= 0 && whichEnum != NO_ENUM) { in FieldsSet()
24 fieldsCount = DebugUtilities.enumCount(whichEnum); in FieldsSet()
27 fFieldsCount = fieldsCount; in FieldsSet()
28 if(fieldsCount<0) { in FieldsSet()
29 throw new InternalError("Preposterous field count " + fieldsCount); in FieldsSet()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DFieldsSet.java21 protected FieldsSet(int whichEnum, int fieldsCount) { in FieldsSet() argument
22 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()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethod002Test.java189 int fieldsCount = reply.getNextValueAsInt(); in testInvokeMethod() local
190 assertTrue("Invalid fieldsCount=" + fieldsCount + ", must be >= " + fieldValues.length in testInvokeMethod()
191 , fieldsCount >= fieldValues.length); in testInvokeMethod()
193 for (int i = 0; i < fieldsCount; i++) { in testInvokeMethod()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DVmMirror.java2051 int fieldsCount = fieldIDs.length; in getObjectReferenceValues() local
2052 if (fieldsCount == 0) { in getObjectReferenceValues()
2060 command.setNextValueAsInt(fieldsCount); in getObjectReferenceValues()
2061 for (int i = 0; i < fieldsCount; i++) { in getObjectReferenceValues()
2067 Value[] values = new Value[fieldsCount]; in getObjectReferenceValues()
2068 for (int i = 0; i < fieldsCount; i++) { in getObjectReferenceValues()
2085 int fieldsCount = fieldIDs.length; in getReferenceTypeValues() local
2086 if (fieldsCount == 0) { in getReferenceTypeValues()
2094 command.setNextValueAsInt(fieldsCount); in getReferenceTypeValues()
2095 for (int i = 0; i < fieldsCount; i++) { in getReferenceTypeValues()
[all …]
/external/icu/icu4c/source/test/intltest/
Dfldset.h46 FieldsSet(int32_t fieldsCount);