ruby-prof 0.13.1 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +14 -0
  3. data/README.rdoc +1 -1
  4. data/Rakefile +2 -3
  5. data/bin/ruby-prof +4 -4
  6. data/bin/ruby-prof-check-trace +45 -0
  7. data/doc/LICENSE.html +49 -88
  8. data/doc/README_rdoc.html +92 -106
  9. data/doc/Rack.html +47 -116
  10. data/doc/Rack/RubyProf.html +119 -174
  11. data/doc/RubyProf.html +184 -216
  12. data/doc/RubyProf/AbstractPrinter.html +131 -162
  13. data/doc/RubyProf/AggregateCallInfo.html +136 -166
  14. data/doc/RubyProf/CallInfo.html +113 -154
  15. data/doc/RubyProf/CallInfoPrinter.html +56 -123
  16. data/doc/RubyProf/CallInfoVisitor.html +87 -216
  17. data/doc/RubyProf/CallStackPrinter.html +222 -215
  18. data/doc/RubyProf/CallTreePrinter.html +91 -142
  19. data/doc/RubyProf/Cmd.html +115 -157
  20. data/doc/RubyProf/DotPrinter.html +88 -140
  21. data/doc/RubyProf/FlatPrinter.html +66 -129
  22. data/doc/RubyProf/FlatPrinterWithLineNumbers.html +69 -132
  23. data/doc/RubyProf/GraphHtmlPrinter.html +115 -166
  24. data/doc/RubyProf/GraphPrinter.html +58 -125
  25. data/doc/RubyProf/MethodInfo.html +147 -172
  26. data/doc/RubyProf/MultiPrinter.html +104 -150
  27. data/doc/RubyProf/Profile.html +125 -179
  28. data/doc/RubyProf/ProfileTask.html +117 -157
  29. data/doc/RubyProf/Test.html +115 -154
  30. data/doc/RubyProf/Thread.html +87 -147
  31. data/doc/created.rid +13 -14
  32. data/doc/examples/flat_txt.html +51 -90
  33. data/doc/examples/graph_html.html +852 -0
  34. data/doc/examples/graph_txt.html +64 -92
  35. data/doc/fonts.css +167 -0
  36. data/doc/fonts/Lato-Light.ttf +0 -0
  37. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  38. data/doc/fonts/Lato-Regular.ttf +0 -0
  39. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  40. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  41. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  42. data/doc/images/add.png +0 -0
  43. data/doc/images/arrow_up.png +0 -0
  44. data/doc/images/delete.png +0 -0
  45. data/doc/images/tag_blue.png +0 -0
  46. data/doc/index.html +75 -65
  47. data/doc/js/darkfish.js +0 -15
  48. data/doc/js/search.js +20 -5
  49. data/doc/js/search_index.js +1 -1
  50. data/doc/rdoc.css +255 -218
  51. data/doc/table_of_contents.html +751 -353
  52. data/ext/ruby_prof/extconf.rb +20 -22
  53. data/ext/ruby_prof/rp_measure_allocations.c +9 -5
  54. data/ext/ruby_prof/rp_measure_gc_runs.c +8 -0
  55. data/ext/ruby_prof/rp_measure_gc_time.c +5 -2
  56. data/ext/ruby_prof/rp_measure_wall_time.c +1 -0
  57. data/ext/ruby_prof/rp_method.c +0 -9
  58. data/ext/ruby_prof/rp_method.h +1 -6
  59. data/ext/ruby_prof/ruby_prof.c +32 -112
  60. data/ext/ruby_prof/ruby_prof.h +9 -10
  61. data/lib/ruby-prof.rb +2 -1
  62. data/lib/ruby-prof/aggregate_call_info.rb +4 -6
  63. data/lib/ruby-prof/call_info_visitor.rb +42 -44
  64. data/lib/ruby-prof/printers/graph_html_printer.rb +0 -8
  65. data/lib/ruby-prof/profile.rb +4 -4
  66. data/lib/ruby-prof/rack.rb +47 -47
  67. data/lib/ruby-prof/task.rb +0 -0
  68. data/lib/ruby-prof/thread.rb +22 -22
  69. data/lib/ruby-prof/version.rb +3 -0
  70. data/ruby-prof.gemspec +7 -11
  71. data/test/call_info_test.rb +78 -78
  72. data/test/call_info_visitor_test.rb +31 -31
  73. data/test/fiber_test.rb +2 -2
  74. data/test/measure_gc_runs_test.rb +1 -1
  75. data/test/measure_process_time_test.rb +7 -6
  76. data/test/printers_test.rb +4 -8
  77. data/test/recursive_test.rb +5 -9
  78. data/test/test_helper.rb +1 -1
  79. data/test/unique_call_path_test.rb +7 -29
  80. data/test/yarv_test.rb +55 -0
  81. metadata +63 -55
  82. data/ext/ruby_prof/version.h +0 -7
  83. data/lib/ruby-prof/test.rb +0 -150
  84. data/test/exec_test.rb +0 -14
  85. data/test/test_suite.rb +0 -37
@@ -2,28 +2,30 @@
2
2
 
3
3
  <html>
4
4
  <head>
5
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
5
+ <meta charset="UTF-8">
6
6
 
7
7
  <title>Table of Contents - ruby-prof</title>
8
8
 
9
- <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
9
+ <link href="./fonts.css" rel="stylesheet">
10
+ <link href="./rdoc.css" rel="stylesheet">
10
11
 
11
12
  <script type="text/javascript">
12
13
  var rdoc_rel_prefix = "./";
13
14
  </script>
14
15
 
15
- <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
- <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
- <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
- <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
- <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
- <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
16
+ <script src="./js/jquery.js"></script>
17
+ <script src="./js/navigation.js"></script>
18
+ <script src="./js/search_index.js"></script>
19
+ <script src="./js/search.js"></script>
20
+ <script src="./js/searcher.js"></script>
21
+ <script src="./js/darkfish.js"></script>
21
22
 
22
23
 
23
- <body class="indexpage">
24
- <h1>Table of Contents - ruby-prof</h1>
24
+ <body id="top" class="table-of-contents">
25
+ <main role="main">
26
+ <h1 class="class">Table of Contents - ruby-prof</h1>
25
27
 
26
- <h2>Pages</h2>
28
+ <h2 id="pages">Pages</h2>
27
29
  <ul>
28
30
  <li class="file">
29
31
  <a href="LICENSE.html">LICENSE</a>
@@ -31,8 +33,7 @@
31
33
  <li class="file">
32
34
  <a href="README_rdoc.html">README</a>
33
35
 
34
- <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
35
- <ul class="initially-hidden">
36
+ <ul>
36
37
  <li><a href="README_rdoc.html#label-ruby-prof">ruby-prof</a>
37
38
  <li><a href="README_rdoc.html#label-Overview">Overview</a>
38
39
  <li><a href="README_rdoc.html#label-Requirements">Requirements</a>
@@ -56,16 +57,17 @@
56
57
  <li class="file">
57
58
  <a href="examples/flat_txt.html">flat</a>
58
59
 
59
- <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
60
- <ul class="initially-hidden">
60
+ <ul>
61
61
  <li><a href="examples/flat_txt.html#label-Flat+Profiles">Flat Profiles</a>
62
62
  </ul>
63
+ </li>
64
+ <li class="file">
65
+ <a href="examples/graph_html.html">graph.html</a>
63
66
  </li>
64
67
  <li class="file">
65
68
  <a href="examples/graph_txt.html">graph</a>
66
69
 
67
- <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
68
- <ul class="initially-hidden">
70
+ <ul>
69
71
  <li><a href="examples/graph_txt.html#label-Graph+Profiles">Graph Profiles</a>
