HomeSort by: relevance | last modified time | path
    Searched defs:Exports (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
COFFModuleDefinition.h 28 std::vector<COFFShortExport> Exports;
Wasm.h 147 ArrayRef<wasm::WasmExport> exports() const { return Exports; } function in class:llvm::object::WasmObjectFile
283 std::vector<wasm::WasmExport> Exports;
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
asn1parse.y 263 ModuleBody : Exports Imports AssignmentList
291 Exports : kw_EXPORTS referencenames ';'
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 160 fromCodeViewSubsection(const DebugCrossModuleExportsSubsectionRef &Exports);
162 std::vector<CrossModuleExport> Exports;
342 IO.mapOptional("Exports", Exports);
468 for (const auto &M : Exports)
648 const DebugCrossModuleExportsSubsectionRef &Exports) {
650 Result->Exports.assign(Exports.begin(), Exports.end());
831 DebugCrossModuleExportsSubsectionRef &Exports,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
TextStub.cpp 49 exports: # List of export sections
56 re-exports: [ ] # Optional: List of re-exports
81 exports: # List of export sections
90 re-exports: [ ] # Optional: List of re-exports
122 exports: # List of export sections
131 re-exports: [ ] # Optional: List of re-exports
172 exports: # List of export section
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionImport.cpp 336 // Only update stat and exports if we haven't already imported this
557 /// as well as the list of "exports", i.e. the list of symbols referenced from
763 auto &Exports = ExportLists[ModName];
764 unsigned NumGVS = numGlobalVarSummaries(Index, Exports);
765 LLVM_DEBUG(dbgs() << "* Module " << ModName << " exports "
766 << Exports.size() - NumGVS << " functions and " << NumGVS
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 346 std::vector<Export> Exports;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 313 void writeExportSection(ArrayRef<wasm::WasmExport> Exports);
913 void WasmObjectWriter::writeExportSection(ArrayRef<wasm::WasmExport> Exports) {
914 if (Exports.empty())
920 encodeULEB128(Exports.size(), W->OS);
921 for (const wasm::WasmExport &Export : Exports) {
1400 SmallVector<wasm::WasmExport, 4> Exports;
1550 Exports.push_back(Export);
1863 writeExportSection(Exports);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 3680 // If we aren't loading a module (which has its own exports), make
4088 SmallVector<Module *, 16> Exports;
4089 Mod->getExportedModules(Exports);
4091 I = Exports.begin(), E = Exports.end(); I != E; ++I) {
4365 // Resolve any unresolved module exports.
4388 Unresolved.Mod->Exports.push_back(
5684 // Once we've loaded the set of exports, there's no reason to keep
5685 // the parsed, unresolved exports around.

Completed in 34 milliseconds