ruby-prof 0.12.1 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. data/CHANGES +5 -1
  2. data/Rakefile +25 -7
  3. data/bin/ruby-prof +2 -2
  4. data/doc/LICENSE.html +155 -0
  5. data/doc/README_rdoc.html +640 -0
  6. data/doc/Rack.html +167 -0
  7. data/doc/Rack/RubyProf.html +319 -0
  8. data/doc/RubyProf.html +999 -0
  9. data/doc/RubyProf/AbstractPrinter.html +580 -0
  10. data/doc/RubyProf/AggregateCallInfo.html +570 -0
  11. data/doc/RubyProf/CallInfo.html +512 -0
  12. data/doc/RubyProf/CallInfoPrinter.html +190 -0
  13. data/doc/RubyProf/CallInfoVisitor.html +332 -0
  14. data/doc/RubyProf/CallStackPrinter.html +1597 -0
  15. data/doc/RubyProf/CallTreePrinter.html +413 -0
  16. data/doc/RubyProf/Cmd.html +669 -0
  17. data/doc/RubyProf/DotPrinter.html +312 -0
  18. data/doc/RubyProf/FlatPrinter.html +229 -0
  19. data/doc/RubyProf/FlatPrinterWithLineNumbers.html +267 -0
  20. data/doc/RubyProf/GraphHtmlPrinter.html +622 -0
  21. data/doc/RubyProf/GraphPrinter.html +209 -0
  22. data/doc/RubyProf/MethodInfo.html +713 -0
  23. data/doc/RubyProf/MultiPrinter.html +407 -0
  24. data/doc/RubyProf/Profile.html +821 -0
  25. data/doc/RubyProf/ProfileTask.html +532 -0
  26. data/doc/RubyProf/Test.html +578 -0
  27. data/doc/RubyProf/Thread.html +262 -0
  28. data/doc/created.rid +31 -0
  29. data/doc/examples/flat_txt.html +191 -0
  30. data/doc/examples/graph_txt.html +305 -0
  31. data/doc/images/add.png +0 -0
  32. data/doc/images/brick.png +0 -0
  33. data/doc/images/brick_link.png +0 -0
  34. data/doc/images/bug.png +0 -0
  35. data/doc/images/bullet_black.png +0 -0
  36. data/doc/images/bullet_toggle_minus.png +0 -0
  37. data/doc/images/bullet_toggle_plus.png +0 -0
  38. data/doc/images/date.png +0 -0
  39. data/doc/images/delete.png +0 -0
  40. data/doc/images/find.png +0 -0
  41. data/doc/images/loadingAnimation.gif +0 -0
  42. data/doc/images/macFFBgHack.png +0 -0
  43. data/doc/images/package.png +0 -0
  44. data/doc/images/page_green.png +0 -0
  45. data/doc/images/page_white_text.png +0 -0
  46. data/doc/images/page_white_width.png +0 -0
  47. data/doc/images/plugin.png +0 -0
  48. data/doc/images/ruby.png +0 -0
  49. data/doc/images/tag_blue.png +0 -0
  50. data/doc/images/tag_green.png +0 -0
  51. data/doc/images/transparent.png +0 -0
  52. data/doc/images/wrench.png +0 -0
  53. data/doc/images/wrench_orange.png +0 -0
  54. data/doc/images/zoom.png +0 -0
  55. data/doc/index.html +639 -0
  56. data/doc/js/darkfish.js +153 -0
  57. data/doc/js/jquery.js +18 -0
  58. data/doc/js/navigation.js +142 -0
  59. data/doc/js/search.js +94 -0
  60. data/doc/js/search_index.js +1 -0
  61. data/doc/js/searcher.js +228 -0
  62. data/doc/rdoc.css +543 -0
  63. data/doc/table_of_contents.html +462 -0
  64. data/examples/empty.png +0 -0
  65. data/examples/minus.png +0 -0
  66. data/examples/plus.png +0 -0
  67. data/ext/ruby_prof/extconf.rb +5 -1
  68. data/ext/ruby_prof/rp_call_info.c +1 -1
  69. data/ext/ruby_prof/rp_measure_gc_time.c +6 -10
  70. data/ext/ruby_prof/rp_measure_memory.c +0 -1
  71. data/ext/ruby_prof/rp_stack.c +0 -5
  72. data/ext/ruby_prof/vc/ruby_prof_18.vcxproj +0 -2
  73. data/ext/ruby_prof/vc/ruby_prof_19.vcxproj +1 -3
  74. data/ext/ruby_prof/vc/ruby_prof_20.vcxproj +1 -3
  75. data/ext/ruby_prof/version.h +2 -2
  76. data/lib/ruby-prof/compatibility.rb +8 -3
  77. data/lib/ruby-prof/images/empty.png +0 -0
  78. data/lib/ruby-prof/images/minus.png +0 -0
  79. data/lib/ruby-prof/images/plus.png +0 -0
  80. data/lib/ruby-prof/task.rb +0 -0
  81. data/ruby-prof.gemspec +2 -1
  82. data/test/aggregate_test.rb +0 -0
  83. data/test/basic_test.rb +0 -0
  84. data/test/duplicate_names_test.rb +0 -0
  85. data/test/dynamic_method_test.rb +8 -1
  86. data/test/enumerable_test.rb +0 -0
  87. data/test/exceptions_test.rb +0 -0
  88. data/test/exclude_threads_test.rb +0 -0
  89. data/test/exec_test.rb +0 -0
  90. data/test/line_number_test.rb +0 -0
  91. data/test/measure_gc_runs_test.rb +4 -1
  92. data/test/measure_gc_time_test.rb +10 -3
  93. data/test/measure_memory_test.rb +3 -8
  94. data/test/measure_process_time_test.rb +10 -4
  95. data/test/method_elimination_test.rb +1 -2
  96. data/test/module_test.rb +0 -0
  97. data/test/multi_printer_test.rb +5 -6
  98. data/test/no_method_class_test.rb +0 -0
  99. data/test/pause_resume_test.rb +6 -8
  100. data/test/printers_test.rb +0 -0
  101. data/test/recursive_test.rb +0 -0
  102. data/test/singleton_test.rb +0 -0
  103. data/test/stack_printer_test.rb +8 -5
  104. data/test/stack_test.rb +0 -0
  105. data/test/start_stop_test.rb +0 -0
  106. data/test/test_helper.rb +16 -4
  107. data/test/thread_test.rb +0 -0
  108. data/test/unique_call_path_test.rb +0 -0
  109. metadata +90 -17
