Home
last modified time | relevance | path

Searched refs:methodName (Results 1 – 5 of 5) sorted by relevance

/system/extras/simpleperf/scripts/inferno/
Dscript.js65 let methodName = title.textContent.split(' | ')[0];
68 for (numCharacters = methodName.length; numCharacters > 4; numCharacters--) {
76 if (numCharacters == methodName.length) {
77 text.textContent = methodName;
81 text.textContent = methodName.substring(0, numCharacters-2) + '..';
256 let methodName = method_and_info[0];
273 barTextElement.textContent = methodName;
/system/tools/hidl/lint/lints/
DmethodVersions.cpp110 std::string methodName = getSanitizedMethodName(*method); in methodVersions() local
120 methodName; in methodVersions()
126 << "Could not find method " << methodName in methodVersions()
/system/tools/hidl/
DType.cpp440 const std::string &methodName, in emitDumpWithMethod() argument
444 << methodName in emitDumpWithMethod()
DType.h348 const std::string &methodName,
/system/extras/simpleperf/scripts/
Dreport_html.js1310 let methodName = g.find('title').text().split(' | ')[0];
1312 for (numCharacters = methodName.length; numCharacters > 4; numCharacters--) {
1317 if (numCharacters == methodName.length) {
1318 text.text(methodName);
1320 text.text(methodName.substring(0, numCharacters - 2) + '..');