Lines Matching defs:methodName
91 std::string_view methodName = ParseFunctionNameView(jsPandaFile, methodId).first;
92 return std::string(methodName);
103 auto [methodName, isASCII] = GetMethodNameView(jsPandaFile, methodId);
104 if (LIKELY(methodName[0] != '#')) {
105 return {methodName, isASCII};
108 size_t index = methodName.find_last_of('#');
109 methodName = methodName.substr(index + 1); // #...#functionName
110 if (index = methodName.find_last_of('^'); index != std::string::npos) {
111 methodName = methodName.substr(0, index); // #...#functionName^1
113 return {methodName, isASCII};
123 CString methodName(GetMethodName(jsPandaFile, methodId));
124 if (LIKELY(methodName[0] != '#')) {
125 return methodName;
128 size_t index = methodName.find_last_of('#');
129 methodName = methodName.substr(index + 1); // #...#functionName
130 if (methodName.find('^') != std::string::npos) {
131 index = methodName.find_last_of('^');
132 methodName = methodName.substr(0, index); // #...#functionName^1
134 return methodName;