INNER CODE UNIT · Java

size

KeepSafe/dexcount-gradle-plugin · src/main/java/com/android/dexdeps/DexData.java:215

                int size = readInt();       // #of entries in list
                protoId.types = new int[size];

                for (int j = 0; j < size; j++) {
                    protoId.types[j] = readShort() & 0xffff;
                }
            }
        }
    }

    /**
     * Loads the field ID list.
     */
    void loadFieldIds() throws IOException {
        int count = mHeaderItem.fieldIdsSize;
        mFieldIds = new FieldIdItem[count];

        //System.out.println("reading " + count + " fieldIds");

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…