HomeSort by relevance Sort by last modified time
    Searched defs:annotationsOff (Results 1 - 15 of 15) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetRefItem.java 72 int annotationsOff = annotations.getAbsoluteOffset();
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
78 out.writeInt(annotationsOff);
FieldAnnotationStruct.java 87 int annotationsOff = annotations.getAbsoluteOffset();
93 Hex.u4(annotationsOff));
97 out.writeInt(annotationsOff);
MethodAnnotationStruct.java 87 int annotationsOff = annotations.getAbsoluteOffset();
93 Hex.u4(annotationsOff));
97 out.writeInt(annotationsOff);
ParameterAnnotationStruct.java 111 int annotationsOff = annotationsItem.getAbsoluteOffset();
117 Hex.u4(annotationsOff));
121 out.writeInt(annotationsOff);
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetRefItem.java 72 int annotationsOff = annotations.getAbsoluteOffset();
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
78 out.writeInt(annotationsOff);
FieldAnnotationStruct.java 87 int annotationsOff = annotations.getAbsoluteOffset();
93 Hex.u4(annotationsOff));
97 out.writeInt(annotationsOff);
MethodAnnotationStruct.java 87 int annotationsOff = annotations.getAbsoluteOffset();
93 Hex.u4(annotationsOff));
97 out.writeInt(annotationsOff);
ParameterAnnotationStruct.java 111 int annotationsOff = annotationsItem.getAbsoluteOffset();
117 Hex.u4(annotationsOff));
121 out.writeInt(annotationsOff);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetRefItem.java 72 int annotationsOff = annotations.getAbsoluteOffset();
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
78 out.writeInt(annotationsOff);
FieldAnnotationStruct.java 87 int annotationsOff = annotations.getAbsoluteOffset();
93 Hex.u4(annotationsOff));
97 out.writeInt(annotationsOff);
MethodAnnotationStruct.java 87 int annotationsOff = annotations.getAbsoluteOffset();
93 Hex.u4(annotationsOff));
97 out.writeInt(annotationsOff);
ParameterAnnotationStruct.java 111 int annotationsOff = annotationsItem.getAbsoluteOffset();
117 Hex.u4(annotationsOff));
121 out.writeInt(annotationsOff);
  /cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java 102 int annotationsOff;// uint
108 int annotationsOff;// uint
114 int annotationsOff;// uint
134 annotationDir.fieldAnnotations[i].annotationsOff = buffer
148 annotationDir.methodAnnotations[i].annotationsOff = buffer
164 annotationDir.parameterAnnotations[i].annotationsOff =
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 657 int annotationsOff = classDef.getAnnotationsOffset();
658 idsDefsOut.writeInt(indexMap.adjustAnnotationDirectory(annotationsOff));
    [all...]
  /dalvik/libdex/
DexFile.h 310 u4 annotationsOff; /* file offset to annotations_directory_item */
386 u4 annotationsOff; /* offset to DexAnnotationSetItem */
394 u4 annotationsOff; /* offset to DexAnnotationSetItem */
402 u4 annotationsOff; /* offset to DexAnotationSetRefList */
409 u4 annotationsOff; /* offset to DexAnnotationSetItem */
736 if (pClassDef->annotationsOff == 0)
739 (pDexFile->baseAddr + pClassDef->annotationsOff);
846 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff);
876 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff);
907 if (pItem->annotationsOff == 0)
    [all...]

Completed in 434 milliseconds