Lines Matching defs:IndicesMap
2237 std::map<uint64_t, std::string> IndicesMap;
2252 IndicesMap[VTableIndex] = MethodName + " [complete]";
2253 IndicesMap[VTableIndex + 1] = MethodName + " [deleting]";
2256 IndicesMap[MethodVTableIndices[MD]] = MethodName;
2261 if (!IndicesMap.empty()) {
2264 Out << "' (" << IndicesMap.size() << " entries).\n";
2266 for (const auto &I : IndicesMap) {
3748 std::map<MethodVFTableLocation, std::string> IndicesMap;
3759 IndicesMap[I.second] = MethodName + " [scalar deleting]";
3761 IndicesMap[I.second] = MethodName;
3769 if (!IndicesMap.empty()) {
3773 Out << "' (" << IndicesMap.size()
3774 << (IndicesMap.size() == 1 ? " entry" : " entries") << ").\n";
3778 for (const auto &I : IndicesMap) {