MCPcopy Create free account
hub / github.com/Kitware/CMake / LookForCacheEntry

Method LookForCacheEntry

Source/CursesDialog/cmCursesMainForm.cxx:63–69  ·  view source on GitHub ↗

See if a cache entry is in the list of entries in the ui.

Source from the content-addressed store, hash-verified

61
62// See if a cache entry is in the list of entries in the ui.
63bool cmCursesMainForm::LookForCacheEntry(std::string const& key)
64{
65 return std::any_of(this->Entries.begin(), this->Entries.end(),
66 [&key](cmCursesCacheEntryComposite const& entry) {
67 return key == entry.Key;
68 });
69}
70
71// Create new cmCursesCacheEntryComposite entries from the cache
72void cmCursesMainForm::InitializeUI()

Callers 1

InitializeUIMethod · 0.95

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected