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.
- data/CHANGES +5 -1
- data/Rakefile +25 -7
- data/bin/ruby-prof +2 -2
- data/doc/LICENSE.html +155 -0
- data/doc/README_rdoc.html +640 -0
- data/doc/Rack.html +167 -0
- data/doc/Rack/RubyProf.html +319 -0
- data/doc/RubyProf.html +999 -0
- data/doc/RubyProf/AbstractPrinter.html +580 -0
- data/doc/RubyProf/AggregateCallInfo.html +570 -0
- data/doc/RubyProf/CallInfo.html +512 -0
- data/doc/RubyProf/CallInfoPrinter.html +190 -0
- data/doc/RubyProf/CallInfoVisitor.html +332 -0
- data/doc/RubyProf/CallStackPrinter.html +1597 -0
- data/doc/RubyProf/CallTreePrinter.html +413 -0
- data/doc/RubyProf/Cmd.html +669 -0
- data/doc/RubyProf/DotPrinter.html +312 -0
- data/doc/RubyProf/FlatPrinter.html +229 -0
- data/doc/RubyProf/FlatPrinterWithLineNumbers.html +267 -0
- data/doc/RubyProf/GraphHtmlPrinter.html +622 -0
- data/doc/RubyProf/GraphPrinter.html +209 -0
- data/doc/RubyProf/MethodInfo.html +713 -0
- data/doc/RubyProf/MultiPrinter.html +407 -0
- data/doc/RubyProf/Profile.html +821 -0
- data/doc/RubyProf/ProfileTask.html +532 -0
- data/doc/RubyProf/Test.html +578 -0
- data/doc/RubyProf/Thread.html +262 -0
- data/doc/created.rid +31 -0
- data/doc/examples/flat_txt.html +191 -0
- data/doc/examples/graph_txt.html +305 -0
- data/doc/images/add.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +639 -0
- data/doc/js/darkfish.js +153 -0
- data/doc/js/jquery.js +18 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/search.js +94 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/searcher.js +228 -0
- data/doc/rdoc.css +543 -0
- data/doc/table_of_contents.html +462 -0
- data/examples/empty.png +0 -0
- data/examples/minus.png +0 -0
- data/examples/plus.png +0 -0
- data/ext/ruby_prof/extconf.rb +5 -1
- data/ext/ruby_prof/rp_call_info.c +1 -1
- data/ext/ruby_prof/rp_measure_gc_time.c +6 -10
- data/ext/ruby_prof/rp_measure_memory.c +0 -1
- data/ext/ruby_prof/rp_stack.c +0 -5
- data/ext/ruby_prof/vc/ruby_prof_18.vcxproj +0 -2
- data/ext/ruby_prof/vc/ruby_prof_19.vcxproj +1 -3
- data/ext/ruby_prof/vc/ruby_prof_20.vcxproj +1 -3
- data/ext/ruby_prof/version.h +2 -2
- data/lib/ruby-prof/compatibility.rb +8 -3
- data/lib/ruby-prof/images/empty.png +0 -0
- data/lib/ruby-prof/images/minus.png +0 -0
- data/lib/ruby-prof/images/plus.png +0 -0
- data/lib/ruby-prof/task.rb +0 -0
- data/ruby-prof.gemspec +2 -1
- data/test/aggregate_test.rb +0 -0
- data/test/basic_test.rb +0 -0
- data/test/duplicate_names_test.rb +0 -0
- data/test/dynamic_method_test.rb +8 -1
- data/test/enumerable_test.rb +0 -0
- data/test/exceptions_test.rb +0 -0
- data/test/exclude_threads_test.rb +0 -0
- data/test/exec_test.rb +0 -0
- data/test/line_number_test.rb +0 -0
- data/test/measure_gc_runs_test.rb +4 -1
- data/test/measure_gc_time_test.rb +10 -3
- data/test/measure_memory_test.rb +3 -8
- data/test/measure_process_time_test.rb +10 -4
- data/test/method_elimination_test.rb +1 -2
- data/test/module_test.rb +0 -0
- data/test/multi_printer_test.rb +5 -6
- data/test/no_method_class_test.rb +0 -0
- data/test/pause_resume_test.rb +6 -8
- data/test/printers_test.rb +0 -0
- data/test/recursive_test.rb +0 -0
- data/test/singleton_test.rb +0 -0
- data/test/stack_printer_test.rb +8 -5
- data/test/stack_test.rb +0 -0
- data/test/start_stop_test.rb +0 -0
- data/test/test_helper.rb +16 -4
- data/test/thread_test.rb +0 -0
- data/test/unique_call_path_test.rb +0 -0
- 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 — RubyProf</a>
|
153
|
+
|
154
|
+
<li class="method"><a href="RubyProf.html#method-c-cpu_frequency-3D">::cpu_frequency= — RubyProf</a>
|
155
|
+
|
156
|
+
<li class="method"><a href="RubyProf.html#method-c-exclude_threads">::exclude_threads — RubyProf</a>
|
157
|
+
|
158
|
+
<li class="method"><a href="RubyProf.html#method-c-exclude_threads-3D">::exclude_threads= — RubyProf</a>
|
159
|
+
|
160
|
+
<li class="method"><a href="RubyProf.html#method-c-figure_measure_mode">::figure_measure_mode — RubyProf</a>
|
161
|
+
|
162
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_allocations">::measure_allocations — RubyProf</a>
|
163
|
+
|
164
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_cpu_time">::measure_cpu_time — RubyProf</a>
|
165
|
+
|
166
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_gc_runs">::measure_gc_runs — RubyProf</a>
|
167
|
+
|
168
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_gc_time">::measure_gc_time — RubyProf</a>
|
169
|
+
|
170
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_memory">::measure_memory — RubyProf</a>
|
171
|
+
|
172
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_mode">::measure_mode — RubyProf</a>
|
173
|
+
|
174
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_mode-3D">::measure_mode= — RubyProf</a>
|
175
|
+
|
176
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_process_time">::measure_process_time — RubyProf</a>
|
177
|
+
|
178
|
+
<li class="method"><a href="RubyProf.html#method-c-measure_wall_time">::measure_wall_time — RubyProf</a>
|
179
|
+
|
180
|
+
<li class="method"><a href="RubyProf/Cmd.html#method-c-new">::new — RubyProf::Cmd</a>
|
181
|
+
|
182
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-c-new">::new — RubyProf::AbstractPrinter</a>
|
183
|
+
|
184
|
+
<li class="method"><a href="Rack/RubyProf.html#method-c-new">::new — Rack::RubyProf</a>
|
185
|
+
|
186
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-c-new">::new — RubyProf::AggregateCallInfo</a>
|
187
|
+
|
188
|
+
<li class="method"><a href="RubyProf/CallInfoVisitor.html#method-c-new">::new — RubyProf::CallInfoVisitor</a>
|
189
|
+
|
190
|
+
<li class="method"><a href="RubyProf/Profile.html#method-c-new">::new — RubyProf::Profile</a>
|
191
|
+
|
192
|
+
<li class="method"><a href="RubyProf/ProfileTask.html#method-c-new">::new — RubyProf::ProfileTask</a>
|
193
|
+
|
194
|
+
<li class="method"><a href="RubyProf/MultiPrinter.html#method-c-new">::new — RubyProf::MultiPrinter</a>
|
195
|
+
|
196
|
+
<li class="method"><a href="RubyProf/DotPrinter.html#method-c-new">::new — RubyProf::DotPrinter</a>
|
197
|
+
|
198
|
+
<li class="method"><a href="RubyProf.html#method-c-pause">::pause — RubyProf</a>
|
199
|
+
|
200
|
+
<li class="method"><a href="RubyProf/Profile.html#method-c-profile">::profile — RubyProf::Profile</a>
|
201
|
+
|
202
|
+
<li class="method"><a href="RubyProf.html#method-c-profile">::profile — RubyProf</a>
|
203
|
+
|
204
|
+
<li class="method"><a href="RubyProf.html#method-c-resume">::resume — RubyProf</a>
|
205
|
+
|
206
|
+
<li class="method"><a href="RubyProf.html#method-c-running-3F">::running? — RubyProf</a>
|
207
|
+
|
208
|
+
<li class="method"><a href="RubyProf.html#method-c-start">::start — RubyProf</a>
|
209
|
+
|
210
|
+
<li class="method"><a href="RubyProf.html#method-c-start_script">::start_script — RubyProf</a>
|
211
|
+
|
212
|
+
<li class="method"><a href="RubyProf.html#method-c-stop">::stop — RubyProf</a>
|
213
|
+
|
214
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-3C-3D-3E">#<=> — RubyProf::MethodInfo</a>
|
215
|
+
|
216
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-aggregate_children">#aggregate_children — RubyProf::MethodInfo</a>
|
217
|
+
|
218
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-aggregate_parents">#aggregate_parents — RubyProf::MethodInfo</a>
|
219
|
+
|
220
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-application">#application — RubyProf::CallStackPrinter</a>
|
221
|
+
|
222
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-arguments">#arguments — RubyProf::CallStackPrinter</a>
|
223
|
+
|
224
|
+
<li class="method"><a href="Rack/RubyProf.html#method-i-call">#call — Rack::RubyProf</a>
|
225
|
+
|
226
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-call_sequence">#call_sequence — RubyProf::CallInfo</a>
|
227
|
+
|
228
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-called">#called — RubyProf::AggregateCallInfo</a>
|
229
|
+
|
230
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-called">#called — RubyProf::MethodInfo</a>
|
231
|
+
|
232
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-children">#children — RubyProf::AggregateCallInfo</a>
|
233
|
+
|
234
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-children">#children — RubyProf::MethodInfo</a>
|
235
|
+
|
236
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-children_time">#children_time — RubyProf::CallInfo</a>
|
237
|
+
|
238
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-children_time">#children_time — RubyProf::AggregateCallInfo</a>
|
239
|
+
|
240
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-children_time">#children_time — RubyProf::MethodInfo</a>
|
241
|
+
|
242
|
+
<li class="method"><a href="RubyProf/ProfileTask.html#method-i-clean_output_directory">#clean_output_directory — RubyProf::ProfileTask</a>
|
243
|
+
|
244
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-color">#color — RubyProf::CallStackPrinter</a>
|
245
|
+
|
246
|
+
<li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-convert">#convert — RubyProf::CallTreePrinter</a>
|
247
|
+
|
248
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-copy_image_files">#copy_image_files — RubyProf::CallStackPrinter</a>
|
249
|
+
|
250
|
+
<li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-create_link">#create_link — RubyProf::GraphHtmlPrinter</a>
|
251
|
+
|
252
|
+
<li class="method"><a href="RubyProf/ProfileTask.html#method-i-create_output_directory">#create_output_directory — RubyProf::ProfileTask</a>
|
253
|
+
|
254
|
+
<li class="method"><a href="RubyProf/ProfileTask.html#method-i-define">#define — RubyProf::ProfileTask</a>
|
255
|
+
|
256
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-detect_recursion">#detect_recursion — RubyProf::Profile</a>
|
257
|
+
|
258
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-dump">#dump — RubyProf::CallStackPrinter</a>
|
259
|
+
|
260
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-eliminate-21">#eliminate! — RubyProf::CallInfo</a>
|
261
|
+
|
262
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-eliminate-21">#eliminate! — RubyProf::MethodInfo</a>
|
263
|
+
|
264
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-eliminate_methods-21">#eliminate_methods! — RubyProf::Profile</a>
|
265
|
+
|
266
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-expansion">#expansion — RubyProf::CallStackPrinter</a>
|
267
|
+
|
268
|
+
<li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-file">#file — RubyProf::CallTreePrinter</a>
|
269
|
+
|
270
|
+
<li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-file_link">#file_link — RubyProf::GraphHtmlPrinter</a>
|
271
|
+
|
272
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-find_call">#find_call — RubyProf::CallInfo</a>
|
273
|
+
|
274
|
+
<li class="method"><a href="RubyProf/MultiPrinter.html#method-i-flat_profile">#flat_profile — RubyProf::MultiPrinter</a>
|
275
|
+
|
276
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-format_profile_total">#format_profile_total — RubyProf::Test</a>
|
277
|
+
|
278
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-graph_link">#graph_link — RubyProf::CallStackPrinter</a>
|
279
|
+
|
280
|
+
<li class="method"><a href="RubyProf/MultiPrinter.html#method-i-graph_profile">#graph_profile — RubyProf::MultiPrinter</a>
|
281
|
+
|
282
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-line">#line — RubyProf::AggregateCallInfo</a>
|
283
|
+
|
284
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-link">#link — RubyProf::CallStackPrinter</a>
|
285
|
+
|
286
|
+
<li class="method"><a href="RubyProf/Cmd.html#method-i-load_pre_execs">#load_pre_execs — RubyProf::Cmd</a>
|
287
|
+
|
288
|
+
<li class="method"><a href="RubyProf/Cmd.html#method-i-load_pre_libs">#load_pre_libs — RubyProf::Cmd</a>
|
289
|
+
|
290
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-measure_mode_name">#measure_mode_name — RubyProf::Test</a>
|
291
|
+
|
292
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-merge_call_tree">#merge_call_tree — RubyProf::CallInfo</a>
|
293
|
+
|
294
|
+
<li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-method_href">#method_href — RubyProf::GraphHtmlPrinter</a>
|
295
|
+
|
296
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-method_href">#method_href — RubyProf::CallStackPrinter</a>
|
297
|
+
|
298
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-method_name">#method_name — RubyProf::AbstractPrinter</a>
|
299
|
+
|
300
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-min_depth">#min_depth — RubyProf::MethodInfo</a>
|
301
|
+
|
302
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-min_percent">#min_percent — RubyProf::AbstractPrinter</a>
|
303
|
+
|
304
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-name">#name — RubyProf::CallStackPrinter</a>
|
305
|
+
|
306
|
+
<li class="method"><a href="RubyProf/Cmd.html#method-i-option_parser">#option_parser — RubyProf::Cmd</a>
|
307
|
+
|
308
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-output_dir">#output_dir — RubyProf::Test</a>
|
309
|
+
|
310
|
+
<li class="method"><a href="RubyProf/ProfileTask.html#method-i-output_directory">#output_directory — RubyProf::ProfileTask</a>
|
311
|
+
|
312
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-parent">#parent — RubyProf::AggregateCallInfo</a>
|
313
|
+
|
314
|
+
<li class="method"><a href="RubyProf/Cmd.html#method-i-parse_args">#parse_args — RubyProf::Cmd</a>
|
315
|
+
|
316
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-pause">#pause — RubyProf::Profile</a>
|
317
|
+
|
318
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-paused-3F">#paused? — RubyProf::Profile</a>
|
319
|
+
|
320
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-post_process">#post_process — RubyProf::Profile</a>
|
321
|
+
|
322
|
+
<li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print">#print — RubyProf::CallTreePrinter</a>
|
323
|
+
|
324
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print">#print — RubyProf::AbstractPrinter</a>
|
325
|
+
|
326
|
+
<li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-print">#print — RubyProf::GraphHtmlPrinter</a>
|
327
|
+
|
328
|
+
<li class="method"><a href="RubyProf/DotPrinter.html#method-i-print">#print — RubyProf::DotPrinter</a>
|
329
|
+
|
330
|
+
<li class="method"><a href="Rack/RubyProf.html#method-i-print">#print — Rack::RubyProf</a>
|
331
|
+
|
332
|
+
<li class="method"><a href="RubyProf/MultiPrinter.html#method-i-print">#print — RubyProf::MultiPrinter</a>
|
333
|
+
|
334
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print">#print — RubyProf::CallStackPrinter</a>
|
335
|
+
|
336
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_commands">#print_commands — RubyProf::CallStackPrinter</a>
|
337
|
+
|
338
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_css">#print_css — RubyProf::CallStackPrinter</a>
|
339
|
+
|
340
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_file">#print_file — RubyProf::AbstractPrinter</a>
|
341
|
+
|
342
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_footer">#print_footer — RubyProf::CallStackPrinter</a>
|
343
|
+
|
344
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_footer">#print_footer — RubyProf::AbstractPrinter</a>
|
345
|
+
|
346
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_header">#print_header — RubyProf::CallStackPrinter</a>
|
347
|
+
|
348
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_header">#print_header — RubyProf::AbstractPrinter</a>
|
349
|
+
|
350
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_help">#print_help — RubyProf::CallStackPrinter</a>
|
351
|
+
|
352
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_java_script">#print_java_script — RubyProf::CallStackPrinter</a>
|
353
|
+
|
354
|
+
<li class="method"><a href="RubyProf/FlatPrinterWithLineNumbers.html#method-i-print_methods">#print_methods — RubyProf::FlatPrinterWithLineNumbers</a>
|
355
|
+
|
356
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_stack">#print_stack — RubyProf::CallStackPrinter</a>
|
357
|
+
|
358
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_thread">#print_thread — RubyProf::AbstractPrinter</a>
|
359
|
+
|
360
|
+
<li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print_thread">#print_thread — RubyProf::CallTreePrinter</a>
|
361
|
+
|
362
|
+
<li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print_threads">#print_threads — RubyProf::CallTreePrinter</a>
|
363
|
+
|
364
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_threads">#print_threads — RubyProf::AbstractPrinter</a>
|
365
|
+
|
366
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_title_bar">#print_title_bar — RubyProf::CallStackPrinter</a>
|
367
|
+
|
368
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-recursive-3F">#recursive? — RubyProf::MethodInfo</a>
|
369
|
+
|
370
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-report_filename">#report_filename — RubyProf::Test</a>
|
371
|
+
|
372
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-report_profile">#report_profile — RubyProf::Test</a>
|
373
|
+
|
374
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-resume">#resume — RubyProf::Profile</a>
|
375
|
+
|
376
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-root-3F">#root? — RubyProf::MethodInfo</a>
|
377
|
+
|
378
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-root-3F">#root? — RubyProf::CallInfo</a>
|
379
|
+
|
380
|
+
<li class="method"><a href="RubyProf/Cmd.html#method-i-run">#run — RubyProf::Cmd</a>
|
381
|
+
|
382
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-run">#run — RubyProf::Test</a>
|
383
|
+
|
384
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-run_profile">#run_profile — RubyProf::Test</a>
|
385
|
+
|
386
|
+
<li class="method"><a href="RubyProf/ProfileTask.html#method-i-run_script">#run_script — RubyProf::ProfileTask</a>
|
387
|
+
|
388
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-run_test">#run_test — RubyProf::Test</a>
|
389
|
+
|
390
|
+
<li class="method"><a href="RubyProf/Test.html#method-i-run_warmup">#run_warmup — RubyProf::Test</a>
|
391
|
+
|
392
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-running-3F">#running? — RubyProf::Profile</a>
|
393
|
+
|
394
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-self_time">#self_time — RubyProf::AggregateCallInfo</a>
|
395
|
+
|
396
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-self_time">#self_time — RubyProf::MethodInfo</a>
|
397
|
+
|
398
|
+
<li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-setup_options">#setup_options — RubyProf::GraphHtmlPrinter</a>
|
399
|
+
|
400
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-setup_options">#setup_options — RubyProf::AbstractPrinter</a>
|
401
|
+
|
402
|
+
<li class="method"><a href="RubyProf/Cmd.html#method-i-setup_options">#setup_options — RubyProf::Cmd</a>
|
403
|
+
|
404
|
+
<li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-sort_method">#sort_method — RubyProf::AbstractPrinter</a>
|
405
|
+
|
406
|
+
<li class="method"><a href="RubyProf/FlatPrinter.html#method-i-sort_method">#sort_method — RubyProf::FlatPrinter</a>
|
407
|
+
|
408
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-stack">#stack — RubyProf::CallInfo</a>
|
409
|
+
|
410
|
+
<li class="method"><a href="RubyProf/MultiPrinter.html#method-i-stack_profile">#stack_profile — RubyProf::MultiPrinter</a>
|
411
|
+
|
412
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-start">#start — RubyProf::Profile</a>
|
413
|
+
|
414
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-stop">#stop — RubyProf::Profile</a>
|
415
|
+
|
416
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-sum">#sum — RubyProf::CallStackPrinter</a>
|
417
|
+
|
418
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-target">#target — RubyProf::AggregateCallInfo</a>
|
419
|
+
|
420
|
+
<li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-template">#template — RubyProf::GraphHtmlPrinter</a>
|
421
|
+
|
422
|
+
<li class="method"><a href="RubyProf/Profile.html#method-i-threads">#threads — RubyProf::Profile</a>
|
423
|
+
|
424
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-threshold">#threshold — RubyProf::CallStackPrinter</a>
|
425
|
+
|
426
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-title">#title — RubyProf::CallStackPrinter</a>
|
427
|
+
|
428
|
+
<li class="method"><a href="RubyProf/CallInfo.html#method-i-to_s">#to_s — RubyProf::CallInfo</a>
|
429
|
+
|
430
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-to_s">#to_s — RubyProf::AggregateCallInfo</a>
|
431
|
+
|
432
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-to_s">#to_s — RubyProf::MethodInfo</a>
|
433
|
+
|
434
|
+
<li class="method"><a href="RubyProf/Thread.html#method-i-top_methods">#top_methods — RubyProf::Thread</a>
|
435
|
+
|
436
|
+
<li class="method"><a href="RubyProf/Thread.html#method-i-total_time">#total_time — RubyProf::Thread</a>
|
437
|
+
|
438
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-total_time">#total_time — RubyProf::MethodInfo</a>
|
439
|
+
|
440
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-total_time">#total_time — RubyProf::AggregateCallInfo</a>
|
441
|
+
|
442
|
+
<li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-total_time">#total_time — RubyProf::CallStackPrinter</a>
|
443
|
+
|
444
|
+
<li class="method"><a href="RubyProf/MultiPrinter.html#method-i-tree_profile">#tree_profile — RubyProf::MultiPrinter</a>
|
445
|
+
|
446
|
+
<li class="method"><a href="RubyProf/CallInfoVisitor.html#method-i-visit">#visit — RubyProf::CallInfoVisitor</a>
|
447
|
+
|
448
|
+
<li class="method"><a href="RubyProf/CallInfoVisitor.html#method-i-visit_call_info">#visit_call_info — RubyProf::CallInfoVisitor</a>
|
449
|
+
|
450
|
+
<li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-wait_time">#wait_time — RubyProf::AggregateCallInfo</a>
|
451
|
+
|
452
|
+
<li class="method"><a href="RubyProf/MethodInfo.html#method-i-wait_time">#wait_time — 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
|
+
|