This is a static copy of a profile report

Home

Function details for allchildThis is a static copy of a profile report

Home

allchild (Calls: 2, Time: 0.005 s)
Generated 27-Jul-2019 21:16:52 using performance time.
function in file C:\Program Files\MATLAB\R2019a\toolbox\matlab\uitools\allchild.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
close>safegetchildrensubfunction2
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
37
c = onCleanup(@()set(rootobj,'...
20.001 s25.7%
50
end 
20.001 s23.3%
40
ChildList = getchildren(Handle...
20.001 s13.2%
32
rootobj = allchildRootHelper(H...
20.001 s12.5%
35
set(rootobj,'ShowHiddenHandles...
20.000 s5.2%
All other lines  0.001 s20.1%
Totals  0.005 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
onCleanup>onCleanup.deleteclass method20.001 s16.5%
onCleanup>onCleanup.onCleanupclass method20.001 s11.6%
allchild>getchildrensubfunction20.000 s9.4%
uitools\private\allchildRootHelperfunction20.000 s6.6%
Self time (built-ins, overhead, etc.)  0.003 s55.9%
Totals  0.005 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 run12
Code lines that did not run9
Coverage (did run/can run)57.14 %
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 
      2 
  20
narginchk(1,1); 
  21 

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

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

  31 
% establish the root object
< 0.001 
      2 
  32
rootobj = allchildRootHelper(HandleList); 
  33 

< 0.001 
      2 
  34
Temp=get(rootobj,'ShowHiddenHandles'); 
< 0.001 
      2 
  35
set(rootobj,'ShowHiddenHandles','on'); 
  36 
% Create protected cleanup
  0.001 
      2 
  37
c = onCleanup(@()set(rootobj,'ShowHiddenHandles',Temp)); 
  38 

< 0.001 
      2 
  39
if(isscalar(HandleList)) 
< 0.001 
      2 
  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 
      2 
  48
end 
  49 

  0.001 
      2 
  50
end  

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