Lines Matching defs:key
153 llvm::StringRef key = progress_data.title;
154 bool new_entry = !m_entries.contains(key);
182 llvm::StringRef key = progress_data.title;
184 auto it = m_entries.find(key);
194 // Copy the key to a std::string so we can pass it by value to the lambda.
197 std::string key_str = std::string(key);
221 void ProgressManager::Expire(llvm::StringRef key) {
225 if (!m_entries.contains(key))
230 if (m_entries[key].refcount != 0)
234 ReportProgress(m_entries[key].data, EventType::End);
235 m_entries.erase(key);