This is a static copy of a profile report

Home

allchild (Calls: 92, Time: 0.118 s)
Generated 16-Jul-2020 17:08:33 using performance time.
function in file /Applications/MATLAB_R2020a.app/toolbox/matlab/uitools/allchild.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
close>safegetchildrensubfunction4
...rnatePrintPath>LocalFindContainerssubfunction24
printing/private/adjustbackgroundfunction40
getLegendableChildrenfunction8
uigettoolfunction16
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
40
ChildList = getchildren(Handle...
920.049 s41.1%
50
end 
920.023 s19.5%
37
c = onCleanup(@()set(rootobj,'...
920.014 s11.6%
35
set(rootobj,'ShowHiddenHandles...
920.011 s8.9%
34
Temp=get(rootobj,'ShowHiddenHa...
920.008 s6.4%
All other lines  0.015 s12.4%
Totals  0.118 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
allchild>getchildrensubfunction920.046 s39.3%
...set(rootobj,'ShowHiddenHandles',Temp)anonymous function920.013 s11.3%
uitools/private/allchildRootHelperfunction920.004 s3.2%
Self time (built-ins, overhead, etc.)  0.055 s46.2%
Totals  0.118 s100% 
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function50
Non-code lines (comments, blank lines)29
Code lines (lines that can run)21
Code lines that did run13
Code lines that did not run8
Coverage (did run/can run)61.90 %
Function listing
time 
Calls 
 line
   1 
function ChildList=allchild(HandleList)
   2 
%ALLCHILD Get all object children
   3 
%   ChildList=ALLCHILD(HandleList) returns the list of all children 
   4 
%   (including ones with hidden handles) for each handle.  If 
   5 
%   HandleList is a single element, the output is returned in a 
   6 
%   vector.  Otherwise, the output is a cell array.
   7 
%
   8 
%   Example:
   9 
%       h_gca = gca;
  10 
%       h_gca.Children
  11 
%           %or
  12 
%       allchild(gca)
  13 
%
  14 
%   See also GET, FINDALL.
  15 

  16 
%   Loren Dean
  17 
%   Copyright 1984-2015 The MathWorks, Inc.
  18 
%    
  19 

< 0.001 
     92 
  20
narginchk(1,1); 
  21 

  22 
% figure out which, if any, items in list don't refer to hg objects
  0.002 
     92 
  23
hgIdx = ishghandle(HandleList); % index of hghandles in list 
  0.002 
     92 
  24
nonHGHandleList = HandleList(~hgIdx);  
  25 

  26 
% if any of the items in the nonHGHandlList aren't handles, error out
  0.001 
     92 
  27
if ~isempty(nonHGHandleList) && ~all(ishandle(nonHGHandleList)) 
  28 
  error(message('MATLAB:allchild:InvalidHandles'))
< 0.001 
     92 
  29
end   
  30 

  31 
% establish the root object
  0.005 
     92 
  32
rootobj = allchildRootHelper(HandleList); 
  33 

  0.008 
     92 
  34
Temp=get(rootobj,'ShowHiddenHandles'); 
  0.011 
     92 
  35
set(rootobj,'ShowHiddenHandles','on'); 
  36 
% Create protected cleanup
  0.014 
     92 
  37
c = onCleanup(@()set(rootobj,'ShowHiddenHandles',Temp)); 
  38 

  0.003 
     92 
  39
if(isscalar(HandleList)) 
  0.049 
     92 
  40
    ChildList = getchildren(HandleList); 
  41 
else
  42 
    l = arrayfun(@getchildren,HandleList,'UniformOutput',false);
  43 
    if isempty(l)
  44 
        ChildList = []; % return [] if no objects found
  45 
    else
  46 
        ChildList = l(:);
  47 
    end
< 0.001 
     92 
  48
end 
  49 

  0.023 
     92 
  50
end  

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