Lines Matching refs:methodName
31 const std::string &methodName, AotMethodLogList *logList) in SetMethodLog() argument
35 enableMethodLog = logList->IncludesMethod(fileName, methodName); in SetMethodLog()
49 bool MethodLogList::IncludesMethod(const std::string &methodName) const in IncludesMethod()
51 bool empty = methodName.empty(); in IncludesMethod()
52 bool found = methods_.find(methodName) != std::string::npos; in IncludesMethod()
56 bool AotMethodLogList::IncludesMethod(const std::string &fileName, const std::string &methodName) c… in IncludesMethod()
62 auto it = find(methodVector.begin(), methodVector.end(), methodName); in IncludesMethod()
88 TimeScope::TimeScope(std::string name, std::string methodName, uint32_t methodOffset, CompilerLog* … in TimeScope() argument
89 …: ClockScope(), name_(std::move(name)), methodName_(std::move(methodName)), methodOffset_(methodOf… in TimeScope()
125 const std::string TimeScope::GetShortName(const std::string& methodName) in GetShortName() argument
128 if (methodName.find(KeyStr) != std::string::npos) { in GetShortName()
129 std::string::size_type index = methodName.find(KeyStr); in GetShortName()
130 std::string extracted = methodName.substr(0, index); in GetShortName()
133 return methodName; in GetShortName()