Home
last modified time | relevance | path

Searched refs:fieldsSize (Results 1 – 5 of 5) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationsDirectoryItem.java291 int fieldsSize = listSize(fieldAnnotations); in writeTo0() local
299 Hex.u4(fieldsSize)); in writeTo0()
307 out.writeInt(fieldsSize); in writeTo0()
311 if (fieldsSize != 0) { in writeTo0()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DAnnotationsDirectoryItem.java287 int fieldsSize = listSize(fieldAnnotations); in writeTo0() local
295 Hex.u4(fieldsSize)); in writeTo0()
303 out.writeInt(fieldsSize); in writeTo0()
307 if (fieldsSize != 0) { in writeTo0()
/dalvik/libdex/
DDexFile.h410 u4 fieldsSize; /* count of DexFieldAnnotationsItem */ member
866 if (pAnnoDir->fieldsSize == 0) in dexGetFieldAnnotations()
878 return pAnnoDir->fieldsSize; in dexGetFieldAnnotationsSize()
901 addr += pAnnoDir->fieldsSize * sizeof (DexFieldAnnotationsItem); in dexGetMethodAnnotations()
933 addr += pAnnoDir->fieldsSize * sizeof (DexFieldAnnotationsItem); in dexGetParameterAnnotations()
DDexSwapVerify.cpp1134 SWAP_FIELD4(item->fieldsSize); in swapAnnotationsDirectoryItem()
1140 if (item->fieldsSize != 0) { in swapAnnotationsDirectoryItem()
1141 addr = swapFieldAnnotations(state, item->fieldsSize, addr); in swapAnnotationsDirectoryItem()
1230 if (dir->fieldsSize != 0) { in findFirstAnnotationsDirectoryDefiner()
1270 if (item->fieldsSize != 0) { in crossVerifyAnnotationsDirectoryItem()
1271 addr = crossVerifyFieldAnnotations(state, item->fieldsSize, addr, in crossVerifyAnnotationsDirectoryItem()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java689 int fieldsSize = directoryIn.readInt(); in transformAnnotationDirectory() local
690 annotationsDirectoryOut.writeInt(fieldsSize); in transformAnnotationDirectory()
698 for (int i = 0; i < fieldsSize; i++) { in transformAnnotationDirectory()