This is a static copy of a profile report

Home

tabular.disp>boldifyLabels (Calls: 16, Time: 0.008 s)
Generated 16-Jul-2020 17:09:34 using performance time.
subfunction in file /Applications/MATLAB_R2020a.app/toolbox/matlab/datatypes/tabular/@tabular/disp.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
tabular.dispfunction16
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
527
hasLinks = containsRegexp(name...
160.004 s46.7%
532
names(~hasLinks) = strongBegin...
160.002 s25.4%
528
if bold && strlength(s...
160.002 s22.1%
534
end
160.000 s0.2%
529
if any(hasLinks)
160.000 s0.1%
All other lines  0.000 s5.5%
Totals  0.008 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
tabular.disp>containsRegexpsubfunction160.003 s35.8%
strlengthfunction160.000 s1.2%
Self time (built-ins, overhead, etc.)  0.005 s63.1%
Totals  0.008 s100% 
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function12
Non-code lines (comments, blank lines)4
Code lines (lines that can run)8
Code lines that did run7
Code lines that did not run1
Coverage (did run/can run)87.50 %
Function listing
time 
Calls 
 line
 523 
function [names, hasLinks] = boldifyLabels(names,bold,strongBegin,strongEnd)
 524 
% Make varnames/rownames bold. If the name contains a hyperlink, they need
 525 
% to be handled differently because the Command Window will end up
 526 
% displaying the literal <strong> tags.
  0.004 
     16 
 527
    hasLinks = containsRegexp(names,'a\s+href\s*='); 
  0.002 
     16 
 528
    if bold && strlength(strongBegin) > 0 
< 0.001 
     16 
 529
        if any(hasLinks) 
 530 
            names(hasLinks) = boldifyLinks(names(hasLinks),strongBegin,strongEnd);
< 0.001 
     16 
 531
        end 
  0.002 
     16 
 532
        names(~hasLinks) = strongBegin + names(~hasLinks) + strongEnd; 
< 0.001 
     16 
 533
    end 
< 0.001 
     16 
 534
end 

Other subfunctions in this file are not included in this listing.