Home
last modified time | relevance | path

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

/dalvik/dexgen/src/com/android/dexgen/dex/file/
DAnnotationsDirectoryItem.java288 int methodsSize = listSize(methodAnnotations); in writeTo0() local
297 Hex.u4(methodsSize)); in writeTo0()
304 out.writeInt(methodsSize); in writeTo0()
317 if (methodsSize != 0) { in writeTo0()
/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationsDirectoryItem.java292 int methodsSize = listSize(methodAnnotations); in writeTo0() local
301 Hex.u4(methodsSize)); in writeTo0()
308 out.writeInt(methodsSize); in writeTo0()
321 if (methodsSize != 0) { in writeTo0()
/dalvik/libdex/
DDexFile.h468 u4 methodsSize; /* count of DexMethodAnnotationsItem */ member
950 if (pAnnoDir->methodsSize == 0) in dexGetMethodAnnotations()
967 return pAnnoDir->methodsSize; in dexGetMethodAnnotationsSize()
991 addr += pAnnoDir->methodsSize * sizeof (DexMethodAnnotationsItem); in dexGetParameterAnnotations()
DDexSwapVerify.cpp1198 SWAP_FIELD4(item->methodsSize); in swapAnnotationsDirectoryItem()
1210 if (item->methodsSize != 0) { in swapAnnotationsDirectoryItem()
1211 addr = swapMethodAnnotations(state, item->methodsSize, addr); in swapAnnotationsDirectoryItem()
1321 if (dir->methodsSize != 0) { in findFirstAnnotationsDirectoryDefiner()
1361 if (item->methodsSize != 0) { in crossVerifyAnnotationsDirectoryItem()
1362 addr = crossVerifyMethodAnnotations(state, item->methodsSize, addr, in crossVerifyAnnotationsDirectoryItem()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java772 int methodsSize = directoryIn.readInt(); in transformAnnotationDirectory() local
773 annotationsDirectoryOut.writeInt(methodsSize); in transformAnnotationDirectory()
786 for (int i = 0; i < methodsSize; i++) { in transformAnnotationDirectory()