This is a static copy of a profile report

Home

scribe.legendinfo.schema (1 call, 0.000 sec)
Generated 05-Aug-2011 13:03:45 using cpu time.
function in file /usr/local/MATLAB/R2011a/toolbox/matlab/scribe/@scribe/@legendinfo/schema.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
scribe.legend.initfunction1
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
39
pl.AccessFlags.PublicSet = 'of...
10 s0%
38
pl.AccessFlags.PublicGet = 'of...
10 s0%
37
pl.AccessFlags.Serialize = 'of...
10 s0%
36
pl = schema.prop(h, 'PropertyL...
10 s0%
34
p.AccessFlags.Init = 'off';
10 s0%
All other lines  0 s0%
Totals  0 s0% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
[ Show coverage for parent directory ]
Total lines in function39
Non-code lines (comments, blank lines)39
Code lines (lines that can run)0
Code lines that did run27
Code lines that did not run0
Coverage (did run/can run)N/A
Function listing
   time   calls  line
1 function schema
2 %SCHEMA defines the scribe.LEGENDINFO schema
3 %
4
5 % Copyright 1984-2003 The MathWorks, Inc.
6 % $ $ $ $
7
1 8 pkg = findpackage('scribe');
1 9 h = schema.class(pkg, 'legendinfo');
10
11 % object associated with the legendinfo
1 12 p = schema.prop(h,'GObject','MATLAB array');
1 13 p.AccessFlags.Serialize = 'on';
1 14 p.AccessFlags.PublicGet = 'on';
1 15 p.AccessFlags.PublicSet = 'off';
1 16 p.AccessFlags.Init = 'off';
1 17 p.SetFunction = @localSetGObject;
18 % glyph size
1 19 p = schema.prop(h,'GlyphWidth','MATLAB array');
1 20 p.AccessFlags.Init = 'off';
1 21 p.AccessFlags.Serialize = 'on';
1 22 p.AccessFlags.PublicGet = 'on';
1 23 p.AccessFlags.PublicSet = 'on';
1 24 p = schema.prop(h,'GlyphHeight','MATLAB array');
1 25 p.AccessFlags.Init = 'off';
1 26 p.AccessFlags.Serialize = 'on';
1 27 p.AccessFlags.PublicGet = 'on';
1 28 p.AccessFlags.PublicSet = 'on';
29 % children (of type legendinfochild)
1 30 p = schema.prop(h,'GlyphChildren','handle vector');
1 31 p.AccessFlags.Serialize = 'on';
1 32 p.AccessFlags.PublicGet = 'on';
1 33 p.AccessFlags.PublicSet = 'on';
1 34 p.AccessFlags.Init = 'off';
35 % listeners
1 36 pl = schema.prop(h, 'PropertyListeners', 'handle vector');
1 37 pl.AccessFlags.Serialize = 'off';
1 38 pl.AccessFlags.PublicGet = 'off';
1 39 pl.AccessFlags.PublicSet = 'off';

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