70
72
  <li><a href="examples/graph_txt.html#label-Overview">Overview</a>
71
73
  <li><a href="examples/graph_txt.html#label-Parents">Parents</a>
@@ -75,388 +77,784 @@
75
77
 
76
78
  </ul>
77
79
 
78
- <h2 id="classes">Classes/Modules</h2>
80
+ <h2 id="classes">Classes and Modules</h2>
79
81
  <ul>
82
+ <li class="class">
83
+ <a href="Rack/RubyProf.html">Rack::RubyProf</a>
84
+ </li>
80
85
  <li class="module">
81
86
  <a href="RubyProf.html">RubyProf</a>
82
87
  </li>
83
- <li class="class">
88
+ <li class="class">
84
89
  <a href="RubyProf/AbstractPrinter.html">RubyProf::AbstractPrinter</a>
85
90
  </li>
86
- <li class="class">
91
+ <li class="class">
87
92
  <a href="RubyProf/AggregateCallInfo.html">RubyProf::AggregateCallInfo</a>
88
93
  </li>
89
- <li class="class">
94
+ <li class="class">
90
95
  <a href="RubyProf/CallInfo.html">RubyProf::CallInfo</a>
91
96
  </li>
92
- <li class="class">
97
+ <li class="class">
93
98
  <a href="RubyProf/CallInfoPrinter.html">RubyProf::CallInfoPrinter</a>
94
99
  </li>
95
- <li class="class">
100
+ <li class="class">
96
101
  <a href="RubyProf/CallInfoVisitor.html">RubyProf::CallInfoVisitor</a>
97
102
  </li>
98
- <li class="class">
103
+ <li class="class">
99
104
  <a href="RubyProf/CallStackPrinter.html">RubyProf::CallStackPrinter</a>
100
105
  </li>
101
- <li class="class">
106
+ <li class="class">
102
107
  <a href="RubyProf/CallTreePrinter.html">RubyProf::CallTreePrinter</a>
103
108
  </li>
104
- <li class="class">
109
+ <li class="class">
105
110
  <a href="RubyProf/Cmd.html">RubyProf::Cmd</a>
106
111
  </li>
107
- <li class="class">
112
+ <li class="class">
108
113
  <a href="RubyProf/DotPrinter.html">RubyProf::DotPrinter</a>
109
114
  </li>
110
- <li class="class">
115
+ <li class="class">
111
116
  <a href="RubyProf/FlatPrinter.html">RubyProf::FlatPrinter</a>
112
117
  </li>
113
- <li class="class">
118
+ <li class="class">
114
119
  <a href="RubyProf/FlatPrinterWithLineNumbers.html">RubyProf::FlatPrinterWithLineNumbers</a>
115
120
  </li>
116
- <li class="class">
121
+ <li class="class">
117
122
  <a href="RubyProf/GraphHtmlPrinter.html">RubyProf::GraphHtmlPrinter</a>
118
123
  </li>
119
- <li class="class">
124
+ <li class="class">
120
125
  <a href="RubyProf/GraphPrinter.html">RubyProf::GraphPrinter</a>
121
126
  </li>
122
- <li class="class">
127
+ <li class="class">
123
128
  <a href="RubyProf/MethodInfo.html">RubyProf::MethodInfo</a>
124
129
  </li>
125
- <li class="class">
130
+ <li class="class">
126
131
  <a href="RubyProf/MultiPrinter.html">RubyProf::MultiPrinter</a>
127
132
  </li>
128
- <li class="class">
133
+ <li class="class">
129
134
  <a href="RubyProf/Profile.html">RubyProf::Profile</a>
130
135
  </li>
131
- <li class="class">
136
+ <li class="class">
132
137
  <a href="RubyProf/ProfileTask.html">RubyProf::ProfileTask</a>
133
138
  </li>
134
- <li class="module">
135
- <a href="RubyProf/Test.html">RubyProf::Test</a>
136
- </li>
137
- <li class="class">
139
+ <li class="class">
138
140
  <a href="RubyProf/Thread.html">RubyProf::Thread</a>
139
141
  </li>
140
- <li class="module">
141
- <a href="Rack.html">Rack</a>
142
- </li>
143
- <li class="class">
144
- <a href="Rack/RubyProf.html">Rack::RubyProf</a>
145
- </li>
146
-
147
142
  </ul>
148
143
 
149
144
  <h2 id="methods">Methods</h2>
150
145
  <ul>
