Searched defs:ExportEntry (Results 1 - 4 of 4) sorted by last modified time

/external/llvm/include/llvm/Object/
H A DMachO.h52 /// ExportEntry encapsulates the current-state-of-the-walk used when doing a
55 /// for (const llvm::object::ExportEntry &AnExport : Obj->exports()) {
57 class ExportEntry { class in namespace:llvm::object
59 ExportEntry(ArrayRef<uint8_t> Trie);
68 bool operator==(const ExportEntry &) const;
101 typedef content_iterator<ExportEntry> export_iterator;
/external/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h81 struct ExportEntry { struct in namespace:llvm::MachOYAML
82 ExportEntry() function in struct:llvm::MachOYAML::ExportEntry
92 std::vector<MachOYAML::ExportEntry> Children;
100 MachOYAML::ExportEntry ExportTrie;
142 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::ExportEntry)
187 template <> struct MappingTraits<MachOYAML::ExportEntry> {
188 static void mapping(IO &IO, MachOYAML::ExportEntry &ExportEntry);
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp1336 ExportEntry::ExportEntry(ArrayRef<uint8_t> T) function in class:ExportEntry
1339 void ExportEntry::moveToFirst() {
1344 void ExportEntry::moveToEnd() {
1349 bool ExportEntry::operator==(const ExportEntry &Other) const {
1367 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr) {
1378 StringRef ExportEntry::name() const {
1382 uint64_t ExportEntry::flags() const {
1386 uint64_t ExportEntry
[all...]
/external/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp162 void MappingTraits<MachOYAML::ExportEntry>::mapping( argument
163 IO &IO, MachOYAML::ExportEntry &ExportEntry) {
164 IO.mapRequired("TerminalSize", ExportEntry.TerminalSize);
165 IO.mapOptional("NodeOffset", ExportEntry.NodeOffset);
166 IO.mapOptional("Name", ExportEntry.Name);
167 IO.mapOptional("Flags", ExportEntry.Flags);
168 IO.mapOptional("Address", ExportEntry.Address);
169 IO.mapOptional("Other", ExportEntry.Other);
170 IO.mapOptional("ImportName", ExportEntry
[all...]

Completed in 160 milliseconds