Home | History | Annotate | Download | only in Writer

Lines Matching defs:MDs

733     } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
747 Record.append(MDS->begin(), MDS->end());
811 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
816 MDs.clear();
817 I->getAllMetadataOtherThanDebugLoc(MDs);
820 if (MDs.empty()) continue;
824 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
825 Record.push_back(MDs[i].first);
826 Record.push_back(VE.getValueID(MDs[i].second));