Home
last modified time | relevance | path

Searched refs:classWrapperSet (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/profilesaver/
Dprofile_dump_info.cpp170 infoIt->second.classWrapperSet.insert(otherProfileData.classWrapperSet.begin(), in MergeWith()
171 otherProfileData.classWrapperSet.end()); in MergeWith()
207 total += it.second.classWrapperSet.size(); in GetNumberOfResolvedClasses()
232 const PandaSet<ClassWrapper> &classes = infoIt->second.classWrapperSet; in ContainsClass()
256 data->classWrapperSet.insert(classToAdd); in AddClassWrapper()
269 data->classWrapperSet.insert(ClassWrapper(i)); in AddResolvedClasses()
319 K_CLASS_BYTES * fileData.classWrapperSet.size(); in Save()
324 ASSERT(fileData.classWrapperSet.size() <= std::numeric_limits<uint32_t>::max()); in Save()
328 AddUintToBuffer(&buffer, static_cast<uint32_t>(fileData.classWrapperSet.size())); in Save()
339 for (auto classIt : fileData.classWrapperSet) { in Save()
Dprofile_dump_info.h254 … PandaSet<ClassWrapper> classWrapperSet; // NOLINT(misc-non-private-member-variables-in-classes) member
259 classWrapperSet == other.classWrapperSet;
265 return methodWrapperSet.empty() && classWrapperSet.empty(); in empty()