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: 1, Time: 0.004 s)
Generated 13-Jul-2019 20:42:29 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>safegetchildrensubfunction1
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
37
c = onCleanup(@()set(rootobj,'...
10.001 s27.0%
50
end 
10.001 s22.1%
40
ChildList = getchildren(Handle...
10.001 s12.8%
32
rootobj = allchildRootHelper(H...
10.001 s12.7%
35
set(rootobj,'ShowHiddenHandles...
10.000 s4.6%
All other lines  0.001 s20.8%
Totals  0.004 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
onCleanup>onCleanup.deleteclass method10.001 s17.5%
onCleanup>onCleanup.onCleanupclass method10.001 s13.3%
allchild>getchildrensubfunction10.000 s9.3%
uitools\private\allchildRootHelperfunction10.000 s7.4%
Self time (built-ins, overhead, etc.)  0.002 s52.4%
Totals  0.004 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 

      1 
  20
narginchk(1,1); 
  21 

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

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

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

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

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

< 0.001 
      1 
  50
end  

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