Searched refs:packed (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DSwitchData.java28 * in either a "packed" or "sparse" form.
46 /** whether the output table will be packed (vs. sparse) */
47 private final boolean packed; field in class:SwitchData
89 this.packed = shouldPack(cases);
95 return packed ? (int) packedCodeSize(cases) :
106 if (packed) {
152 * Returns whether or not this instance's data will be output as packed.
154 * @return {@code true} iff the data is to be packed
157 return packed;
183 sb.append(packed
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DSwitchData.java29 * in either a "packed" or "sparse" form.
47 /** whether the output table will be packed (vs. sparse) */
48 private final boolean packed; field in class:SwitchData
90 this.packed = shouldPack(cases);
96 return packed ? (int) packedCodeSize(cases) :
107 if (packed) {
153 * Returns whether or not this instance's data will be output as packed.
155 * @return {@code true} iff the data is to be packed
158 return packed;
184 sb.append(packed
[all...]

Completed in 381 milliseconds