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

  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DIContext.cpp 21 StringRef stringSection) {
23 aRangeSection, lineSection, stringSection);
DWARFContext.h 93 StringRef StringSection;
100 StringRef stringSection)
106 StringSection(stringSection)
113 virtual StringRef getStringSection() { return StringSection; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
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 48 @Nonnull private final StringSection<StringKey, ?> stringSection;
56 @Nonnull StringSection<StringKey, ?> stringSection,
62 this.stringSection = stringSection;
81 writer.writeUleb128(stringSection.getItemIndex(annotationSection.getElementName(element)));
143 writer.writeEncodedUint(ValueType.STRING, stringSection.getItemIndex(value));
DexWriter.java 93 StringSectionType extends StringSection<StringKey, StringRef>,
135 public final StringSectionType stringSection;
150 this.stringSection = sectionProvider.getStringSection();
184 super(writer, stringSection, typeSection, fieldSection, methodSection, annotationSection);
194 stringSection.getItemCount() * StringIdItem.ITEM_SIZE +
336 List<Entry<? extends StringKey, Integer>> stringEntries = Lists.newArrayList(stringSection.getItems());
358 writer.writeInt(stringSection.getItemIndex(typeSection.getString(entry.getKey())));
372 writer.writeInt(stringSection.getItemIndex(protoSection.getShorty(key)));
390 writer.writeInt(stringSection.getItemIndex(fieldSection.getName(key)));
406 writer.writeInt(stringSection.getItemIndex(methodSection.getName(key)))
    [all...]
InstructionWriter.java 61 @Nonnull private final StringSection<?, StringRef> stringSection;
73 @Nonnull StringSection<?, StringRef> stringSection,
79 opcodes, writer, stringSection, typeSection, fieldSection, methodSection, protoSection);
84 @Nonnull StringSection<?, StringRef> stringSection,
91 this.stringSection = stringSection;
549 return stringSection.getItemIndex((StringRef) reference)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypePool.java 52 dexPool.stringSection.intern(typeString);
AnnotationPool.java 54 dexPool.stringSection.intern(element.getName());
FieldPool.java 51 dexPool.stringSection.intern(field.getName());
MethodPool.java 52 dexPool.stringSection.intern(method.getName());
ProtoPool.java 54 dexPool.stringSection.intern(getShorty(reference));
DexPool.java 61 stringSection, typeSection, protoSection, fieldSection, methodSection, classSection, typeListSection,
184 stringSection.intern(element.getName());
194 stringSection.intern(((StringEncodedValue)encodedValue).getValue());
ClassPool.java 80 dexPool.stringSection.internNullable(poolClassDef.getSourceFile());
131 dexPool.stringSection.intern((StringReference)reference);
167 dexPool.stringSection.intern(paramName);
177 dexPool.stringSection.internNullable(startLocal.getName());
179 dexPool.stringSection.internNullable(startLocal.getSignature());
182 dexPool.stringSection.internNullable(((SetSourceFile) debugItem).getSourceFile());
  /external/swiftshader/third_party/LLVM/include/llvm/DebugInfo/
DIContext.h 59 StringRef stringSection = StringRef());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderTypePool.java 57 BuilderStringReference stringRef = dexBuilder.stringSection.internString(type);
DexBuilder.java 129 stringSection.internNullableString(sourceFile),
136 return stringSection.internString(string);
204 stringSection.internNullableString(methodParameter.getName()),
279 return new BuilderAnnotationElement(stringSection.internString(annotationElement.getName()),
360 return new BuilderStringEncodedValue(stringSection.internString(string.getValue()));
BuilderFieldPool.java 66 dexBuilder.stringSection.internString(fieldReference.getName()),
BuilderProtoPool.java 63 dexBuilder.stringSection.internString(MethodUtil.getShorty(
BuilderMethodPool.java 62 dexBuilder.stringSection.internString(methodReference.getName()),

Completed in 677 milliseconds