Home
last modified time | relevance | path

Searched refs:TypeSection (Results 1 – 17 of 17) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DTypePool.java35 import org.jf.dexlib2.writer.TypeSection;
41 implements TypeSection<CharSequence, CharSequence, TypeReference> {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DBuilderTypePool.java36 import org.jf.dexlib2.writer.TypeSection;
45 implements TypeSection<BuilderStringReference, BuilderTypeReference, BuilderTypeReference> {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DDebugWriter.java43 @Nonnull private final TypeSection<StringKey, TypeKey, ?> typeSection;
49 @Nonnull TypeSection<StringKey, TypeKey, ?> typeSection, in DebugWriter()
DTypeSection.java38 public interface TypeSection<StringKey, TypeKey, TypeRef extends TypeReference> extends NullableInd… interface
DEncodedValueWriter.java50 @Nonnull private final TypeSection<?, TypeKey, ?> typeSection;
60 @Nonnull TypeSection<?, TypeKey, ?> typeSection, in EncodedValueWriter() argument
DInstructionWriter.java58 @Nonnull private final TypeSection<?, ?, TypeRef> typeSection;
74 @Nonnull TypeSection<?, ?, TypeRef> typeSection, in makeInstructionWriter() argument
89 @Nonnull TypeSection<?, ?, TypeRef> typeSection, in InstructionWriter() argument
DDexWriter.java94 TypeSectionType extends TypeSection<StringKey, TypeKey, TypeRef>,
/external/llvm-project/lld/wasm/
DSyntheticSections.h85 class TypeSection : public SyntheticSection {
87 TypeSection() : SyntheticSection(llvm::wasm::WASM_SEC_TYPE) {} in TypeSection() function
355 TypeSection *typeSec;
DSyntheticSections.cpp70 uint32_t TypeSection::registerType(const WasmSignature &sig) { in registerType()
79 uint32_t TypeSection::lookupType(const WasmSignature &sig) { in lookupType()
88 void TypeSection::writeBody() { in writeBody()
DWriter.cpp1201 out.typeSec = make<TypeSection>(); in createSyntheticSections()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
324 WasmYAML::TypeSection &Section) { in writeSectionContent()
564 else if (auto S = dyn_cast<WasmYAML::TypeSection>(Sec.get())) in writeWasm()
DWasmYAML.cpp96 static void sectionMapping(IO &IO, WasmYAML::TypeSection &Section) { in sectionMapping()
207 Section.reset(new WasmYAML::TypeSection()); in mapping()
208 sectionMapping(IO, *cast<WasmYAML::TypeSection>(Section.get())); in mapping()
/external/llvm-project/llvm/lib/ObjectYAML/
DWasmEmitter.cpp39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
339 WasmYAML::TypeSection &Section) { in writeSectionContent()
590 else if (auto S = dyn_cast<WasmYAML::TypeSection>(Sec.get())) in writeWasm()
DWasmYAML.cpp97 static void sectionMapping(IO &IO, WasmYAML::TypeSection &Section) { in sectionMapping()
208 Section.reset(new WasmYAML::TypeSection()); in mapping()
209 sectionMapping(IO, *cast<WasmYAML::TypeSection>(Section.get())); in mapping()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DWasmYAML.h266 struct TypeSection : Section { struct
267 TypeSection() : Section(wasm::WASM_SEC_TYPE) {} in TypeSection() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h262 struct TypeSection : Section { struct
263 TypeSection() : Section(wasm::WASM_SEC_TYPE) {} in TypeSection() function
/external/llvm-project/llvm/tools/obj2yaml/
Dwasm2yaml.cpp210 auto TypeSec = std::make_unique<WasmYAML::TypeSection>(); in dump()