• 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;
483 return [name, eventCount, getHtml('pre', {text: name}) + property
484 getHtml('b', {text: `${sampleWeight} (${percent})`})]; property
607 divContainer.find(`#${id}`).text(options.get(this.curOption));
936 this.div.append(getHtml('b', {text: 'SourceCode:'}) + '<br/>'); property
943 this.div.append(getHtml('b', {text: 'Disassembly:'}) + '<br/>'); property
966 rows.push(['Function', getHtml('pre', {text: funcName})]); property
1045 divContainer.find(`#${id}`).text(options.get(this.curOption));
1304 let text = g.find('text');
1307 text.text('');
1310 let methodName = g.find('title').text().split(' | ')[0];
1318 text.text(methodName);
1320 text.text(methodName.substring(0, numCharacters - 2) + '..');
1372 let text = g.find('text');
1380 text.css('display', 'none');
1383 text.css('display', 'block');
1389 text.attr('x', nx);
1390 text.attr('y', ny + 12);
1410 let title = g.find('title').text();
1412 thisObj.svg.find(`#info_text_${thisObj.id}`).text(methodAndInfo[0]);
1422 thisObj.svg.find(`#percent_text_${thisObj.id}`).text(percentage);
1563 let code = getHtml('pre', {text: sourceFile.code[lineNumber]}); property
1586 this.div.append(getHtml('pre', {text: sourceFile.path})); property
1663 let code = getHtml('pre', {text: line.code}); property
1696 let recordData = $('#record_data').text();
1726 function updateProgress(text, progress) { argument
1727 return () => gProgressBar.updateAsync(text, progress);