Lines Matching full:method
26 #include "runtime/include/method.h"
54 static PandaString GetFullName(const Method *method) in GetFullName() argument
56 return reinterpret_cast<const char *>(method->GetClassName().data) + PandaString(".") + in GetFullName()
57 reinterpret_cast<const char *>(method->GetName().data); in GetFullName()
77 for (const auto &method : klass->GetMethods()) { in AddClass() local
78 if (method.GetHotnessCounter() != 0) { in AddClass()
79 if (!hot_methods_.insert(&method).second) { in AddClass()
80 LOG(ERROR, DPROF) << "Method already exsists: " << GetFullName(&method); in AddClass()
89 for (const Method *method : hot_methods_) { in Dump() local
90 …auto ret = method_info_map.emplace(std::make_pair(GetFullName(method), method->GetHotnessCounter()… in Dump()
92 LOG(ERROR, DPROF) << "Method already exists: " << ret.first->first; in Dump()