Searched refs:NListEntry (Results 1 – 4 of 4) sorted by relevance
60 struct NListEntry { struct101 std::vector<NListEntry> NameList;143 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::NListEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR()195 template <> struct MappingTraits<MachOYAML::NListEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR()196 static void mapping(IO &IO, MachOYAML::NListEntry &NListEntry); in LLVM_YAML_IS_SEQUENCE_VECTOR()
174 void MappingTraits<MachOYAML::NListEntry>::mapping( in mapping()175 IO &IO, MachOYAML::NListEntry &NListEntry) { in mapping() argument176 IO.mapRequired("n_strx", NListEntry.n_strx); in mapping()177 IO.mapRequired("n_type", NListEntry.n_type); in mapping()178 IO.mapRequired("n_sect", NListEntry.n_sect); in mapping()179 IO.mapRequired("n_desc", NListEntry.n_desc); in mapping()180 IO.mapRequired("n_value", NListEntry.n_value); in mapping()
430 MachOYAML::NListEntry constructNameList(const nlist_t &nlist) { in constructNameList()431 MachOYAML::NListEntry NL; in constructNameList()444 MachOYAML::NListEntry NLE = in dumpSymbols()
325 void writeNListEntry(MachOYAML::NListEntry &NLE, raw_ostream &OS) { in writeNListEntry()