This is a static copy of a profile reportHome
allchild (1 call, 0.000 sec)
Generated 15-Mar-2007 12:02:04 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\matlab\uitools\allchild.m
[Copy to new window for comparing multiple runs]
Parents (calling functions)
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
24 | set(0,'ShowHiddenHandles',Temp... | 1 | 0 s | 0% |  |
23 | ChildList=get(HandleList,'Chil... | 1 | 0 s | 0% |  |
22 | set(0,'ShowHiddenHandles','on'... | 1 | 0 s | 0% |  |
21 | Temp=get(0,'ShowHiddenHandles'... | 1 | 0 s | 0% |  |
17 | if ~all(ishandle(HandleList)), | 1 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 0% | |
Children (called functions)
No childrenM-Lint results
Line number | Message |
1 | Extra semicolon is unnecessary. |
Coverage results
[ Show coverage for parent directory ]
Total lines in file | 24 |
Non-code lines (comments, blank lines) | 16 |
Code lines (lines that can run) | 8 |
Code lines that did run | 6 |
Code lines that did not run | 2 |
Coverage (did run/can run) | 75.00 % |
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 % For example, try get(gca,'children') and allchild(gca).
9 %
10 % See also GET, FINDALL.
11
12 % Loren Dean
13 % Copyright 1984-2002 The MathWorks, Inc.
14 % $Revision: 1.15 $ $Date: 2002/04/15 03:24:08 $
15
1 16 error(nargchk(1,1,nargin));
1 17 if ~all(ishandle(HandleList)),
18 error('Invalid handles passed to ALLCHILD.')
19 end
20
1 21 Temp=get(0,'ShowHiddenHandles');
1 22 set(0,'ShowHiddenHandles','on');
1 23 ChildList=get(HandleList,'Children');
1 24 set(0,'ShowHiddenHandles',Temp);