Lines Matching refs:title
209 addTab(title, tabObj) { argument
216 aria-controls="${id}" aria-selected="false">${title}</a>
219 this.tabs.set(title, [tabObj, false]);
220 this.ul.find(`#${id}-tab`).on('shown.bs.tab', () => this.onTabActive(title));
224 setActiveAsync(title) { argument
225 let tabObj = this.findTab(title);
233 onTabActive(title) { argument
234 let array = this.tabs.get(title);
248 findTab(title) { argument
249 let array = this.tabs.get(title);
259 let title = gSampleInfo[i].eventName;
263 aria-controls="${subId}" aria-selected="${i == 0 ? "true" : "false"}">${title}</a>
476 let title = null;
488 title = 'Processes in event type ' + this.eventInfo.eventName;
495 title = 'Threads in process ' + getProcessName(this.processInfo.pid);
502 title = 'Libraries in thread ' + getThreadName(this.threadInfo.tid);
509 title = 'Functions in library ' + getLibName(this.libInfo.libId);
526 title: title, property
795 let title = `Process ${getProcessName(process.pid)} ` +
800 let flamegraph = new FlameGraphView(this.flamegraphDiv, title, totalCount,
864 let title = 'Function';
865 let tab = gTabs.findTab(title);
867 tab = gTabs.addTab(title, new FunctionTab());
869 gTabs.setActiveAsync(title)
1089 constructor(divContainer, title, totalCount, initNodes, reverseOrder) { argument
1094 this.title = title;
1134 this.div.append(`<p><b>${this.title}</b></p>`);
1253 let title = funcName + ' | ' + libName + ' (' + sumCount + ' events: ' +
1255 this.svgStr.push(`<g><title>${title}</title> <rect x="${x}%" y="${y}" ox="${x}"
1410 let title = g.find('title').text();
1411 let methodAndInfo = title.split(' | ');
1435 let title = this.getElementsByTagName('title')[0];
1437 if (title.textContent.indexOf(term) != -1) {