HomeSort by relevance Sort by last modified time
    Searched refs:ProtoSection (Results 1 - 5 of 5) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
ProtoSection.java 37 public interface ProtoSection<StringKey, TypeKey, ProtoKey, TypeListKey> extends IndexSection<ProtoKey> {
InstructionWriter.java 65 @Nonnull private final ProtoSection<?, ?, ProtoRefKey, ?> protoSection;
77 @Nonnull ProtoSection<?, ?, ProtoRefKey, ?> protoSection) {
79 opcodes, writer, stringSection, typeSection, fieldSection, methodSection, protoSection);
88 @Nonnull ProtoSection<?, ?, ProtoRefKey, ?> protoSection) {
95 this.protoSection = protoSection;
553 return protoSection.getItemIndex((ProtoRefKey) reference)
    [all...]
DexWriter.java 95 ProtoSectionType extends ProtoSection<StringKey, TypeKey, ProtoRefKey, TypeListKey>,
137 public final ProtoSectionType protoSection;
152 this.protoSection = sectionProvider.getProtoSection();
196 protoSection.getItemCount() * ProtoIdItem.ITEM_SIZE +
366 List<Map.Entry<? extends ProtoRefKey, Integer>> protoEntries = Lists.newArrayList(protoSection.getItems());
372 writer.writeInt(stringSection.getItemIndex(protoSection.getShorty(key)));
373 writer.writeInt(typeSection.getItemIndex(protoSection.getReturnType(key)));
374 writer.writeInt(typeListSection.getNullableItemOffset(protoSection.getParameters(key)));
405 writer.writeUshort(protoSection.getItemIndex(methodSection.getPrototype(key)));
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ProtoPool.java 36 import org.jf.dexlib2.writer.ProtoSection;
44 implements ProtoSection<CharSequence, CharSequence, MethodProtoReference,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderProtoPool.java 39 import org.jf.dexlib2.writer.ProtoSection;
48 implements ProtoSection<BuilderStringReference, BuilderTypeReference, BuilderMethodProtoReference, BuilderTypeList> {

Completed in 299 milliseconds