151
-
152
- <li class="method"><a href="RubyProf.html#method-c-cpu_frequency">::cpu_frequency &mdash; RubyProf</a>
153
-
154
- <li class="method"><a href="RubyProf.html#method-c-cpu_frequency-3D">::cpu_frequency= &mdash; RubyProf</a>
155
-
156
- <li class="method"><a href="RubyProf.html#method-c-exclude_threads">::exclude_threads &mdash; RubyProf</a>
157
-
158
- <li class="method"><a href="RubyProf.html#method-c-exclude_threads-3D">::exclude_threads= &mdash; RubyProf</a>
159
-
160
- <li class="method"><a href="RubyProf.html#method-c-figure_measure_mode">::figure_measure_mode &mdash; RubyProf</a>
161
-
162
- <li class="method"><a href="RubyProf.html#method-c-measure_allocations">::measure_allocations &mdash; RubyProf</a>
163
-
164
- <li class="method"><a href="RubyProf.html#method-c-measure_cpu_time">::measure_cpu_time &mdash; RubyProf</a>
165
-
166
- <li class="method"><a href="RubyProf.html#method-c-measure_gc_runs">::measure_gc_runs &mdash; RubyProf</a>
167
-
168
- <li class="method"><a href="RubyProf.html#method-c-measure_gc_time">::measure_gc_time &mdash; RubyProf</a>
169
-
170
- <li class="method"><a href="RubyProf.html#method-c-measure_memory">::measure_memory &mdash; RubyProf</a>
171
-
172
- <li class="method"><a href="RubyProf.html#method-c-measure_mode">::measure_mode &mdash; RubyProf</a>
173
-
174
- <li class="method"><a href="RubyProf.html#method-c-measure_mode-3D">::measure_mode= &mdash; RubyProf</a>
175
-
176
- <li class="method"><a href="RubyProf.html#method-c-measure_process_time">::measure_process_time &mdash; RubyProf</a>
177
-
178
- <li class="method"><a href="RubyProf.html#method-c-measure_wall_time">::measure_wall_time &mdash; RubyProf</a>
179
-
180
- <li class="method"><a href="RubyProf/Cmd.html#method-c-new">::new &mdash; RubyProf::Cmd</a>
181
-
182
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-c-new">::new &mdash; RubyProf::AbstractPrinter</a>
183
-
184
- <li class="method"><a href="Rack/RubyProf.html#method-c-new">::new &mdash; Rack::RubyProf</a>
185
-
186
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-c-new">::new &mdash; RubyProf::AggregateCallInfo</a>
187
-
188
- <li class="method"><a href="RubyProf/CallInfoVisitor.html#method-c-new">::new &mdash; RubyProf::CallInfoVisitor</a>
189
-
190
- <li class="method"><a href="RubyProf/Profile.html#method-c-new">::new &mdash; RubyProf::Profile</a>
191
-
192
- <li class="method"><a href="RubyProf/ProfileTask.html#method-c-new">::new &mdash; RubyProf::ProfileTask</a>
193
-
194
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-c-new">::new &mdash; RubyProf::MultiPrinter</a>
195
-
196
- <li class="method"><a href="RubyProf/DotPrinter.html#method-c-new">::new &mdash; RubyProf::DotPrinter</a>
197
-
198
- <li class="method"><a href="RubyProf.html#method-c-pause">::pause &mdash; RubyProf</a>
199
-
200
- <li class="method"><a href="RubyProf/Profile.html#method-c-profile">::profile &mdash; RubyProf::Profile</a>
201
-
202
- <li class="method"><a href="RubyProf.html#method-c-profile">::profile &mdash; RubyProf</a>
203
-
204
- <li class="method"><a href="RubyProf.html#method-c-resume">::resume &mdash; RubyProf</a>
205
-
206
- <li class="method"><a href="RubyProf.html#method-c-running-3F">::running? &mdash; RubyProf</a>
207
-
208
- <li class="method"><a href="RubyProf.html#method-c-start">::start &mdash; RubyProf</a>
209
-
210
- <li class="method"><a href="RubyProf.html#method-c-start_script">::start_script &mdash; RubyProf</a>
211
-
212
- <li class="method"><a href="RubyProf.html#method-c-stop">::stop &mdash; RubyProf</a>
213
-
214
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-3C-3D-3E">#<=> &mdash; RubyProf::MethodInfo</a>
215
-
216
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-aggregate_children">#aggregate_children &mdash; RubyProf::MethodInfo</a>
217
-
218
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-aggregate_parents">#aggregate_parents &mdash; RubyProf::MethodInfo</a>
219
-
220
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-application">#application &mdash; RubyProf::CallStackPrinter</a>
221
-
222
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-arguments">#arguments &mdash; RubyProf::CallStackPrinter</a>
223
-
224
- <li class="method"><a href="Rack/RubyProf.html#method-i-call">#call &mdash; Rack::RubyProf</a>
225
-
226
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-call_sequence">#call_sequence &mdash; RubyProf::CallInfo</a>
227
-
228
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-called">#called &mdash; RubyProf::AggregateCallInfo</a>
229
-
230
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-called">#called &mdash; RubyProf::MethodInfo</a>
231
-
232
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-children">#children &mdash; RubyProf::AggregateCallInfo</a>
233
-
234
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-children">#children &mdash; RubyProf::MethodInfo</a>
235
-
236
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-children_time">#children_time &mdash; RubyProf::CallInfo</a>
237
-
238
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-children_time">#children_time &mdash; RubyProf::AggregateCallInfo</a>
239
-
240
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-children_time">#children_time &mdash; RubyProf::MethodInfo</a>
241
-
242
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-clean_output_directory">#clean_output_directory &mdash; RubyProf::ProfileTask</a>
243
-
244
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-color">#color &mdash; RubyProf::CallStackPrinter</a>
245
-
246
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-convert">#convert &mdash; RubyProf::CallTreePrinter</a>
247
-
248
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-copy_image_files">#copy_image_files &mdash; RubyProf::CallStackPrinter</a>
249
-
250
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-create_link">#create_link &mdash; RubyProf::GraphHtmlPrinter</a>
251
-
252
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-create_output_directory">#create_output_directory &mdash; RubyProf::ProfileTask</a>
253
-
254
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-define">#define &mdash; RubyProf::ProfileTask</a>
255
-
256
- <li class="method"><a href="RubyProf/Profile.html#method-i-detect_recursion">#detect_recursion &mdash; RubyProf::Profile</a>
257
-
258
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-dump">#dump &mdash; RubyProf::CallStackPrinter</a>
259
-
260
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-eliminate-21">#eliminate! &mdash; RubyProf::CallInfo</a>
261
-
262
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-eliminate-21">#eliminate! &mdash; RubyProf::MethodInfo</a>
263
-
264
- <li class="method"><a href="RubyProf/Profile.html#method-i-eliminate_methods-21">#eliminate_methods! &mdash; RubyProf::Profile</a>
265
-
266
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-expansion">#expansion &mdash; RubyProf::CallStackPrinter</a>
267
-
268
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-file">#file &mdash; RubyProf::CallTreePrinter</a>
269
-
270
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-file_link">#file_link &mdash; RubyProf::GraphHtmlPrinter</a>
271
-
272
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-find_call">#find_call &mdash; RubyProf::CallInfo</a>
273
-
274
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-flat_profile">#flat_profile &mdash; RubyProf::MultiPrinter</a>
275
-
276
- <li class="method"><a href="RubyProf/Test.html#method-i-format_profile_total">#format_profile_total &mdash; RubyProf::Test</a>
277
-
278
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-graph_link">#graph_link &mdash; RubyProf::CallStackPrinter</a>
279
-
280
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-graph_profile">#graph_profile &mdash; RubyProf::MultiPrinter</a>
281
-
282
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-line">#line &mdash; RubyProf::AggregateCallInfo</a>
283
-
284
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-link">#link &mdash; RubyProf::CallStackPrinter</a>
285
-
286
- <li class="method"><a href="RubyProf/Cmd.html#method-i-load_pre_execs">#load_pre_execs &mdash; RubyProf::Cmd</a>
287
-
288
- <li class="method"><a href="RubyProf/Cmd.html#method-i-load_pre_libs">#load_pre_libs &mdash; RubyProf::Cmd</a>
289
-
290
- <li class="method"><a href="RubyProf/Test.html#method-i-measure_mode_name">#measure_mode_name &mdash; RubyProf::Test</a>
291
-
292
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-merge_call_tree">#merge_call_tree &mdash; RubyProf::CallInfo</a>
293
-
294
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-method_href">#method_href &mdash; RubyProf::GraphHtmlPrinter</a>
295
-
296
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-method_href">#method_href &mdash; RubyProf::CallStackPrinter</a>
297
-
298
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-method_name">#method_name &mdash; RubyProf::AbstractPrinter</a>
299
-
300
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-min_depth">#min_depth &mdash; RubyProf::MethodInfo</a>
301
-
302
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-min_percent">#min_percent &mdash; RubyProf::AbstractPrinter</a>
303
-
304
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-name">#name &mdash; RubyProf::CallStackPrinter</a>
305
-
306
- <li class="method"><a href="RubyProf/Cmd.html#method-i-option_parser">#option_parser &mdash; RubyProf::Cmd</a>
307
-
308
- <li class="method"><a href="RubyProf/Test.html#method-i-output_dir">#output_dir &mdash; RubyProf::Test</a>
309
-
310
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-output_directory">#output_directory &mdash; RubyProf::ProfileTask</a>
311
-
312
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-parent">#parent &mdash; RubyProf::AggregateCallInfo</a>
313
-
314
- <li class="method"><a href="RubyProf/Cmd.html#method-i-parse_args">#parse_args &mdash; RubyProf::Cmd</a>
315
-
316
- <li class="method"><a href="RubyProf/Profile.html#method-i-pause">#pause &mdash; RubyProf::Profile</a>
317
-
318
- <li class="method"><a href="RubyProf/Profile.html#method-i-paused-3F">#paused? &mdash; RubyProf::Profile</a>
319
-
320
- <li class="method"><a href="RubyProf/Profile.html#method-i-post_process">#post_process &mdash; RubyProf::Profile</a>
321
-
322
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print">#print &mdash; RubyProf::CallTreePrinter</a>
323
-
324
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print">#print &mdash; RubyProf::AbstractPrinter</a>
325
-
326
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-print">#print &mdash; RubyProf::GraphHtmlPrinter</a>
327
-
328
- <li class="method"><a href="RubyProf/DotPrinter.html#method-i-print">#print &mdash; RubyProf::DotPrinter</a>
329
-
330
- <li class="method"><a href="Rack/RubyProf.html#method-i-print">#print &mdash; Rack::RubyProf</a>
331
-
332
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-print">#print &mdash; RubyProf::MultiPrinter</a>
333
-
334
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print">#print &mdash; RubyProf::CallStackPrinter</a>
335
-
336
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_commands">#print_commands &mdash; RubyProf::CallStackPrinter</a>
337
-
338
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_css">#print_css &mdash; RubyProf::CallStackPrinter</a>
339
-
340
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_file">#print_file &mdash; RubyProf::AbstractPrinter</a>
341
-
342
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_footer">#print_footer &mdash; RubyProf::CallStackPrinter</a>
343
-
344
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_footer">#print_footer &mdash; RubyProf::AbstractPrinter</a>
345
-
346
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_header">#print_header &mdash; RubyProf::CallStackPrinter</a>
347
-
348
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_header">#print_header &mdash; RubyProf::AbstractPrinter</a>
349
-
350
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_help">#print_help &mdash; RubyProf::CallStackPrinter</a>
351
-
352
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_java_script">#print_java_script &mdash; RubyProf::CallStackPrinter</a>
353
-
354
- <li class="method"><a href="RubyProf/FlatPrinterWithLineNumbers.html#method-i-print_methods">#print_methods &mdash; RubyProf::FlatPrinterWithLineNumbers</a>
355
-
356
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_stack">#print_stack &mdash; RubyProf::CallStackPrinter</a>
357
-
358
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_thread">#print_thread &mdash; RubyProf::AbstractPrinter</a>
359
-
360
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print_thread">#print_thread &mdash; RubyProf::CallTreePrinter</a>
361
-
362
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print_threads">#print_threads &mdash; RubyProf::CallTreePrinter</a>
363
-
364
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_threads">#print_threads &mdash; RubyProf::AbstractPrinter</a>
365
-
366
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_title_bar">#print_title_bar &mdash; RubyProf::CallStackPrinter</a>
367
-
368
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-recursive-3F">#recursive? &mdash; RubyProf::MethodInfo</a>
369
-
370
- <li class="method"><a href="RubyProf/Test.html#method-i-report_filename">#report_filename &mdash; RubyProf::Test</a>
371
-
372
- <li class="method"><a href="RubyProf/Test.html#method-i-report_profile">#report_profile &mdash; RubyProf::Test</a>
373
-
374
- <li class="method"><a href="RubyProf/Profile.html#method-i-resume">#resume &mdash; RubyProf::Profile</a>
375
-
376
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-root-3F">#root? &mdash; RubyProf::MethodInfo</a>
377
-
378
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-root-3F">#root? &mdash; RubyProf::CallInfo</a>
379
-
380
- <li class="method"><a href="RubyProf/Cmd.html#method-i-run">#run &mdash; RubyProf::Cmd</a>
381
-
382
- <li class="method"><a href="RubyProf/Test.html#method-i-run">#run &mdash; RubyProf::Test</a>
383
-
384
- <li class="method"><a href="RubyProf/Test.html#method-i-run_profile">#run_profile &mdash; RubyProf::Test</a>
385
-
386
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-run_script">#run_script &mdash; RubyProf::ProfileTask</a>
387
-
388
- <li class="method"><a href="RubyProf/Test.html#method-i-run_test">#run_test &mdash; RubyProf::Test</a>
389
-
390
- <li class="method"><a href="RubyProf/Test.html#method-i-run_warmup">#run_warmup &mdash; RubyProf::Test</a>
391
-
392
- <li class="method"><a href="RubyProf/Profile.html#method-i-running-3F">#running? &mdash; RubyProf::Profile</a>
393
-
394
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-self_time">#self_time &mdash; RubyProf::AggregateCallInfo</a>
395
-
396
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-self_time">#self_time &mdash; RubyProf::MethodInfo</a>
397
-
398
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-setup_options">#setup_options &mdash; RubyProf::GraphHtmlPrinter</a>
399
-
400
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-setup_options">#setup_options &mdash; RubyProf::AbstractPrinter</a>
401
-
402
- <li class="method"><a href="RubyProf/Cmd.html#method-i-setup_options">#setup_options &mdash; RubyProf::Cmd</a>
403
-
404
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-sort_method">#sort_method &mdash; RubyProf::AbstractPrinter</a>
405
-
406
- <li class="method"><a href="RubyProf/FlatPrinter.html#method-i-sort_method">#sort_method &mdash; RubyProf::FlatPrinter</a>
407
-
408
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-stack">#stack &mdash; RubyProf::CallInfo</a>
409
-
410
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-stack_profile">#stack_profile &mdash; RubyProf::MultiPrinter</a>
411
-
412
- <li class="method"><a href="RubyProf/Profile.html#method-i-start">#start &mdash; RubyProf::Profile</a>
413
-
414
- <li class="method"><a href="RubyProf/Profile.html#method-i-stop">#stop &mdash; RubyProf::Profile</a>
415
-
416
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-sum">#sum &mdash; RubyProf::CallStackPrinter</a>
417
-
418
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-target">#target &mdash; RubyProf::AggregateCallInfo</a>
419
-
420
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-template">#template &mdash; RubyProf::GraphHtmlPrinter</a>
421
-
422
- <li class="method"><a href="RubyProf/Profile.html#method-i-threads">#threads &mdash; RubyProf::Profile</a>
423
-
424
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-threshold">#threshold &mdash; RubyProf::CallStackPrinter</a>
425
-
426
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-title">#title &mdash; RubyProf::CallStackPrinter</a>
427
-
428
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-to_s">#to_s &mdash; RubyProf::CallInfo</a>
429
-
430
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-to_s">#to_s &mdash; RubyProf::AggregateCallInfo</a>
431
-
432
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-to_s">#to_s &mdash; RubyProf::MethodInfo</a>
433
-
434
- <li class="method"><a href="RubyProf/Thread.html#method-i-top_methods">#top_methods &mdash; RubyProf::Thread</a>
435
-
436
- <li class="method"><a href="RubyProf/Thread.html#method-i-total_time">#total_time &mdash; RubyProf::Thread</a>
437
-
438
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-total_time">#total_time &mdash; RubyProf::MethodInfo</a>
439
-
440
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-total_time">#total_time &mdash; RubyProf::AggregateCallInfo</a>
441
-
442
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-total_time">#total_time &mdash; RubyProf::CallStackPrinter</a>
443
-
444
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-tree_profile">#tree_profile &mdash; RubyProf::MultiPrinter</a>
445
-
446
- <li class="method"><a href="RubyProf/CallInfoVisitor.html#method-i-visit">#visit &mdash; RubyProf::CallInfoVisitor</a>
447
-
448
- <li class="method"><a href="RubyProf/CallInfoVisitor.html#method-i-visit_call_info">#visit_call_info &mdash; RubyProf::CallInfoVisitor</a>
449
-
450
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-wait_time">#wait_time &mdash; RubyProf::AggregateCallInfo</a>
451
-
452
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-wait_time">#wait_time &mdash; RubyProf::MethodInfo</a>
453
-
146
+
147
+ <li class="method">
148
+ <a href="RubyProf.html#method-c-cpu_frequency">::cpu_frequency</a>
149
+ &mdash;
150
+ <span class="container">RubyProf</span>
151
+
152
+ <li class="method">
153
+ <a href="RubyProf.html#method-c-cpu_frequency-3D">::cpu_frequency=</a>
154
+ &mdash;
155
+ <span class="container">RubyProf</span>
156
+
157
+ <li class="method">
158
+ <a href="RubyProf.html#method-c-exclude_threads">::exclude_threads</a>
159
+ &mdash;
160
+ <span class="container">RubyProf</span>
161
+
162
+ <li class="method">
163
+ <a href="RubyProf.html#method-c-exclude_threads-3D">::exclude_threads=</a>
164
+ &mdash;
165
+ <span class="container">RubyProf</span>
166
+
167
+ <li class="method">
168
+ <a href="RubyProf.html#method-c-figure_measure_mode">::figure_measure_mode</a>
169
+ &mdash;
170
+ <span class="container">RubyProf</span>
171
+
172
+ <li class="method">
173
+ <a href="RubyProf.html#method-c-measure_allocations">::measure_allocations</a>
174
+ &mdash;
175
+ <span class="container">RubyProf</span>
176
+
177
+ <li class="method">
178
+ <a href="RubyProf.html#method-c-measure_cpu_time">::measure_cpu_time</a>
179
+ &mdash;
180
+ <span class="container">RubyProf</span>
181
+
182
+ <li class="method">
183
+ <a href="RubyProf.html#method-c-measure_gc_runs">::measure_gc_runs</a>
184
+ &mdash;
185
+ <span class="container">RubyProf</span>
186
+
187
+ <li class="method">
188
+ <a href="RubyProf.html#method-c-measure_gc_time">::measure_gc_time</a>
189
+ &mdash;
190
+ <span class="container">RubyProf</span>
191
+
192
+ <li class="method">
193
+ <a href="RubyProf.html#method-c-measure_memory">::measure_memory</a>
194
+ &mdash;
195
+ <span class="container">RubyProf</span>
196
+
197
+ <li class="method">
198
+ <a href="RubyProf.html#method-c-measure_mode">::measure_mode</a>
199
+ &mdash;
200
+ <span class="container">RubyProf</span>
201
+
202
+ <li class="method">
203
+ <a href="RubyProf.html#method-c-measure_mode-3D">::measure_mode=</a>
204
+ &mdash;
205
+ <span class="container">RubyProf</span>
206
+
207
+ <li class="method">
208
+ <a href="RubyProf.html#method-c-measure_process_time">::measure_process_time</a>
209
+ &mdash;
210
+ <span class="container">RubyProf</span>
211
+
212
+ <li class="method">
213
+ <a href="RubyProf.html#method-c-measure_wall_time">::measure_wall_time</a>
214
+ &mdash;
215
+ <span class="container">RubyProf</span>
216
+
217
+ <li class="method">
218
+ <a href="RubyProf/Cmd.html#method-c-new">::new</a>
219
+ &mdash;
220
+ <span class="container">RubyProf::Cmd</span>
221
+
222
+ <li class="method">
223
+ <a href="RubyProf/Profile.html#method-c-new">::new</a>
224
+ &mdash;
225
+ <span class="container">RubyProf::Profile</span>
226
+
227
+ <li class="method">
228
+ <a href="RubyProf/AbstractPrinter.html#method-c-new">::new</a>
229
+ &mdash;
230
+ <span class="container">RubyProf::AbstractPrinter</span>
231
+
232
+ <li class="method">
233
+ <a href="RubyProf/CallInfoVisitor.html#method-c-new">::new</a>
234
+ &mdash;
235
+ <span class="container">RubyProf::CallInfoVisitor</span>
236
+
237
+ <li class="method">
238
+ <a href="RubyProf/ProfileTask.html#method-c-new">::new</a>
239
+ &mdash;
240
+ <span class="container">RubyProf::ProfileTask</span>
241
+
242
+ <li class="method">
243
+ <a href="RubyProf/AggregateCallInfo.html#method-c-new">::new</a>
244
+ &mdash;
245
+ <span class="container">RubyProf::AggregateCallInfo</span>
246
+
247
+ <li class="method">
248
+ <a href="RubyProf/DotPrinter.html#method-c-new">::new</a>
249
+ &mdash;
250
+ <span class="container">RubyProf::DotPrinter</span>
251
+
252
+ <li class="method">
253
+ <a href="RubyProf/MultiPrinter.html#method-c-new">::new</a>
254
+ &mdash;
255
+ <span class="container">RubyProf::MultiPrinter</span>
256
+
257
+ <li class="method">
258
+ <a href="Rack/RubyProf.html#method-c-new">::new</a>
259
+ &mdash;
260
+ <span class="container">Rack::RubyProf</span>
261
+
262
+ <li class="method">
263
+ <a href="RubyProf.html#method-c-pause">::pause</a>
264
+ &mdash;
265
+ <span class="container">RubyProf</span>
266
+
267
+ <li class="method">
268
+ <a href="RubyProf/Profile.html#method-c-profile">::profile</a>
269
+ &mdash;
270
+ <span class="container">RubyProf::Profile</span>
271
+
272
+ <li class="method">
273
+ <a href="RubyProf.html#method-c-profile">::profile</a>
274
+ &mdash;
275
+ <span class="container">RubyProf</span>
276
+
277
+ <li class="method">
278
+ <a href="RubyProf.html#method-c-resume">::resume</a>
279
+ &mdash;
280
+ <span class="container">RubyProf</span>
281
+
282
+ <li class="method">
283
+ <a href="RubyProf.html#method-c-running-3F">::running?</a>
284
+ &mdash;
285
+ <span class="container">RubyProf</span>
286
+
287
+ <li class="method">
288
+ <a href="RubyProf.html#method-c-start">::start</a>
289
+ &mdash;
290
+ <span class="container">RubyProf</span>
291
+
292
+ <li class="method">
293
+ <a href="RubyProf.html#method-c-start_script">::start_script</a>
294
+ &mdash;
295
+ <span class="container">RubyProf</span>
296
+
297
+ <li class="method">
298
+ <a href="RubyProf.html#method-c-stop">::stop</a>
299
+ &mdash;
300
+ <span class="container">RubyProf</span>
301
+
302
+ <li class="method">
303
+ <a href="RubyProf/MethodInfo.html#method-i-3C-3D-3E">#&lt;=&gt;</a>
304
+ &mdash;
305
+ <span class="container">RubyProf::MethodInfo</span>
306
+
307
+ <li class="method">
308
+ <a href="RubyProf/MethodInfo.html#method-i-aggregate_children">#aggregate_children</a>
309
+ &mdash;
310
+ <span class="container">RubyProf::MethodInfo</span>
311
+
312
+ <li class="method">
313
+ <a href="RubyProf/MethodInfo.html#method-i-aggregate_parents">#aggregate_parents</a>
314
+ &mdash;
315
+ <span class="container">RubyProf::MethodInfo</span>
316
+
317
+ <li class="method">
318
+ <a href="RubyProf/CallStackPrinter.html#method-i-application">#application</a>
319
+ &mdash;
320
+ <span class="container">RubyProf::CallStackPrinter</span>
321
+
322
+ <li class="method">
323
+ <a href="RubyProf/CallStackPrinter.html#method-i-arguments">#arguments</a>
324
+ &mdash;
325
+ <span class="container">RubyProf::CallStackPrinter</span>
326
+
327
+ <li class="method">
328
+ <a href="Rack/RubyProf.html#method-i-call">#call</a>
329
+ &mdash;
330
+ <span class="container">Rack::RubyProf</span>
331
+
332
+ <li class="method">
333
+ <a href="RubyProf/CallInfo.html#method-i-call_sequence">#call_sequence</a>
334
+ &mdash;
335
+ <span class="container">RubyProf::CallInfo</span>
336
+
337
+ <li class="method">
338
+ <a href="RubyProf/AggregateCallInfo.html#method-i-called">#called</a>
339
+ &mdash;
340
+ <span class="container">RubyProf::AggregateCallInfo</span>
341
+
342
+ <li class="method">
343
+ <a href="RubyProf/MethodInfo.html#method-i-called">#called</a>
344
+ &mdash;
345
+ <span class="container">RubyProf::MethodInfo</span>
346
+
347
+ <li class="method">
348
+ <a href="RubyProf/AggregateCallInfo.html#method-i-children">#children</a>
349
+ &mdash;
350
+ <span class="container">RubyProf::AggregateCallInfo</span>
351
+
352
+ <li class="method">
353
+ <a href="RubyProf/MethodInfo.html#method-i-children">#children</a>
354
+ &mdash;
355
+ <span class="container">RubyProf::MethodInfo</span>
356
+
357
+ <li class="method">
358
+ <a href="RubyProf/MethodInfo.html#method-i-children_time">#children_time</a>
359
+ &mdash;
360
+ <span class="container">RubyProf::MethodInfo</span>
361
+
362
+ <li class="method">
363
+ <a href="RubyProf/AggregateCallInfo.html#method-i-children_time">#children_time</a>
364
+ &mdash;
365
+ <span class="container">RubyProf::AggregateCallInfo</span>
366
+
367
+ <li class="method">
368
+ <a href="RubyProf/CallInfo.html#method-i-children_time">#children_time</a>
369
+ &mdash;
370
+ <span class="container">RubyProf::CallInfo</span>
371
+
372
+ <li class="method">
373
+ <a href="RubyProf/ProfileTask.html#method-i-clean_output_directory">#clean_output_directory</a>
374
+ &mdash;
375
+ <span class="container">RubyProf::ProfileTask</span>
376
+
377
+ <li class="method">
378
+ <a href="RubyProf/CallStackPrinter.html#method-i-color">#color</a>
379
+ &mdash;
380
+ <span class="container">RubyProf::CallStackPrinter</span>
381
+
382
+ <li class="method">
383
+ <a href="RubyProf/CallTreePrinter.html#method-i-convert">#convert</a>
384
+ &mdash;
385
+ <span class="container">RubyProf::CallTreePrinter</span>
386
+
387
+ <li class="method">
388
+ <a href="RubyProf/CallStackPrinter.html#method-i-copy_image_files">#copy_image_files</a>
389
+ &mdash;
390
+ <span class="container">RubyProf::CallStackPrinter</span>
391
+
392
+ <li class="method">
393
+ <a href="RubyProf/GraphHtmlPrinter.html#method-i-create_link">#create_link</a>
394
+ &mdash;
395
+ <span class="container">RubyProf::GraphHtmlPrinter</span>
396
+
397
+ <li class="method">
398
+ <a href="RubyProf/ProfileTask.html#method-i-create_output_directory">#create_output_directory</a>
399
+ &mdash;
400
+ <span class="container">RubyProf::ProfileTask</span>
401
+
402
+ <li class="method">
403
+ <a href="RubyProf/ProfileTask.html#method-i-define">#define</a>
404
+ &mdash;
405
+ <span class="container">RubyProf::ProfileTask</span>
406
+
407
+ <li class="method">
408
+ <a href="RubyProf/Profile.html#method-i-detect_recursion">#detect_recursion</a>
409
+ &mdash;
410
+ <span class="container">RubyProf::Profile</span>
411
+
412
+ <li class="method">
413
+ <a href="RubyProf/CallStackPrinter.html#method-i-dump">#dump</a>
414
+ &mdash;
415
+ <span class="container">RubyProf::CallStackPrinter</span>
416
+
417
+ <li class="method">
418
+ <a href="RubyProf/CallInfo.html#method-i-eliminate-21">#eliminate!</a>
419
+ &mdash;
420
+ <span class="container">RubyProf::CallInfo</span>
421
+
422
+ <li class="method">
423
+ <a href="RubyProf/MethodInfo.html#method-i-eliminate-21">#eliminate!</a>
424
+ &mdash;
425
+ <span class="container">RubyProf::MethodInfo</span>
426
+
427
+ <li class="method">
428
+ <a href="RubyProf/Profile.html#method-i-eliminate_methods-21">#eliminate_methods!</a>
429
+ &mdash;
430
+ <span class="container">RubyProf::Profile</span>
431
+
432
+ <li class="method">
433
+ <a href="RubyProf/CallStackPrinter.html#method-i-expansion">#expansion</a>
434
+ &mdash;
435
+ <span class="container">RubyProf::CallStackPrinter</span>
436
+
437
+ <li class="method">
438
+ <a href="RubyProf/CallTreePrinter.html#method-i-file">#file</a>
439
+ &mdash;
440
+ <span class="container">RubyProf::CallTreePrinter</span>
441
+
442
+ <li class="method">
443
+ <a href="RubyProf/GraphHtmlPrinter.html#method-i-file_link">#file_link</a>
444
+ &mdash;
445
+ <span class="container">RubyProf::GraphHtmlPrinter</span>
446
+
447
+ <li class="method">
448
+ <a href="RubyProf/CallInfo.html#method-i-find_call">#find_call</a>
449
+ &mdash;
450
+ <span class="container">RubyProf::CallInfo</span>
451
+
452
+ <li class="method">
453
+ <a href="RubyProf/MultiPrinter.html#method-i-flat_profile">#flat_profile</a>
454
+ &mdash;
455
+ <span class="container">RubyProf::MultiPrinter</span>
456
+
457
+ <li class="method">
458
+ <a href="RubyProf/CallStackPrinter.html#method-i-graph_link">#graph_link</a>
459
+ &mdash;
460
+ <span class="container">RubyProf::CallStackPrinter</span>
461
+
462
+ <li class="method">
463
+ <a href="RubyProf/MultiPrinter.html#method-i-graph_profile">#graph_profile</a>
464
+ &mdash;
465
+ <span class="container">RubyProf::MultiPrinter</span>
466
+
467
+ <li class="method">
468
+ <a href="RubyProf/AggregateCallInfo.html#method-i-line">#line</a>
469
+ &mdash;
470
+ <span class="container">RubyProf::AggregateCallInfo</span>
471
+
472
+ <li class="method">
473
+ <a href="RubyProf/CallStackPrinter.html#method-i-link">#link</a>
474
+ &mdash;
475
+ <span class="container">RubyProf::CallStackPrinter</span>
476
+
477
+ <li class="method">
478
+ <a href="RubyProf/Cmd.html#method-i-load_pre_execs">#load_pre_execs</a>
479
+ &mdash;
480
+ <span class="container">RubyProf::Cmd</span>
481
+
482
+ <li class="method">
483
+ <a href="RubyProf/Cmd.html#method-i-load_pre_libs">#load_pre_libs</a>
484
+ &mdash;
485
+ <span class="container">RubyProf::Cmd</span>
486
+
487
+ <li class="method">
488
+ <a href="RubyProf/CallInfo.html#method-i-merge_call_tree">#merge_call_tree</a>
489
+ &mdash;
490
+ <span class="container">RubyProf::CallInfo</span>
491
+
492
+ <li class="method">
493
+ <a href="RubyProf/GraphHtmlPrinter.html#method-i-method_href">#method_href</a>
494
+ &mdash;
495
+ <span class="container">RubyProf::GraphHtmlPrinter</span>
496
+
497
+ <li class="method">
498
+ <a href="RubyProf/CallStackPrinter.html#method-i-method_href">#method_href</a>
499
+ &mdash;
500
+ <span class="container">RubyProf::CallStackPrinter</span>
501
+
502
+ <li class="method">
503
+ <a href="RubyProf/AbstractPrinter.html#method-i-method_name">#method_name</a>
504
+ &mdash;
505
+ <span class="container">RubyProf::AbstractPrinter</span>
506
+
507
+ <li class="method">
508
+ <a href="RubyProf/MethodInfo.html#method-i-min_depth">#min_depth</a>
509
+ &mdash;
510
+ <span class="container">RubyProf::MethodInfo</span>
511
+
512
+ <li class="method">
513
+ <a href="RubyProf/AbstractPrinter.html#method-i-min_percent">#min_percent</a>
514
+ &mdash;
515
+ <span class="container">RubyProf::AbstractPrinter</span>
516
+
517
+ <li class="method">
518
+ <a href="RubyProf/CallStackPrinter.html#method-i-name">#name</a>
519
+ &mdash;
520
+ <span class="container">RubyProf::CallStackPrinter</span>
521
+
522
+ <li class="method">
523
+ <a href="RubyProf/Cmd.html#method-i-option_parser">#option_parser</a>
524
+ &mdash;
525
+ <span class="container">RubyProf::Cmd</span>
526
+
527
+ <li class="method">
528
+ <a href="RubyProf/ProfileTask.html#method-i-output_directory">#output_directory</a>
529
+ &mdash;
530
+ <span class="container">RubyProf::ProfileTask</span>
531
+
532
+ <li class="method">
533
+ <a href="RubyProf/AggregateCallInfo.html#method-i-parent">#parent</a>
534
+ &mdash;
535
+ <span class="container">RubyProf::AggregateCallInfo</span>
536
+
537
+ <li class="method">
538
+ <a href="RubyProf/Cmd.html#method-i-parse_args">#parse_args</a>
539
+ &mdash;
540
+ <span class="container">RubyProf::Cmd</span>
541
+
542
+ <li class="method">
543
+ <a href="RubyProf/Profile.html#method-i-pause">#pause</a>
544
+ &mdash;
545
+ <span class="container">RubyProf::Profile</span>
546
+
547
+ <li class="method">
548
+ <a href="RubyProf/Profile.html#method-i-paused-3F">#paused?</a>
549
+ &mdash;
550
+ <span class="container">RubyProf::Profile</span>
551
+
552
+ <li class="method">
553
+ <a href="RubyProf/Profile.html#method-i-post_process">#post_process</a>
554
+ &mdash;
555
+ <span class="container">RubyProf::Profile</span>
556
+
557
+ <li class="method">
558
+ <a href="RubyProf/CallStackPrinter.html#method-i-print">#print</a>
559
+ &mdash;
560
+ <span class="container">RubyProf::CallStackPrinter</span>
561
+
562
+ <li class="method">
563
+ <a href="RubyProf/AbstractPrinter.html#method-i-print">#print</a>
564
+ &mdash;
565
+ <span class="container">RubyProf::AbstractPrinter</span>
566
+
567
+ <li class="method">
568
+ <a href="Rack/RubyProf.html#method-i-print">#print</a>
569
+ &mdash;
570
+ <span class="container">Rack::RubyProf</span>
571
+
572
+ <li class="method">
573
+ <a href="RubyProf/DotPrinter.html#method-i-print">#print</a>
574
+ &mdash;
575
+ <span class="container">RubyProf::DotPrinter</span>
576
+
577
+ <li class="method">
578
+ <a href="RubyProf/CallTreePrinter.html#method-i-print">#print</a>
579
+ &mdash;
580
+ <span class="container">RubyProf::CallTreePrinter</span>
581
+
582
+ <li class="method">
583
+ <a href="RubyProf/MultiPrinter.html#method-i-print">#print</a>
584
+ &mdash;
585
+ <span class="container">RubyProf::MultiPrinter</span>
586
+
587
+ <li class="method">
588
+ <a href="RubyProf/GraphHtmlPrinter.html#method-i-print">#print</a>
589
+ &mdash;
590
+ <span class="container">RubyProf::GraphHtmlPrinter</span>
591
+
592
+ <li class="method">
593
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_commands">#print_commands</a>
594
+ &mdash;
595
+ <span class="container">RubyProf::CallStackPrinter</span>
596
+
597
+ <li class="method">
598
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_css">#print_css</a>
599
+ &mdash;
600
+ <span class="container">RubyProf::CallStackPrinter</span>
601
+
602
+ <li class="method">
603
+ <a href="RubyProf/AbstractPrinter.html#method-i-print_file">#print_file</a>
604
+ &mdash;
605
+ <span class="container">RubyProf::AbstractPrinter</span>
606
+
607
+ <li class="method">
608
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_footer">#print_footer</a>
609
+ &mdash;
610
+ <span class="container">RubyProf::CallStackPrinter</span>
611
+
612
+ <li class="method">
613
+ <a href="RubyProf/AbstractPrinter.html#method-i-print_footer">#print_footer</a>
614
+ &mdash;
615
+ <span class="container">RubyProf::AbstractPrinter</span>
616
+
617
+ <li class="method">
618
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_header">#print_header</a>
619
+ &mdash;
620
+ <span class="container">RubyProf::CallStackPrinter</span>
621
+
622
+ <li class="method">
623
+ <a href="RubyProf/AbstractPrinter.html#method-i-print_header">#print_header</a>
624
+ &mdash;
625
+ <span class="container">RubyProf::AbstractPrinter</span>
626
+
627
+ <li class="method">
628
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_help">#print_help</a>
629
+ &mdash;
630
+ <span class="container">RubyProf::CallStackPrinter</span>
631
+
632
+ <li class="method">
633
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_java_script">#print_java_script</a>
634
+ &mdash;
635
+ <span class="container">RubyProf::CallStackPrinter</span>
636
+
637
+ <li class="method">
638
+ <a href="RubyProf/FlatPrinterWithLineNumbers.html#method-i-print_methods">#print_methods</a>
639
+ &mdash;
640
+ <span class="container">RubyProf::FlatPrinterWithLineNumbers</span>
641
+
642
+ <li class="method">
643
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_stack">#print_stack</a>
644
+ &mdash;
645
+ <span class="container">RubyProf::CallStackPrinter</span>
646
+
647
+ <li class="method">
648
+ <a href="RubyProf/CallTreePrinter.html#method-i-print_thread">#print_thread</a>
649
+ &mdash;
650
+ <span class="container">RubyProf::CallTreePrinter</span>
651
+
652
+ <li class="method">
653
+ <a href="RubyProf/AbstractPrinter.html#method-i-print_thread">#print_thread</a>
654
+ &mdash;
655
+ <span class="container">RubyProf::AbstractPrinter</span>
656
+
657
+ <li class="method">
658
+ <a href="RubyProf/CallTreePrinter.html#method-i-print_threads">#print_threads</a>
659
+ &mdash;
660
+ <span class="container">RubyProf::CallTreePrinter</span>
661
+
662
+ <li class="method">
663
+ <a href="RubyProf/AbstractPrinter.html#method-i-print_threads">#print_threads</a>
664
+ &mdash;
665
+ <span class="container">RubyProf::AbstractPrinter</span>
666
+
667
+ <li class="method">
668
+ <a href="RubyProf/CallStackPrinter.html#method-i-print_title_bar">#print_title_bar</a>
669
+ &mdash;
670
+ <span class="container">RubyProf::CallStackPrinter</span>
671
+
672
+ <li class="method">
673
+ <a href="RubyProf/MethodInfo.html#method-i-recursive-3F">#recursive?</a>
674
+ &mdash;
675
+ <span class="container">RubyProf::MethodInfo</span>
676
+
677
+ <li class="method">
678
+ <a href="RubyProf/Profile.html#method-i-resume">#resume</a>
679
+ &mdash;
680
+ <span class="container">RubyProf::Profile</span>
681
+
682
+ <li class="method">
683
+ <a href="RubyProf/CallInfo.html#method-i-root-3F">#root?</a>
684
+ &mdash;
685
+ <span class="container">RubyProf::CallInfo</span>
686
+
687
+ <li class="method">
688
+ <a href="RubyProf/MethodInfo.html#method-i-root-3F">#root?</a>
689
+ &mdash;
690
+ <span class="container">RubyProf::MethodInfo</span>
691
+
692
+ <li class="method">
693
+ <a href="RubyProf/Cmd.html#method-i-run">#run</a>
694
+ &mdash;
695
+ <span class="container">RubyProf::Cmd</span>
696
+
697
+ <li class="method">
698
+ <a href="RubyProf/ProfileTask.html#method-i-run_script">#run_script</a>
699
+ &mdash;
700
+ <span class="container">RubyProf::ProfileTask</span>
701
+
702
+ <li class="method">
703
+ <a href="RubyProf/Profile.html#method-i-running-3F">#running?</a>
704
+ &mdash;
705
+ <span class="container">RubyProf::Profile</span>
706
+
707
+ <li class="method">
708
+ <a href="RubyProf/AggregateCallInfo.html#method-i-self_time">#self_time</a>
709
+ &mdash;
710
+ <span class="container">RubyProf::AggregateCallInfo</span>
711
+
712
+ <li class="method">
713
+ <a href="RubyProf/MethodInfo.html#method-i-self_time">#self_time</a>
714
+ &mdash;
715
+ <span class="container">RubyProf::MethodInfo</span>
716
+
717
+ <li class="method">
718
+ <a href="RubyProf/GraphHtmlPrinter.html#method-i-setup_options">#setup_options</a>
719
+ &mdash;
720
+ <span class="container">RubyProf::GraphHtmlPrinter</span>
721
+
722
+ <li class="method">
723
+ <a href="RubyProf/AbstractPrinter.html#method-i-setup_options">#setup_options</a>
724
+ &mdash;
725
+ <span class="container">RubyProf::AbstractPrinter</span>
726
+
727
+ <li class="method">
728
+ <a href="RubyProf/Cmd.html#method-i-setup_options">#setup_options</a>
729
+ &mdash;
730
+ <span class="container">RubyProf::Cmd</span>
731
+
732
+ <li class="method">
733
+ <a href="RubyProf/FlatPrinter.html#method-i-sort_method">#sort_method</a>
734
+ &mdash;
735
+ <span class="container">RubyProf::FlatPrinter</span>
736
+
737
+ <li class="method">
738
+ <a href="RubyProf/AbstractPrinter.html#method-i-sort_method">#sort_method</a>
739
+ &mdash;
740
+ <span class="container">RubyProf::AbstractPrinter</span>
741
+
742
+ <li class="method">
743
+ <a href="RubyProf/CallInfo.html#method-i-stack">#stack</a>
744
+ &mdash;
745
+ <span class="container">RubyProf::CallInfo</span>
746
+
747
+ <li class="method">
748
+ <a href="RubyProf/MultiPrinter.html#method-i-stack_profile">#stack_profile</a>
749
+ &mdash;
750
+ <span class="container">RubyProf::MultiPrinter</span>
751
+
752
+ <li class="method">
753
+ <a href="RubyProf/Profile.html#method-i-start">#start</a>
754
+ &mdash;
755
+ <span class="container">RubyProf::Profile</span>
756
+
757
+ <li class="method">
758
+ <a href="RubyProf/Profile.html#method-i-stop">#stop</a>
759
+ &mdash;
760
+ <span class="container">RubyProf::Profile</span>
761
+
762
+ <li class="method">
763
+ <a href="RubyProf/CallStackPrinter.html#method-i-sum">#sum</a>
764
+ &mdash;
765
+ <span class="container">RubyProf::CallStackPrinter</span>
766
+
767
+ <li class="method">
768
+ <a href="RubyProf/AggregateCallInfo.html#method-i-target">#target</a>
769
+ &mdash;
770
+ <span class="container">RubyProf::AggregateCallInfo</span>
771
+
772
+ <li class="method">
773
+ <a href="RubyProf/GraphHtmlPrinter.html#method-i-template">#template</a>
774
+ &mdash;
775
+ <span class="container">RubyProf::GraphHtmlPrinter</span>
776
+
777
+ <li class="method">
778
+ <a href="RubyProf/Profile.html#method-i-threads">#threads</a>
779
+ &mdash;
780
+ <span class="container">RubyProf::Profile</span>
781
+
782
+ <li class="method">
783
+ <a href="RubyProf/CallStackPrinter.html#method-i-threshold">#threshold</a>
784
+ &mdash;
785
+ <span class="container">RubyProf::CallStackPrinter</span>
786
+
787
+ <li class="method">
788
+ <a href="RubyProf/CallStackPrinter.html#method-i-title">#title</a>
789
+ &mdash;
790
+ <span class="container">RubyProf::CallStackPrinter</span>
791
+
792
+ <li class="method">
793
+ <a href="RubyProf/MethodInfo.html#method-i-to_s">#to_s</a>
794
+ &mdash;
795
+ <span class="container">RubyProf::MethodInfo</span>
796
+
797
+ <li class="method">
798
+ <a href="RubyProf/AggregateCallInfo.html#method-i-to_s">#to_s</a>
799
+ &mdash;
800
+ <span class="container">RubyProf::AggregateCallInfo</span>
801
+
802
+ <li class="method">
803
+ <a href="RubyProf/CallInfo.html#method-i-to_s">#to_s</a>
804
+ &mdash;
805
+ <span class="container">RubyProf::CallInfo</span>
806
+
807
+ <li class="method">
808
+ <a href="RubyProf/Thread.html#method-i-top_methods">#top_methods</a>
809
+ &mdash;
810
+ <span class="container">RubyProf::Thread</span>
811
+
812
+ <li class="method">
813
+ <a href="RubyProf/MethodInfo.html#method-i-total_time">#total_time</a>
814
+ &mdash;
815
+ <span class="container">RubyProf::MethodInfo</span>
816
+
817
+ <li class="method">
818
+ <a href="RubyProf/Thread.html#method-i-total_time">#total_time</a>
819
+ &mdash;
820
+ <span class="container">RubyProf::Thread</span>
821
+
822
+ <li class="method">
823
+ <a href="RubyProf/AggregateCallInfo.html#method-i-total_time">#total_time</a>
824
+ &mdash;
825
+ <span class="container">RubyProf::AggregateCallInfo</span>
826
+
827
+ <li class="method">
828
+ <a href="RubyProf/CallStackPrinter.html#method-i-total_time">#total_time</a>
829
+ &mdash;
830
+ <span class="container">RubyProf::CallStackPrinter</span>
831
+
832
+ <li class="method">
833
+ <a href="RubyProf/MultiPrinter.html#method-i-tree_profile">#tree_profile</a>
834
+ &mdash;
835
+ <span class="container">RubyProf::MultiPrinter</span>
836
+
837
+ <li class="method">
838
+ <a href="RubyProf/CallInfoVisitor.html#method-i-visit">#visit</a>
839
+ &mdash;
840
+ <span class="container">RubyProf::CallInfoVisitor</span>
841
+
842
+ <li class="method">
843
+ <a href="RubyProf/MethodInfo.html#method-i-wait_time">#wait_time</a>
844
+ &mdash;
845
+ <span class="container">RubyProf::MethodInfo</span>
846
+
847
+ <li class="method">
848
+ <a href="RubyProf/AggregateCallInfo.html#method-i-wait_time">#wait_time</a>
849
+ &mdash;
850
+ <span class="container">RubyProf::AggregateCallInfo</span>
454
851
  </ul>
852
+ </main>
455
853
 
456
854
 
457
- <footer id="validator-badges">
458
- <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
459
- <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.1.
460
- <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
855
+ <footer id="validator-badges" role="contentinfo">
856
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
857
+ <p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.
858
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
461
859
  </footer>
462
860