reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1179 bool empty() const { return Attachments.empty(); } 1180 size_t size() const { return Attachments.size(); } 1206 Attachments.erase(llvm::remove_if(Attachments, shouldRemove), 1206 Attachments.erase(llvm::remove_if(Attachments, shouldRemove), 1207 Attachments.end());lib/IR/Metadata.cpp
1103 for (auto &I : Attachments) 1108 Attachments.emplace_back(std::piecewise_construct, std::make_tuple(ID), 1117 if (Attachments.back().first == ID) { 1118 Attachments.pop_back(); 1122 for (auto I = Attachments.begin(), E = std::prev(Attachments.end()); I != E; 1122 for (auto I = Attachments.begin(), E = std::prev(Attachments.end()); I != E; 1125 *I = std::move(Attachments.back()); 1126 Attachments.pop_back(); 1134 for (const auto &I : Attachments) 1142 Result.append(Attachments.begin(), Attachments.end()); 1142 Result.append(Attachments.begin(), Attachments.end());