Searched defs:stringSection (Results 1 - 4 of 4) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionWriter.java51 @Nonnull private final StringSection<?, StringRef> stringSection; field in class:InstructionWriter
60 @Nonnull StringSection<?, StringRef> stringSection,
65 writer, stringSection, typeSection, fieldSection, methodSection);
69 @Nonnull StringSection<?, StringRef> stringSection,
74 this.stringSection = stringSection;
424 return stringSection.getItemIndex((StringRef)referenceInstruction.getReference());
58 makeInstructionWriter( @onnull DexDataWriter writer, @Nonnull StringSection<?, StringRef> stringSection, @Nonnull TypeSection<?, ?, TypeRef> typeSection, @Nonnull FieldSection<?, ?, FieldRefKey, ?> fieldSection, @Nonnull MethodSection<?, ?, ?, MethodRefKey, ?> methodSection) argument
68 InstructionWriter(@onnull DexDataWriter writer, @Nonnull StringSection<?, StringRef> stringSection, @Nonnull TypeSection<?, ?, TypeRef> typeSection, @Nonnull FieldSection<?, ?, FieldRefKey, ?> fieldSection, @Nonnull MethodSection<?, ?, ?, MethodRefKey, ?> methodSection) argument
H A DDebugWriter.java42 @Nonnull private final StringSection<StringKey, ?> stringSection; field in class:DebugWriter
48 DebugWriter(@Nonnull StringSection<StringKey, ?> stringSection, argument
51 this.stringSection = stringSection;
65 int nameIndex = stringSection.getNullableItemIndex(name);
67 int signatureIndex = stringSection.getNullableItemIndex(signature);
130 writer.writeUleb128(stringSection.getNullableItemIndex(sourceFile) + 1);
H A DEncodedValueWriter.java45 @Nonnull private final StringSection<StringKey, ?> stringSection; field in class:EncodedValueWriter
53 @Nonnull StringSection<StringKey, ?> stringSection,
59 this.stringSection = stringSection;
74 writer.writeUleb128(stringSection.getItemIndex(annotationSection.getElementName(element)));
136 writer.writeEncodedUint(ValueType.STRING, stringSection.getItemIndex(value));
51 EncodedValueWriter( @onnull DexDataWriter writer, @Nonnull StringSection<StringKey, ?> stringSection, @Nonnull TypeSection<?, TypeKey, ?> typeSection, @Nonnull FieldSection<?, ?, FieldRefKey, ?> fieldSection, @Nonnull MethodSection<?, ?, ?, MethodRefKey, ?> methodSection, @Nonnull AnnotationSection<StringKey, TypeKey, ?, AnnotationElement, EncodedValue> annotationSection) argument
H A DDexWriter.java116 protected final StringSection<StringKey, StringRef> stringSection; field in class:DexWriter
129 StringSection<StringKey, StringRef> stringSection,
141 this.stringSection = stringSection;
173 super(writer, stringSection, typeSection, fieldSection, methodSection, annotationSection);
183 stringSection.getItems().size() * StringIdItem.ITEM_SIZE +
282 List<Entry<? extends StringKey, Integer>> stringEntries = Lists.newArrayList(stringSection.getItems());
304 writer.writeInt(stringSection.getItemIndex(typeSection.getString(entry.getKey())));
318 writer.writeInt(stringSection.getItemIndex(protoSection.getShorty(key)));
336 writer.writeInt(stringSection
128 DexWriter(int api, StringSection<StringKey, StringRef> stringSection, TypeSection<StringKey, TypeKey, TypeRef> typeSection, ProtoSection<StringKey, TypeKey, ProtoKey, TypeListKey> protoSection, FieldSection<StringKey, TypeKey, FieldRefKey, FieldKey> fieldSection, MethodSection<StringKey, TypeKey, ProtoKey, MethodRefKey, MethodKey> methodSection, ClassSection<StringKey, TypeKey, TypeListKey, ClassKey, FieldKey, MethodKey, AnnotationSetKey, EncodedValue> classSection, TypeListSection<TypeKey, TypeListKey> typeListSection, AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationElement, EncodedValue> annotationSection, AnnotationSetSection<AnnotationKey, AnnotationSetKey> annotationSetSection) argument
[all...]

Completed in 359 milliseconds