• Home
  • Raw
  • Download

Lines Matching refs:text

65     updateAsync(text, progress) {  argument
68 if (text) {
69 this.modal.find('.modal-title').text(text);
73 .attr('aria-valuenow', progress).text(progress + '%');
122 let text;
124 text = attrs.text;
125 delete attrs.text;
128 if (text) {
129 s += text;
489 return [name, eventCount, getHtml('pre', {text: name}) + property
490 getHtml('b', {text: `${sampleWeight} (${percent})`})]; property
613 divContainer.find(`#${id}`).text(options.get(this.curOption));
942 this.div.append(getHtml('b', {text: 'SourceCode:'}) + '<br/>'); property
949 this.div.append(getHtml('b', {text: 'Disassembly:'}) + '<br/>'); property
972 rows.push(['Function', getHtml('pre', {text: funcName})]); property
1051 divContainer.find(`#${id}`).text(options.get(this.curOption));
1310 let text = g.find('text');
1313 text.text('');
1316 let methodName = g.find('title').text().split(' | ')[0];
1324 text.text(methodName);
1326 text.text(methodName.substring(0, numCharacters - 2) + '..');
1378 let text = g.find('text');
1386 text.css('display', 'none');
1389 text.css('display', 'block');
1395 text.attr('x', nx);
1396 text.attr('y', ny + 12);
1416 let title = g.find('title').text();
1418 thisObj.svg.find(`#info_text_${thisObj.id}`).text(methodAndInfo[0]);
1428 thisObj.svg.find(`#percent_text_${thisObj.id}`).text(percentage);
1569 let code = getHtml('pre', {text: sourceFile.code[lineNumber]}); property
1592 this.div.append(getHtml('pre', {text: sourceFile.path})); property
1669 let code = getHtml('pre', {text: line.code}); property
1702 let recordData = $('#record_data').text();
1732 function updateProgress(text, progress) { argument
1733 return () => gProgressBar.updateAsync(text, progress);