@@ -0,0 +1,462 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>Table of Contents - ruby-prof</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
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>
21
+
22
+
23
+ <body class="indexpage">
24
+ <h1>Table of Contents - ruby-prof</h1>
25
+
26
+ <h2>Pages</h2>
27
+ <ul>
28
+ <li class="file">
29
+ <a href="LICENSE.html">LICENSE</a>
30
+ </li>
31
+ <li class="file">
32
+ <a href="README_rdoc.html">README</a>
33
+
34
+ <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
35
+ <ul class="initially-hidden">
36
+ <li><a href="README_rdoc.html#label-ruby-prof">ruby-prof</a>
37
+ <li><a href="README_rdoc.html#label-Overview">Overview</a>
38
+ <li><a href="README_rdoc.html#label-Requirements">Requirements</a>
39
+ <li><a href="README_rdoc.html#label-Install">Install</a>
40
+ <li><a href="README_rdoc.html#label-Usage">Usage</a>
41
+ <li><a href="README_rdoc.html#label-ruby-prof+executable">ruby-prof executable</a>
42
+ <li><a href="README_rdoc.html#label-ruby-prof+API">ruby-prof API</a>
43
+ <li><a href="README_rdoc.html#label-Method+and+Thread+Elimination">Method and Thread Elimination</a>
44
+ <li><a href="README_rdoc.html#label-Benchmarking+full+load+time+including+rubygems+startup+cost+%3D%3D">Benchmarking full load time including rubygems startup cost ==</a>
45
+ <li><a href="README_rdoc.html#label-Profiling+Tests">Profiling Tests</a>
46
+ <li><a href="README_rdoc.html#label-Profiling+Rails">Profiling Rails</a>
47
+ <li><a href="README_rdoc.html#label-Reports">Reports</a>
48
+ <li><a href="README_rdoc.html#label-Printers">Printers</a>
49
+ <li><a href="README_rdoc.html#label-Measurements">Measurements</a>
50
+ <li><a href="README_rdoc.html#label-Multi-threaded+Applications">Multi-threaded Applications</a>
51
+ <li><a href="README_rdoc.html#label-Performance">Performance</a>
52
+ <li><a href="README_rdoc.html#label-License">License</a>
53
+ <li><a href="README_rdoc.html#label-Development">Development</a>
54
+ </ul>
55
+ </li>
56
+ <li class="file">
57
+ <a href="examples/flat_txt.html">flat</a>
58
+
59
+ <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
60
+ <ul class="initially-hidden">
61
+ <li><a href="examples/flat_txt.html#label-Flat+Profiles">Flat Profiles</a>
62
+ </ul>
63
+ </li>
64
+ <li class="file">
65
+ <a href="examples/graph_txt.html">graph</a>
66
+
67
+ <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
68
+ <ul class="initially-hidden">
69
+ <li><a href="examples/graph_txt.html#label-Graph+Profiles">Graph Profiles</a>
70
+ <li><a href="examples/graph_txt.html#label-Overview">Overview</a>
71
+ <li><a href="examples/graph_txt.html#label-Parents">Parents</a>
72
+ <li><a href="examples/graph_txt.html#label-Children">Children</a>
73
+ </ul>
74
+ </li>
75
+
76
+ </ul>
77
+
78
+ <h2 id="classes">Classes/Modules</h2>
79
+ <ul>
80
+ <li class="module">
81
+ <a href="RubyProf.html">RubyProf</a>
82
+ </li>
83
+ <li class="class">
84
+ <a href="RubyProf/AbstractPrinter.html">RubyProf::AbstractPrinter</a>
85
+ </li>
86
+ <li class="class">
87
+ <a href="RubyProf/AggregateCallInfo.html">RubyProf::AggregateCallInfo</a>
88
+ </li>
89
+ <li class="class">
90
+ <a href="RubyProf/CallInfo.html">RubyProf::CallInfo</a>
91
+ </li>
92
+ <li class="class">
93
+ <a href="RubyProf/CallInfoPrinter.html">RubyProf::CallInfoPrinter</a>
94
+ </li>
95
+ <li class="class">
96
+ <a href="RubyProf/CallInfoVisitor.html">RubyProf::CallInfoVisitor</a>
97
+ </li>
98
+ <li class="class">
99
+ <a href="RubyProf/CallStackPrinter.html">RubyProf::CallStackPrinter</a>
100
+ </li>
101
+ <li class="class">
102
+ <a href="RubyProf/CallTreePrinter.html">RubyProf::CallTreePrinter</a>
103
+ </li>
104
+ <li class="class">
105
+ <a href="RubyProf/Cmd.html">RubyProf::Cmd</a>
106
+ </li>
107
+ <li class="class">
108
+ <a href="RubyProf/DotPrinter.html">RubyProf::DotPrinter</a>
109
+ </li>
110
+ <li class="class">
111
+ <a href="RubyProf/FlatPrinter.html">RubyProf::FlatPrinter</a>
112
+ </li>
113
+ <li class="class">
114
+ <a href="RubyProf/FlatPrinterWithLineNumbers.html">RubyProf::FlatPrinterWithLineNumbers</a>
115
+ </li>
116
+ <li class="class">
117
+ <a href="RubyProf/GraphHtmlPrinter.html">RubyProf::GraphHtmlPrinter</a>
118
+ </li>
119
+ <li class="class">
120
+ <a href="RubyProf/GraphPrinter.html">RubyProf::GraphPrinter</a>
121
+ </li>
122
+ <li class="class">
123
+ <a href="RubyProf/MethodInfo.html">RubyProf::MethodInfo</a>
124
+ </li>
125
+ <li class="class">
126
+ <a href="RubyProf/MultiPrinter.html">RubyProf::MultiPrinter</a>
127
+ </li>
128
+ <li class="class">
129
+ <a href="RubyProf/Profile.html">RubyProf::Profile</a>
130
+ </li>
131
+ <li class="class">
132
+ <a href="RubyProf/ProfileTask.html">RubyProf::ProfileTask</a>
133
+ </li>
134
+ <li class="module">
135
+ <a href="RubyProf/Test.html">RubyProf::Test</a>
136
+ </li>
137
+ <li class="class">
138
+ <a href="RubyProf/Thread.html">RubyProf::Thread</a>
139
+ </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
+ </ul>
148
+
149
+ <h2 id="methods">Methods</h2>
150
+ <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
+
454
+ </ul>
455
+
456
+
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.
460
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
461
+ </footer>
462
+