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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
StringSection.java 38 public interface StringSection<StringKey, StringRef extends StringReference> extends NullableIndexSection<StringKey> {
DebugWriter.java 42 @Nonnull private final StringSection<StringKey, ?> stringSection;
48 DebugWriter(@Nonnull StringSection<StringKey, ?> stringSection,
51 this.stringSection = stringSection;
65 int nameIndex = stringSection.getNullableItemIndex(name);
67 int signatureIndex = stringSection.getNullableItemIndex(signature);
130 writer.writeUleb128(stringSection.getNullableItemIndex(sourceFile) + 1);
EncodedValueWriter.java 45 @Nonnull private final StringSection<StringKey, ?> stringSection;
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));
InstructionWriter.java 51 @Nonnull private final StringSection<?, StringRef> stringSection;
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())
    [all...]
DexWriter.java 116 protected final StringSection<StringKey, StringRef> stringSection;
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())))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
StringPool.java 35 import org.jf.dexlib2.writer.StringSection;
41 public class StringPool extends StringTypeBasePool implements StringSection<CharSequence, StringReference> {
  /external/llvm/lib/DebugInfo/
DWARFUnit.h 34 StringRef StringSection;
72 StringRef getStringSection() const { return StringSection; }
91 return DataExtractor(StringSection, false, 0);
DWARFContext.h 229 StringRef StringSection;
260 StringRef getStringSection() override { return StringSection; }
DWARFUnit.cpp 23 : Abbrev(DA), InfoSection(IS), RangeSection(RS), StringSection(SS),
DWARFContext.cpp 660 .Case("debug_str", &StringSection)
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderStringPool.java 36 import org.jf.dexlib2.writer.StringSection;
44 class BuilderStringPool implements StringSection<BuilderStringReference, BuilderStringReference> {

Completed in 627 milliseconds