Lines Matching refs:size

86     // - but only update the items that we expect to have changed size.
91 if (mapItem.size != stringIds.size()) {
92 Log.debug("Updating StringIDs List size: " + stringIds.size());
93 mapItem.size = stringIds.size();
94 header.stringIdsSize = stringIds.size();
98 if (mapItem.size != stringDatas.size()) {
99 Log.debug("Updating StringDatas List size: " + stringDatas.size());
100 mapItem.size = stringDatas.size();
104 if (mapItem.size != methodIds.size()) {
105 Log.debug("Updating MethodIDs List size: " + methodIds.size());
106 mapItem.size = methodIds.size();
107 header.methodIdsSize = methodIds.size();
111 if (mapItem.size != fieldIds.size()) {
112 Log.debug("Updating FieldIDs List size: " + fieldIds.size());
113 mapItem.size = fieldIds.size();
114 header.fieldIdsSize = fieldIds.size();
118 if (mapItem.size != protoIds.size()) {
119 Log.debug("Updating ProtoIDs List size: " + protoIds.size());
120 mapItem.size = protoIds.size();
121 header.protoIdsSize = protoIds.size();
125 if (mapItem.size != typeIds.size()) {
126 Log.debug("Updating TypeIDs List size: " + typeIds.size());
127 mapItem.size = typeIds.size();
128 header.typeIdsSize = typeIds.size();
132 if (mapItem.size != typeLists.size()) {
133 Log.debug("Updating TypeLists List size: " + typeLists.size());
134 mapItem.size = typeLists.size();
149 if (mapItem.size != stringIds.size()) {
150 Log.errorAndQuit("MapItem's size " + mapItem.size
151 + " no longer matches StringIDs table size " + stringIds.size());
158 if (mapItem.size != typeIds.size()) {
159 Log.errorAndQuit("MapItem's size " + mapItem.size
160 + " no longer matches TypeIDs table size " + typeIds.size());
167 if (mapItem.size != protoIds.size()) {
168 Log.errorAndQuit("MapItem's size " + mapItem.size
169 + " no longer matches ProtoIDs table size " + protoIds.size());
176 if (mapItem.size != fieldIds.size()) {
177 Log.errorAndQuit("MapItem's size " + mapItem.size
178 + " no longer matches FieldIDs table size " + fieldIds.size());
185 if (mapItem.size != methodIds.size()) {
186 Log.errorAndQuit("MapItem's size " + mapItem.size
187 + " no longer matches MethodIDs table size " + methodIds.size());
194 if (mapItem.size != classDefs.size()) {
195 Log.errorAndQuit("MapItem's size " + mapItem.size
196 + " no longer matches ClassDefs table size " + classDefs.size());
208 if (mapItem.size != typeLists.size()) {
209 Log.errorAndQuit("MapItem's size " + mapItem.size
210 + " no longer matches TypeLists table size " + typeLists.size());
217 if (mapItem.size != annotationSetRefLists.size()) {
218 Log.errorAndQuit("MapItem's size " + mapItem.size
219 + " no longer matches AnnotationSetRefLists table size "
220 + annotationSetRefLists.size());
227 if (mapItem.size != annotationSetItems.size()) {
228 Log.errorAndQuit("MapItem's size " + mapItem.size
229 + " no longer matches AnnotationSetItems table size "
230 + annotationSetItems.size());
237 if (mapItem.size != classDatas.size()) {
238 Log.errorAndQuit("MapItem's size " + mapItem.size
239 + " no longer matches ClassDataItems table size " + classDatas.size());
246 if (mapItem.size != codeItems.size()) {
247 Log.errorAndQuit("MapItem's size " + mapItem.size
248 + " no longer matches CodeItems table size " + codeItems.size());
255 if (mapItem.size != stringDatas.size()) {
256 Log.errorAndQuit("MapItem's size " + mapItem.size
257 + " no longer matches StringDataItems table size "
258 + stringDatas.size());
268 if (mapItem.size != annotationItems.size()) {
269 Log.errorAndQuit("MapItem's size " + mapItem.size
270 + " no longer matches AnnotationItems table size "
271 + annotationItems.size());
278 if (mapItem.size != encodedArrayItems.size()) {
279 Log.errorAndQuit("MapItem's size " + mapItem.size
280 + " no longer matches EncodedArrayItems table size "
281 + encodedArrayItems.size());
288 if (mapItem.size != annotationsDirectoryItems.size()) {
289 Log.errorAndQuit("MapItem's size " + mapItem.size
290 + " no longer matches AnnotationDirectoryItems table size "
291 + annotationsDirectoryItems.size());
321 * Given a DexRandomAccessFile, update the file size, data size, and checksum.
324 // File size must be updated before checksum.
329 // Data size must be updated before checksum.