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

Method DumpEntryProperties

Source/cmFileAPICache.cxx:81–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81Json::Value Cache::DumpEntryProperties(std::string const& name)
82{
83 Json::Value properties = Json::arrayValue;
84 std::vector<std::string> props =
85 this->State->GetCacheEntryPropertyList(name);
86 std::sort(props.begin(), props.end());
87 for (std::string const& prop : props) {
88 properties.append(this->DumpEntryProperty(name, prop));
89 }
90 return properties;
91}
92
93Json::Value Cache::DumpEntryProperty(std::string const& name,
94 std::string const& prop)

Callers 1

DumpEntryMethod · 0.95

Calls 5

DumpEntryPropertyMethod · 0.95
appendMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected