This is a static copy of a profile reportHome
graphics\private\clo>find_kids (1 call, 0.000 sec)
Generated 15-Mar-2007 12:02:07 using real time.
M-subfunction in file C:\Program Files\MATLAB71\toolbox\matlab\graphics\private\clo.m
[Copy to new window for comparing multiple runs]
Parents (calling functions)
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
87 | hsave_out = []; | 1 | 0.000 s | 100.0% |  |
88 | for kid=hsave(:)' | 1 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 100% | |
Children (called functions)
No childrenM-Lint results
Line number | Message |
91 | Use && instead of & as the AND operator in (scalar) conditional statements. |
Coverage results
[ Show coverage for parent directory ]
Total lines in file | 17 |
Non-code lines (comments, blank lines) | 5 |
Code lines (lines that can run) | 12 |
Code lines that did run | 2 |
Code lines that did not run | 10 |
Coverage (did run/can run) | 16.67 % |
Function listing
time calls line
83 function hsave_out = find_kids(obj, hsave)
84 %
85 %
86 %
< 0.01 1 87 hsave_out = [];
1 88 for kid=hsave(:)'
89 while ~isempty(kid)
90 parent = get(kid,'parent');
91 if ~isempty(parent) & parent == obj
92 hsave_out(end + 1) = kid;
93 break;
94 else
95 kid = parent;
96 end
97 end
98 end
99