Lines Matching refs:DM
204 dsymutil::DebugMap &DM) { in mapping() argument
205 io.mapRequired("triple", DM.BinaryTriple); in mapping()
206 io.mapOptional("binary-path", DM.BinaryPath); in mapping()
208 reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM.BinaryTriple; in mapping()
209 io.mapOptional("objects", DM.Objects); in mapping()
213 IO &io, std::unique_ptr<dsymutil::DebugMap> &DM) { in mapping() argument
214 if (!DM) in mapping()
215 DM.reset(new DebugMap()); in mapping()
216 io.mapRequired("triple", DM->BinaryTriple); in mapping()
217 io.mapOptional("binary-path", DM->BinaryPath); in mapping()
219 reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM->BinaryTriple; in mapping()
220 io.mapOptional("objects", DM->Objects); in mapping()