HomeSort by: relevance | last modified time | path
    Searched refs:ImportModule (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSymbolWasm.h 24 Optional<StringRef> ImportModule;
85 bool hasImportModule() const { return ImportModule.hasValue(); }
87 if (ImportModule.hasValue())
88 return ImportModule.getValue();
95 void setImportModule(StringRef Name) { ImportModule = Name; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyTargetStreamer.h 49 StringRef ImportModule) = 0;
75 void emitImportModule(const MCSymbolWasm *Sym, StringRef ImportModule) override;
93 StringRef ImportModule) override {}
WebAssemblyTargetStreamer.cpp 102 StringRef ImportModule) {
104 << ImportModule << '\n';
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
WasmDumper.cpp 226 if (Symbol.Info.ImportModule) {
227 W.printString("ImportModule", *Symbol.Info.ImportModule);
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h 194 Optional<StringRef> ImportModule;
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 884 auto ImportModule = expectIdent();
886 WasmSym->setImportModule(storeName(ImportModule));
887 TOut.emitImportModule(WasmSym, ImportModule);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 562 Info.ImportModule = Import.Module;
594 Info.ImportModule = Import.Module;
626 Info.ImportModule = Import.Module;
693 Info.ImportModule = Import.Module;

Completed in 33 milliseconds