Searched refs:NListEntry (Results 1 – 3 of 3) sorted by relevance
83 struct NListEntry { struct122 std::vector<NListEntry> NameList;166 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::NListEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR()226 template <> struct MappingTraits<MachOYAML::NListEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR()227 static void mapping(IO &IO, MachOYAML::NListEntry &NListEntry); in LLVM_YAML_IS_SEQUENCE_VECTOR()
194 void MappingTraits<MachOYAML::NListEntry>::mapping( in mapping()195 IO &IO, MachOYAML::NListEntry &NListEntry) { in mapping() argument196 IO.mapRequired("n_strx", NListEntry.n_strx); in mapping()197 IO.mapRequired("n_type", NListEntry.n_type); in mapping()198 IO.mapRequired("n_sect", NListEntry.n_sect); in mapping()199 IO.mapRequired("n_desc", NListEntry.n_desc); in mapping()200 IO.mapRequired("n_value", NListEntry.n_value); in mapping()
429 void writeNListEntry(MachOYAML::NListEntry &NLE, raw_ostream &OS, in writeNListEntry()