ruby-prof 0.17.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
 - data/CHANGES +500 -482
 - data/LICENSE +24 -24
 - data/README.rdoc +487 -485
 - data/Rakefile +113 -113
 - data/bin/ruby-prof +345 -345
 - data/bin/ruby-prof-check-trace +45 -45
 - data/examples/flat.txt +50 -50
 - data/examples/graph.dot +84 -84
 - data/examples/graph.html +823 -823
 - data/examples/graph.txt +139 -139
 - data/examples/multi.flat.txt +23 -23
 - data/examples/multi.graph.html +760 -760
 - data/examples/multi.grind.dat +114 -114
 - data/examples/multi.stack.html +547 -547
 - data/examples/stack.html +547 -547
 - data/ext/ruby_prof/extconf.rb +68 -68
 - data/ext/ruby_prof/rp_call_info.c +425 -425
 - data/ext/ruby_prof/rp_call_info.h +53 -53
 - data/ext/ruby_prof/rp_measure.c +40 -40
 - data/ext/ruby_prof/rp_measure.h +45 -45
 - data/ext/ruby_prof/rp_measure_allocations.c +76 -76
 - data/ext/ruby_prof/rp_measure_cpu_time.c +136 -136
 - data/ext/ruby_prof/rp_measure_gc_runs.c +73 -73
 - data/ext/ruby_prof/rp_measure_gc_time.c +60 -60
 - data/ext/ruby_prof/rp_measure_memory.c +77 -77
 - data/ext/ruby_prof/rp_measure_process_time.c +71 -71
 - data/ext/ruby_prof/rp_measure_wall_time.c +45 -45
 - data/ext/ruby_prof/rp_method.c +630 -636
 - data/ext/ruby_prof/rp_method.h +75 -75
 - data/ext/ruby_prof/rp_stack.c +173 -173
 - data/ext/ruby_prof/rp_stack.h +63 -63
 - data/ext/ruby_prof/rp_thread.c +277 -276
 - data/ext/ruby_prof/rp_thread.h +27 -27
 - data/ext/ruby_prof/ruby_prof.c +794 -774
 - data/ext/ruby_prof/ruby_prof.h +60 -59
 - data/ext/ruby_prof/vc/ruby_prof.sln +20 -21
 - data/ext/ruby_prof/vc/{ruby_prof_20.vcxproj → ruby_prof.vcxproj} +31 -0
 - data/lib/ruby-prof.rb +68 -68
 - data/lib/ruby-prof/aggregate_call_info.rb +76 -76
 - data/lib/ruby-prof/assets/call_stack_printer.css.html +116 -116
 - data/lib/ruby-prof/assets/call_stack_printer.js.html +384 -384
 - data/lib/ruby-prof/call_info.rb +115 -115
 - data/lib/ruby-prof/call_info_visitor.rb +40 -40
 - data/lib/ruby-prof/compatibility.rb +179 -178
 - data/lib/ruby-prof/method_info.rb +121 -121
 - data/lib/ruby-prof/printers/abstract_printer.rb +104 -103
 - data/lib/ruby-prof/printers/call_info_printer.rb +41 -41
 - data/lib/ruby-prof/printers/call_stack_printer.rb +265 -265
 - data/lib/ruby-prof/printers/call_tree_printer.rb +143 -143
 - data/lib/ruby-prof/printers/dot_printer.rb +132 -132
 - data/lib/ruby-prof/printers/flat_printer.rb +70 -70
 - data/lib/ruby-prof/printers/flat_printer_with_line_numbers.rb +83 -83
 - data/lib/ruby-prof/printers/graph_html_printer.rb +249 -249
 - data/lib/ruby-prof/printers/graph_printer.rb +116 -116
 - data/lib/ruby-prof/printers/multi_printer.rb +84 -84
 - data/lib/ruby-prof/profile.rb +26 -26
 - data/lib/ruby-prof/profile/exclude_common_methods.rb +207 -201
 - data/lib/ruby-prof/profile/legacy_method_elimination.rb +50 -49
 - data/lib/ruby-prof/rack.rb +174 -174
 - data/lib/ruby-prof/task.rb +147 -147
 - data/lib/ruby-prof/thread.rb +35 -35
 - data/lib/ruby-prof/version.rb +3 -3
 - data/lib/unprof.rb +10 -10
 - data/ruby-prof.gemspec +58 -58
 - data/test/abstract_printer_test.rb +53 -0
 - data/test/aggregate_test.rb +136 -136
 - data/test/basic_test.rb +128 -128
 - data/test/block_test.rb +74 -74
 - data/test/call_info_test.rb +78 -78
 - data/test/call_info_visitor_test.rb +31 -31
 - data/test/duplicate_names_test.rb +32 -32
 - data/test/dynamic_method_test.rb +55 -55
 - data/test/enumerable_test.rb +21 -21
 - data/test/exceptions_test.rb +24 -16
 - data/test/exclude_methods_test.rb +146 -146
 - data/test/exclude_threads_test.rb +53 -53
 - data/test/fiber_test.rb +79 -79
 - data/test/issue137_test.rb +63 -63
 - data/test/line_number_test.rb +80 -80
 - data/test/measure_allocations_test.rb +26 -26
 - data/test/measure_cpu_time_test.rb +212 -213
 - data/test/measure_gc_runs_test.rb +32 -32
 - data/test/measure_gc_time_test.rb +36 -36
 - data/test/measure_memory_test.rb +33 -33
 - data/test/measure_process_time_test.rb +61 -63
 - data/test/measure_wall_time_test.rb +255 -255
 - data/test/method_elimination_test.rb +84 -84
 - data/test/module_test.rb +45 -45
 - data/test/multi_printer_test.rb +104 -104
 - data/test/no_method_class_test.rb +15 -15
 - data/test/pause_resume_test.rb +166 -166
 - data/test/prime.rb +54 -54
 - data/test/printers_test.rb +275 -275
 - data/test/printing_recursive_graph_test.rb +127 -127
 - data/test/rack_test.rb +157 -157
 - data/test/recursive_test.rb +215 -215
 - data/test/singleton_test.rb +38 -38
 - data/test/stack_printer_test.rb +77 -78
 - data/test/stack_test.rb +138 -138
 - data/test/start_stop_test.rb +112 -112
 - data/test/test_helper.rb +267 -275
 - data/test/thread_test.rb +187 -187
 - data/test/unique_call_path_test.rb +202 -202
 - data/test/yarv_test.rb +55 -55
 - metadata +17 -96
 - data/doc/LICENSE.html +0 -115
 - data/doc/README_rdoc.html +0 -637
 - data/doc/Rack.html +0 -96
 - data/doc/Rack/RubyProf.html +0 -233
 - data/doc/Rack/RubyProf/RackProfiler.html +0 -343
 - data/doc/RubyProf.html +0 -974
 - data/doc/RubyProf/AbstractPrinter.html +0 -625
 - data/doc/RubyProf/AggregateCallInfo.html +0 -552
 - data/doc/RubyProf/CallInfo.html +0 -579
 - data/doc/RubyProf/CallInfoPrinter.html +0 -121
 - data/doc/RubyProf/CallInfoVisitor.html +0 -199
 - data/doc/RubyProf/CallStackPrinter.html +0 -1127
 - data/doc/RubyProf/CallTreePrinter.html +0 -725
 - data/doc/RubyProf/Cmd.html +0 -637
 - data/doc/RubyProf/DeprecationWarnings.html +0 -148
 - data/doc/RubyProf/DotPrinter.html +0 -258
 - data/doc/RubyProf/FlatPrinter.html +0 -164
 - data/doc/RubyProf/FlatPrinterWithLineNumbers.html +0 -210
 - data/doc/RubyProf/GraphHtmlPrinter.html +0 -558
 - data/doc/RubyProf/GraphPrinter.html +0 -140
 - data/doc/RubyProf/MethodInfo.html +0 -676
 - data/doc/RubyProf/MultiPrinter.html +0 -574
 - data/doc/RubyProf/Profile.html +0 -908
 - data/doc/RubyProf/Profile/ExcludeCommonMethods.html +0 -411
 - data/doc/RubyProf/Profile/LegacyMethodElimination.html +0 -158
 - data/doc/RubyProf/ProfileTask.html +0 -491
 - data/doc/RubyProf/Thread.html +0 -275
 - data/doc/created.rid +0 -33
 - data/doc/css/fonts.css +0 -167
 - data/doc/css/rdoc.css +0 -590
 - data/doc/examples/flat_txt.html +0 -139
 - data/doc/examples/graph_html.html +0 -910
 - data/doc/examples/graph_txt.html +0 -248
 - data/doc/fonts/Lato-Light.ttf +0 -0
 - data/doc/fonts/Lato-LightItalic.ttf +0 -0
 - data/doc/fonts/Lato-Regular.ttf +0 -0
 - data/doc/fonts/Lato-RegularItalic.ttf +0 -0
 - data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
 - data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
 - data/doc/images/add.png +0 -0
 - data/doc/images/arrow_up.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 +0 -666
 - data/doc/js/darkfish.js +0 -161
 - data/doc/js/jquery.js +0 -4
 - data/doc/js/navigation.js +0 -142
 - data/doc/js/navigation.js.gz +0 -0
 - data/doc/js/search.js +0 -109
 - data/doc/js/search_index.js +0 -1
 - data/doc/js/search_index.js.gz +0 -0
 - data/doc/js/searcher.js +0 -229
 - data/doc/js/searcher.js.gz +0 -0
 - data/doc/table_of_contents.html +0 -1052
 - data/examples/cachegrind.out.1 +0 -114
 - data/examples/cachegrind.out.1.32313213 +0 -114
 - data/ext/ruby_prof/vc/ruby_prof_18.vcxproj +0 -108
 - data/ext/ruby_prof/vc/ruby_prof_19.vcxproj +0 -110
 
    
        data/doc/js/searcher.js.gz
    DELETED
    
    | 
         Binary file 
     | 
    
        data/doc/table_of_contents.html
    DELETED
    
    | 
         @@ -1,1052 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            <!DOCTYPE html>
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            <html>
         
     | 
| 
       4 
     | 
    
         
            -
            <head>
         
     | 
| 
       5 
     | 
    
         
            -
            <meta charset="UTF-8">
         
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
            <title>Table of Contents - ruby-prof</title>
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
            <script type="text/javascript">
         
     | 
| 
       10 
     | 
    
         
            -
              var rdoc_rel_prefix = "./";
         
     | 
| 
       11 
     | 
    
         
            -
              var index_rel_prefix = "./";
         
     | 
| 
       12 
     | 
    
         
            -
            </script>
         
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
            <script src="./js/jquery.js"></script>
         
     | 
| 
       15 
     | 
    
         
            -
            <script src="./js/darkfish.js"></script>
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
            <link href="./css/fonts.css" rel="stylesheet">
         
     | 
| 
       18 
     | 
    
         
            -
            <link href="./css/rdoc.css" rel="stylesheet">
         
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
            <body id="top" class="table-of-contents">
         
     | 
| 
       23 
     | 
    
         
            -
            <main role="main">
         
     | 
| 
       24 
     | 
    
         
            -
            <h1 class="class">Table of Contents - ruby-prof</h1>
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
            <h2 id="pages">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 
     | 
    
         
            -
                <ul>
         
     | 
| 
       35 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-ruby-prof">ruby-prof</a>
         
     | 
| 
       36 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Overview">Overview</a>
         
     | 
| 
       37 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Requirements">Requirements</a>
         
     | 
| 
       38 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Install">Install</a>
         
     | 
| 
       39 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Usage">Usage</a>
         
     | 
| 
       40 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-ruby-prof+Executable">ruby-prof Executable</a>
         
     | 
| 
       41 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-ruby-prof+Convenience+API">ruby-prof Convenience API</a>
         
     | 
| 
       42 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Profiling+Selected+Threads+-28Core+API-29">Profiling Selected Threads (Core API)</a>
         
     | 
| 
       43 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Method+Elimination+-28Deprecated-29">Method Elimination (Deprecated)</a>
         
     | 
| 
       44 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Method+Exclusion">Method Exclusion</a>
         
     | 
| 
       45 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Profiling+Rails">Profiling Rails</a>
         
     | 
| 
       46 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Reports">Reports</a>
         
     | 
| 
       47 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Printers">Printers</a>
         
     | 
| 
       48 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Measurements">Measurements</a>
         
     | 
| 
       49 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Patching+ruby">Patching ruby</a>
         
     | 
| 
       50 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Measure+modes">Measure modes</a>
         
     | 
| 
       51 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Multi-threaded+Applications">Multi-threaded Applications</a>
         
     | 
| 
       52 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Performance">Performance</a>
         
     | 
| 
       53 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Editing+links">Editing links</a>
         
     | 
| 
       54 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-License">License</a>
         
     | 
| 
       55 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-API+Documentation">API Documentation</a>
         
     | 
| 
       56 
     | 
    
         
            -
                  <li><a href="README_rdoc.html#label-Development">Development</a>
         
     | 
| 
       57 
     | 
    
         
            -
                </ul>
         
     | 
| 
       58 
     | 
    
         
            -
              </li>
         
     | 
| 
       59 
     | 
    
         
            -
                <li class="file">
         
     | 
| 
       60 
     | 
    
         
            -
                <a href="examples/flat_txt.html">flat</a>
         
     | 
| 
       61 
     | 
    
         
            -
             
     | 
| 
       62 
     | 
    
         
            -
                <ul>
         
     | 
| 
       63 
     | 
    
         
            -
                  <li><a href="examples/flat_txt.html#label-Flat+Profiles">Flat Profiles</a>
         
     | 
| 
       64 
     | 
    
         
            -
                </ul>
         
     | 
| 
       65 
     | 
    
         
            -
              </li>
         
     | 
| 
       66 
     | 
    
         
            -
                <li class="file">
         
     | 
| 
       67 
     | 
    
         
            -
                <a href="examples/graph_html.html">graph.html</a>
         
     | 
| 
       68 
     | 
    
         
            -
              </li>
         
     | 
| 
       69 
     | 
    
         
            -
                <li class="file">
         
     | 
| 
       70 
     | 
    
         
            -
                <a href="examples/graph_txt.html">graph</a>
         
     | 
| 
       71 
     | 
    
         
            -
             
     | 
| 
       72 
     | 
    
         
            -
                <ul>
         
     | 
| 
       73 
     | 
    
         
            -
                  <li><a href="examples/graph_txt.html#label-Graph+Profiles">Graph Profiles</a>
         
     | 
| 
       74 
     | 
    
         
            -
                  <li><a href="examples/graph_txt.html#label-Overview">Overview</a>
         
     | 
| 
       75 
     | 
    
         
            -
                  <li><a href="examples/graph_txt.html#label-Parents">Parents</a>
         
     | 
| 
       76 
     | 
    
         
            -
                  <li><a href="examples/graph_txt.html#label-Children">Children</a>
         
     | 
| 
       77 
     | 
    
         
            -
                </ul>
         
     | 
| 
       78 
     | 
    
         
            -
              </li>
         
     | 
| 
       79 
     | 
    
         
            -
              
         
     | 
| 
       80 
     | 
    
         
            -
            </ul>
         
     | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
       82 
     | 
    
         
            -
            <h2 id="classes">Classes and Modules</h2>
         
     | 
| 
       83 
     | 
    
         
            -
            <ul>
         
     | 
| 
       84 
     | 
    
         
            -
              <li class="module">
         
     | 
| 
       85 
     | 
    
         
            -
                <a href="Rack.html">Rack</a>
         
     | 
| 
       86 
     | 
    
         
            -
              </li>
         
     | 
| 
       87 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       88 
     | 
    
         
            -
                <a href="Rack/RubyProf.html">Rack::RubyProf</a>
         
     | 
| 
       89 
     | 
    
         
            -
              </li>
         
     | 
| 
       90 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       91 
     | 
    
         
            -
                <a href="Rack/RubyProf/RackProfiler.html">Rack::RubyProf::RackProfiler</a>
         
     | 
| 
       92 
     | 
    
         
            -
              </li>
         
     | 
| 
       93 
     | 
    
         
            -
              <li class="module">
         
     | 
| 
       94 
     | 
    
         
            -
                <a href="RubyProf.html">RubyProf</a>
         
     | 
| 
       95 
     | 
    
         
            -
              </li>
         
     | 
| 
       96 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       97 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html">RubyProf::AbstractPrinter</a>
         
     | 
| 
       98 
     | 
    
         
            -
              </li>
         
     | 
| 
       99 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       100 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html">RubyProf::AggregateCallInfo</a>
         
     | 
| 
       101 
     | 
    
         
            -
              </li>
         
     | 
| 
       102 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       103 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html">RubyProf::CallInfo</a>
         
     | 
| 
       104 
     | 
    
         
            -
              </li>
         
     | 
| 
       105 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       106 
     | 
    
         
            -
                <a href="RubyProf/CallInfoPrinter.html">RubyProf::CallInfoPrinter</a>
         
     | 
| 
       107 
     | 
    
         
            -
              </li>
         
     | 
| 
       108 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       109 
     | 
    
         
            -
                <a href="RubyProf/CallInfoVisitor.html">RubyProf::CallInfoVisitor</a>
         
     | 
| 
       110 
     | 
    
         
            -
              </li>
         
     | 
| 
       111 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       112 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html">RubyProf::CallStackPrinter</a>
         
     | 
| 
       113 
     | 
    
         
            -
              </li>
         
     | 
| 
       114 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       115 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html">RubyProf::CallTreePrinter</a>
         
     | 
| 
       116 
     | 
    
         
            -
              </li>
         
     | 
| 
       117 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       118 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html">RubyProf::Cmd</a>
         
     | 
| 
       119 
     | 
    
         
            -
              </li>
         
     | 
| 
       120 
     | 
    
         
            -
              <li class="module">
         
     | 
| 
       121 
     | 
    
         
            -
                <a href="RubyProf/DeprecationWarnings.html">RubyProf::DeprecationWarnings</a>
         
     | 
| 
       122 
     | 
    
         
            -
              </li>
         
     | 
| 
       123 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       124 
     | 
    
         
            -
                <a href="RubyProf/DotPrinter.html">RubyProf::DotPrinter</a>
         
     | 
| 
       125 
     | 
    
         
            -
              </li>
         
     | 
| 
       126 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       127 
     | 
    
         
            -
                <a href="RubyProf/FlatPrinter.html">RubyProf::FlatPrinter</a>
         
     | 
| 
       128 
     | 
    
         
            -
              </li>
         
     | 
| 
       129 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       130 
     | 
    
         
            -
                <a href="RubyProf/FlatPrinterWithLineNumbers.html">RubyProf::FlatPrinterWithLineNumbers</a>
         
     | 
| 
       131 
     | 
    
         
            -
              </li>
         
     | 
| 
       132 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       133 
     | 
    
         
            -
                <a href="RubyProf/GraphHtmlPrinter.html">RubyProf::GraphHtmlPrinter</a>
         
     | 
| 
       134 
     | 
    
         
            -
              </li>
         
     | 
| 
       135 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       136 
     | 
    
         
            -
                <a href="RubyProf/GraphPrinter.html">RubyProf::GraphPrinter</a>
         
     | 
| 
       137 
     | 
    
         
            -
              </li>
         
     | 
| 
       138 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       139 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html">RubyProf::MethodInfo</a>
         
     | 
| 
       140 
     | 
    
         
            -
              </li>
         
     | 
| 
       141 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       142 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html">RubyProf::MultiPrinter</a>
         
     | 
| 
       143 
     | 
    
         
            -
              </li>
         
     | 
| 
       144 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       145 
     | 
    
         
            -
                <a href="RubyProf/Profile.html">RubyProf::Profile</a>
         
     | 
| 
       146 
     | 
    
         
            -
              </li>
         
     | 
| 
       147 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       148 
     | 
    
         
            -
                <a href="RubyProf/Profile/ExcludeCommonMethods.html">RubyProf::Profile::ExcludeCommonMethods</a>
         
     | 
| 
       149 
     | 
    
         
            -
              </li>
         
     | 
| 
       150 
     | 
    
         
            -
              <li class="module">
         
     | 
| 
       151 
     | 
    
         
            -
                <a href="RubyProf/Profile/LegacyMethodElimination.html">RubyProf::Profile::LegacyMethodElimination</a>
         
     | 
| 
       152 
     | 
    
         
            -
              </li>
         
     | 
| 
       153 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       154 
     | 
    
         
            -
                <a href="RubyProf/ProfileTask.html">RubyProf::ProfileTask</a>
         
     | 
| 
       155 
     | 
    
         
            -
              </li>
         
     | 
| 
       156 
     | 
    
         
            -
              <li class="class">
         
     | 
| 
       157 
     | 
    
         
            -
                <a href="RubyProf/Thread.html">RubyProf::Thread</a>
         
     | 
| 
       158 
     | 
    
         
            -
              </li>
         
     | 
| 
       159 
     | 
    
         
            -
            </ul>
         
     | 
| 
       160 
     | 
    
         
            -
             
     | 
| 
       161 
     | 
    
         
            -
            <h2 id="methods">Methods</h2>
         
     | 
| 
       162 
     | 
    
         
            -
            <ul>
         
     | 
| 
       163 
     | 
    
         
            -
             
     | 
| 
       164 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       165 
     | 
    
         
            -
                <a href="RubyProf/Profile/ExcludeCommonMethods.html#method-c-apply-21">::apply!</a>
         
     | 
| 
       166 
     | 
    
         
            -
                —
         
     | 
| 
       167 
     | 
    
         
            -
                <span class="container">RubyProf::Profile::ExcludeCommonMethods</span>
         
     | 
| 
       168 
     | 
    
         
            -
             
     | 
| 
       169 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       170 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-cpu_frequency">::cpu_frequency</a>
         
     | 
| 
       171 
     | 
    
         
            -
                —
         
     | 
| 
       172 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       173 
     | 
    
         
            -
             
     | 
| 
       174 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       175 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-exclude_threads">::exclude_threads</a>
         
     | 
| 
       176 
     | 
    
         
            -
                —
         
     | 
| 
       177 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       178 
     | 
    
         
            -
             
     | 
| 
       179 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       180 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-exclude_threads-3D">::exclude_threads=</a>
         
     | 
| 
       181 
     | 
    
         
            -
                —
         
     | 
| 
       182 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       183 
     | 
    
         
            -
             
     | 
| 
       184 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       185 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-figure_measure_mode">::figure_measure_mode</a>
         
     | 
| 
       186 
     | 
    
         
            -
                —
         
     | 
| 
       187 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       188 
     | 
    
         
            -
             
     | 
| 
       189 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       190 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_allocations">::measure_allocations</a>
         
     | 
| 
       191 
     | 
    
         
            -
                —
         
     | 
| 
       192 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       193 
     | 
    
         
            -
             
     | 
| 
       194 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       195 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_cpu_time">::measure_cpu_time</a>
         
     | 
| 
       196 
     | 
    
         
            -
                —
         
     | 
| 
       197 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       198 
     | 
    
         
            -
             
     | 
| 
       199 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       200 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_gc_runs">::measure_gc_runs</a>
         
     | 
| 
       201 
     | 
    
         
            -
                —
         
     | 
| 
       202 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       203 
     | 
    
         
            -
             
     | 
| 
       204 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       205 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_gc_time">::measure_gc_time</a>
         
     | 
| 
       206 
     | 
    
         
            -
                —
         
     | 
| 
       207 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       208 
     | 
    
         
            -
             
     | 
| 
       209 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       210 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_memory">::measure_memory</a>
         
     | 
| 
       211 
     | 
    
         
            -
                —
         
     | 
| 
       212 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       213 
     | 
    
         
            -
             
     | 
| 
       214 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       215 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_mode">::measure_mode</a>
         
     | 
| 
       216 
     | 
    
         
            -
                —
         
     | 
| 
       217 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       218 
     | 
    
         
            -
             
     | 
| 
       219 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       220 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_mode-3D">::measure_mode=</a>
         
     | 
| 
       221 
     | 
    
         
            -
                —
         
     | 
| 
       222 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       223 
     | 
    
         
            -
             
     | 
| 
       224 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       225 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_mode_string">::measure_mode_string</a>
         
     | 
| 
       226 
     | 
    
         
            -
                —
         
     | 
| 
       227 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       228 
     | 
    
         
            -
             
     | 
| 
       229 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       230 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_process_time">::measure_process_time</a>
         
     | 
| 
       231 
     | 
    
         
            -
                —
         
     | 
| 
       232 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       233 
     | 
    
         
            -
             
     | 
| 
       234 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       235 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-measure_wall_time">::measure_wall_time</a>
         
     | 
| 
       236 
     | 
    
         
            -
                —
         
     | 
| 
       237 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       238 
     | 
    
         
            -
             
     | 
| 
       239 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       240 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-c-needs_dir-3F">::needs_dir?</a>
         
     | 
| 
       241 
     | 
    
         
            -
                —
         
     | 
| 
       242 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       243 
     | 
    
         
            -
             
     | 
| 
       244 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       245 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-c-needs_dir-3F">::needs_dir?</a>
         
     | 
| 
       246 
     | 
    
         
            -
                —
         
     | 
| 
       247 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       248 
     | 
    
         
            -
             
     | 
| 
       249 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       250 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-c-needs_dir-3F">::needs_dir?</a>
         
     | 
| 
       251 
     | 
    
         
            -
                —
         
     | 
| 
       252 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       253 
     | 
    
         
            -
             
     | 
| 
       254 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       255 
     | 
    
         
            -
                <a href="RubyProf/ProfileTask.html#method-c-new">::new</a>
         
     | 
| 
       256 
     | 
    
         
            -
                —
         
     | 
| 
       257 
     | 
    
         
            -
                <span class="container">RubyProf::ProfileTask</span>
         
     | 
| 
       258 
     | 
    
         
            -
             
     | 
| 
       259 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       260 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html#method-c-new">::new</a>
         
     | 
| 
       261 
     | 
    
         
            -
                —
         
     | 
| 
       262 
     | 
    
         
            -
                <span class="container">RubyProf::Cmd</span>
         
     | 
| 
       263 
     | 
    
         
            -
             
     | 
| 
       264 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       265 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-c-new">::new</a>
         
     | 
| 
       266 
     | 
    
         
            -
                —
         
     | 
| 
       267 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       268 
     | 
    
         
            -
             
     | 
| 
       269 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       270 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-c-new">::new</a>
         
     | 
| 
       271 
     | 
    
         
            -
                —
         
     | 
| 
       272 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       273 
     | 
    
         
            -
             
     | 
| 
       274 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       275 
     | 
    
         
            -
                <a href="RubyProf/Profile/ExcludeCommonMethods.html#method-c-new">::new</a>
         
     | 
| 
       276 
     | 
    
         
            -
                —
         
     | 
| 
       277 
     | 
    
         
            -
                <span class="container">RubyProf::Profile::ExcludeCommonMethods</span>
         
     | 
| 
       278 
     | 
    
         
            -
             
     | 
| 
       279 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       280 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-c-new">::new</a>
         
     | 
| 
       281 
     | 
    
         
            -
                —
         
     | 
| 
       282 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       283 
     | 
    
         
            -
             
     | 
| 
       284 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       285 
     | 
    
         
            -
                <a href="RubyProf/DotPrinter.html#method-c-new">::new</a>
         
     | 
| 
       286 
     | 
    
         
            -
                —
         
     | 
| 
       287 
     | 
    
         
            -
                <span class="container">RubyProf::DotPrinter</span>
         
     | 
| 
       288 
     | 
    
         
            -
             
     | 
| 
       289 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       290 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-c-new">::new</a>
         
     | 
| 
       291 
     | 
    
         
            -
                —
         
     | 
| 
       292 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       293 
     | 
    
         
            -
             
     | 
| 
       294 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       295 
     | 
    
         
            -
                <a href="RubyProf/CallInfoVisitor.html#method-c-new">::new</a>
         
     | 
| 
       296 
     | 
    
         
            -
                —
         
     | 
| 
       297 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfoVisitor</span>
         
     | 
| 
       298 
     | 
    
         
            -
             
     | 
| 
       299 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       300 
     | 
    
         
            -
                <a href="Rack/RubyProf.html#method-c-new">::new</a>
         
     | 
| 
       301 
     | 
    
         
            -
                —
         
     | 
| 
       302 
     | 
    
         
            -
                <span class="container">Rack::RubyProf</span>
         
     | 
| 
       303 
     | 
    
         
            -
             
     | 
| 
       304 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       305 
     | 
    
         
            -
                <a href="Rack/RubyProf/RackProfiler.html#method-c-new">::new</a>
         
     | 
| 
       306 
     | 
    
         
            -
                —
         
     | 
| 
       307 
     | 
    
         
            -
                <span class="container">Rack::RubyProf::RackProfiler</span>
         
     | 
| 
       308 
     | 
    
         
            -
             
     | 
| 
       309 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       310 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-pause">::pause</a>
         
     | 
| 
       311 
     | 
    
         
            -
                —
         
     | 
| 
       312 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       313 
     | 
    
         
            -
             
     | 
| 
       314 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       315 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-c-profile">::profile</a>
         
     | 
| 
       316 
     | 
    
         
            -
                —
         
     | 
| 
       317 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       318 
     | 
    
         
            -
             
     | 
| 
       319 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       320 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-profile">::profile</a>
         
     | 
| 
       321 
     | 
    
         
            -
                —
         
     | 
| 
       322 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       323 
     | 
    
         
            -
             
     | 
| 
       324 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       325 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-resume">::resume</a>
         
     | 
| 
       326 
     | 
    
         
            -
                —
         
     | 
| 
       327 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       328 
     | 
    
         
            -
             
     | 
| 
       329 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       330 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-c-roots_of">::roots_of</a>
         
     | 
| 
       331 
     | 
    
         
            -
                —
         
     | 
| 
       332 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       333 
     | 
    
         
            -
             
     | 
| 
       334 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       335 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-running-3F">::running?</a>
         
     | 
| 
       336 
     | 
    
         
            -
                —
         
     | 
| 
       337 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       338 
     | 
    
         
            -
             
     | 
| 
       339 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       340 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-start">::start</a>
         
     | 
| 
       341 
     | 
    
         
            -
                —
         
     | 
| 
       342 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       343 
     | 
    
         
            -
             
     | 
| 
       344 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       345 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-start_script">::start_script</a>
         
     | 
| 
       346 
     | 
    
         
            -
                —
         
     | 
| 
       347 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       348 
     | 
    
         
            -
             
     | 
| 
       349 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       350 
     | 
    
         
            -
                <a href="RubyProf.html#method-c-stop">::stop</a>
         
     | 
| 
       351 
     | 
    
         
            -
                —
         
     | 
| 
       352 
     | 
    
         
            -
                <span class="container">RubyProf</span>
         
     | 
| 
       353 
     | 
    
         
            -
             
     | 
| 
       354 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       355 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-3C-3D-3E">#<=></a>
         
     | 
| 
       356 
     | 
    
         
            -
                —
         
     | 
| 
       357 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       358 
     | 
    
         
            -
             
     | 
| 
       359 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       360 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-aggregate_children">#aggregate_children</a>
         
     | 
| 
       361 
     | 
    
         
            -
                —
         
     | 
| 
       362 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       363 
     | 
    
         
            -
             
     | 
| 
       364 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       365 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-aggregate_parents">#aggregate_parents</a>
         
     | 
| 
       366 
     | 
    
         
            -
                —
         
     | 
| 
       367 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       368 
     | 
    
         
            -
             
     | 
| 
       369 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       370 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-application">#application</a>
         
     | 
| 
       371 
     | 
    
         
            -
                —
         
     | 
| 
       372 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       373 
     | 
    
         
            -
             
     | 
| 
       374 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       375 
     | 
    
         
            -
                <a href="RubyProf/Profile/ExcludeCommonMethods.html#method-i-apply-21">#apply!</a>
         
     | 
| 
       376 
     | 
    
         
            -
                —
         
     | 
| 
       377 
     | 
    
         
            -
                <span class="container">RubyProf::Profile::ExcludeCommonMethods</span>
         
     | 
| 
       378 
     | 
    
         
            -
             
     | 
| 
       379 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       380 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-arguments">#arguments</a>
         
     | 
| 
       381 
     | 
    
         
            -
                —
         
     | 
| 
       382 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       383 
     | 
    
         
            -
             
     | 
| 
       384 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       385 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-base64_image">#base64_image</a>
         
     | 
| 
       386 
     | 
    
         
            -
                —
         
     | 
| 
       387 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       388 
     | 
    
         
            -
             
     | 
| 
       389 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       390 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-base_name">#base_name</a>
         
     | 
| 
       391 
     | 
    
         
            -
                —
         
     | 
| 
       392 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       393 
     | 
    
         
            -
             
     | 
| 
       394 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       395 
     | 
    
         
            -
                <a href="Rack/RubyProf.html#method-i-call">#call</a>
         
     | 
| 
       396 
     | 
    
         
            -
                —
         
     | 
| 
       397 
     | 
    
         
            -
                <span class="container">Rack::RubyProf</span>
         
     | 
| 
       398 
     | 
    
         
            -
             
     | 
| 
       399 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       400 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-call_sequence">#call_sequence</a>
         
     | 
| 
       401 
     | 
    
         
            -
                —
         
     | 
| 
       402 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       403 
     | 
    
         
            -
             
     | 
| 
       404 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       405 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-called">#called</a>
         
     | 
| 
       406 
     | 
    
         
            -
                —
         
     | 
| 
       407 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       408 
     | 
    
         
            -
             
     | 
| 
       409 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       410 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-called">#called</a>
         
     | 
| 
       411 
     | 
    
         
            -
                —
         
     | 
| 
       412 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       413 
     | 
    
         
            -
             
     | 
| 
       414 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       415 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-children">#children</a>
         
     | 
| 
       416 
     | 
    
         
            -
                —
         
     | 
| 
       417 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       418 
     | 
    
         
            -
             
     | 
| 
       419 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       420 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-children">#children</a>
         
     | 
| 
       421 
     | 
    
         
            -
                —
         
     | 
| 
       422 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       423 
     | 
    
         
            -
             
     | 
| 
       424 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       425 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-children_time">#children_time</a>
         
     | 
| 
       426 
     | 
    
         
            -
                —
         
     | 
| 
       427 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       428 
     | 
    
         
            -
             
     | 
| 
       429 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       430 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-children_time">#children_time</a>
         
     | 
| 
       431 
     | 
    
         
            -
                —
         
     | 
| 
       432 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       433 
     | 
    
         
            -
             
     | 
| 
       434 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       435 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-children_time">#children_time</a>
         
     | 
| 
       436 
     | 
    
         
            -
                —
         
     | 
| 
       437 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       438 
     | 
    
         
            -
             
     | 
| 
       439 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       440 
     | 
    
         
            -
                <a href="RubyProf/ProfileTask.html#method-i-clean_output_directory">#clean_output_directory</a>
         
     | 
| 
       441 
     | 
    
         
            -
                —
         
     | 
| 
       442 
     | 
    
         
            -
                <span class="container">RubyProf::ProfileTask</span>
         
     | 
| 
       443 
     | 
    
         
            -
             
     | 
| 
       444 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       445 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-color">#color</a>
         
     | 
| 
       446 
     | 
    
         
            -
                —
         
     | 
| 
       447 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       448 
     | 
    
         
            -
             
     | 
| 
       449 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       450 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-convert">#convert</a>
         
     | 
| 
       451 
     | 
    
         
            -
                —
         
     | 
| 
       452 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       453 
     | 
    
         
            -
             
     | 
| 
       454 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       455 
     | 
    
         
            -
                <a href="RubyProf/GraphHtmlPrinter.html#method-i-create_link">#create_link</a>
         
     | 
| 
       456 
     | 
    
         
            -
                —
         
     | 
| 
       457 
     | 
    
         
            -
                <span class="container">RubyProf::GraphHtmlPrinter</span>
         
     | 
| 
       458 
     | 
    
         
            -
             
     | 
| 
       459 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       460 
     | 
    
         
            -
                <a href="RubyProf/ProfileTask.html#method-i-create_output_directory">#create_output_directory</a>
         
     | 
| 
       461 
     | 
    
         
            -
                —
         
     | 
| 
       462 
     | 
    
         
            -
                <span class="container">RubyProf::ProfileTask</span>
         
     | 
| 
       463 
     | 
    
         
            -
             
     | 
| 
       464 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       465 
     | 
    
         
            -
                <a href="RubyProf/ProfileTask.html#method-i-define">#define</a>
         
     | 
| 
       466 
     | 
    
         
            -
                —
         
     | 
| 
       467 
     | 
    
         
            -
                <span class="container">RubyProf::ProfileTask</span>
         
     | 
| 
       468 
     | 
    
         
            -
             
     | 
| 
       469 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       470 
     | 
    
         
            -
                <a href="RubyProf/DeprecationWarnings.html#method-i-deprecation_warning">#deprecation_warning</a>
         
     | 
| 
       471 
     | 
    
         
            -
                —
         
     | 
| 
       472 
     | 
    
         
            -
                <span class="container">RubyProf::DeprecationWarnings</span>
         
     | 
| 
       473 
     | 
    
         
            -
             
     | 
| 
       474 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       475 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-descendent_of">#descendent_of</a>
         
     | 
| 
       476 
     | 
    
         
            -
                —
         
     | 
| 
       477 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       478 
     | 
    
         
            -
             
     | 
| 
       479 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       480 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-determine_event_specification_and_value_scale">#determine_event_specification_and_value_scale</a>
         
     | 
| 
       481 
     | 
    
         
            -
                —
         
     | 
| 
       482 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       483 
     | 
    
         
            -
             
     | 
| 
       484 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       485 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-dump">#dump</a>
         
     | 
| 
       486 
     | 
    
         
            -
                —
         
     | 
| 
       487 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       488 
     | 
    
         
            -
             
     | 
| 
       489 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       490 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-editor_uri">#editor_uri</a>
         
     | 
| 
       491 
     | 
    
         
            -
                —
         
     | 
| 
       492 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       493 
     | 
    
         
            -
             
     | 
| 
       494 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       495 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-eliminate-21">#eliminate!</a>
         
     | 
| 
       496 
     | 
    
         
            -
                —
         
     | 
| 
       497 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       498 
     | 
    
         
            -
             
     | 
| 
       499 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       500 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-eliminate-21">#eliminate!</a>
         
     | 
| 
       501 
     | 
    
         
            -
                —
         
     | 
| 
       502 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       503 
     | 
    
         
            -
             
     | 
| 
       504 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       505 
     | 
    
         
            -
                <a href="RubyProf/Profile/LegacyMethodElimination.html#method-i-eliminate_methods-21">#eliminate_methods!</a>
         
     | 
| 
       506 
     | 
    
         
            -
                —
         
     | 
| 
       507 
     | 
    
         
            -
                <span class="container">RubyProf::Profile::LegacyMethodElimination</span>
         
     | 
| 
       508 
     | 
    
         
            -
             
     | 
| 
       509 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       510 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-exclude_common_methods-21">#exclude_common_methods!</a>
         
     | 
| 
       511 
     | 
    
         
            -
                —
         
     | 
| 
       512 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       513 
     | 
    
         
            -
             
     | 
| 
       514 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       515 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-exclude_method-21">#exclude_method!</a>
         
     | 
| 
       516 
     | 
    
         
            -
                —
         
     | 
| 
       517 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       518 
     | 
    
         
            -
             
     | 
| 
       519 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       520 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-exclude_methods-21">#exclude_methods!</a>
         
     | 
| 
       521 
     | 
    
         
            -
                —
         
     | 
| 
       522 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       523 
     | 
    
         
            -
             
     | 
| 
       524 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       525 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-exclude_singleton_methods-21">#exclude_singleton_methods!</a>
         
     | 
| 
       526 
     | 
    
         
            -
                —
         
     | 
| 
       527 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       528 
     | 
    
         
            -
             
     | 
| 
       529 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       530 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-expansion">#expansion</a>
         
     | 
| 
       531 
     | 
    
         
            -
                —
         
     | 
| 
       532 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       533 
     | 
    
         
            -
             
     | 
| 
       534 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       535 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-file">#file</a>
         
     | 
| 
       536 
     | 
    
         
            -
                —
         
     | 
| 
       537 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       538 
     | 
    
         
            -
             
     | 
| 
       539 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       540 
     | 
    
         
            -
                <a href="RubyProf/GraphHtmlPrinter.html#method-i-file_link">#file_link</a>
         
     | 
| 
       541 
     | 
    
         
            -
                —
         
     | 
| 
       542 
     | 
    
         
            -
                <span class="container">RubyProf::GraphHtmlPrinter</span>
         
     | 
| 
       543 
     | 
    
         
            -
             
     | 
| 
       544 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       545 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-file_name_for_thread">#file_name_for_thread</a>
         
     | 
| 
       546 
     | 
    
         
            -
                —
         
     | 
| 
       547 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       548 
     | 
    
         
            -
             
     | 
| 
       549 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       550 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-file_path_for_thread">#file_path_for_thread</a>
         
     | 
| 
       551 
     | 
    
         
            -
                —
         
     | 
| 
       552 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       553 
     | 
    
         
            -
             
     | 
| 
       554 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       555 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-find_call">#find_call</a>
         
     | 
| 
       556 
     | 
    
         
            -
                —
         
     | 
| 
       557 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       558 
     | 
    
         
            -
             
     | 
| 
       559 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       560 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-flat_profile">#flat_profile</a>
         
     | 
| 
       561 
     | 
    
         
            -
                —
         
     | 
| 
       562 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       563 
     | 
    
         
            -
             
     | 
| 
       564 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       565 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-graph_link">#graph_link</a>
         
     | 
| 
       566 
     | 
    
         
            -
                —
         
     | 
| 
       567 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       568 
     | 
    
         
            -
             
     | 
| 
       569 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       570 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-graph_profile">#graph_profile</a>
         
     | 
| 
       571 
     | 
    
         
            -
                —
         
     | 
| 
       572 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       573 
     | 
    
         
            -
             
     | 
| 
       574 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       575 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-inspect">#inspect</a>
         
     | 
| 
       576 
     | 
    
         
            -
                —
         
     | 
| 
       577 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       578 
     | 
    
         
            -
             
     | 
| 
       579 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       580 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-line">#line</a>
         
     | 
| 
       581 
     | 
    
         
            -
                —
         
     | 
| 
       582 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       583 
     | 
    
         
            -
             
     | 
| 
       584 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       585 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-link">#link</a>
         
     | 
| 
       586 
     | 
    
         
            -
                —
         
     | 
| 
       587 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       588 
     | 
    
         
            -
             
     | 
| 
       589 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       590 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html#method-i-load_pre_execs">#load_pre_execs</a>
         
     | 
| 
       591 
     | 
    
         
            -
                —
         
     | 
| 
       592 
     | 
    
         
            -
                <span class="container">RubyProf::Cmd</span>
         
     | 
| 
       593 
     | 
    
         
            -
             
     | 
| 
       594 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       595 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html#method-i-load_pre_libs">#load_pre_libs</a>
         
     | 
| 
       596 
     | 
    
         
            -
                —
         
     | 
| 
       597 
     | 
    
         
            -
                <span class="container">RubyProf::Cmd</span>
         
     | 
| 
       598 
     | 
    
         
            -
             
     | 
| 
       599 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       600 
     | 
    
         
            -
                <a href="Rack/RubyProf/RackProfiler.html#method-i-max_requests_reached-3F">#max_requests_reached?</a>
         
     | 
| 
       601 
     | 
    
         
            -
                —
         
     | 
| 
       602 
     | 
    
         
            -
                <span class="container">Rack::RubyProf::RackProfiler</span>
         
     | 
| 
       603 
     | 
    
         
            -
             
     | 
| 
       604 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       605 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-merge_call_tree">#merge_call_tree</a>
         
     | 
| 
       606 
     | 
    
         
            -
                —
         
     | 
| 
       607 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       608 
     | 
    
         
            -
             
     | 
| 
       609 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       610 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-method_href">#method_href</a>
         
     | 
| 
       611 
     | 
    
         
            -
                —
         
     | 
| 
       612 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       613 
     | 
    
         
            -
             
     | 
| 
       614 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       615 
     | 
    
         
            -
                <a href="RubyProf/GraphHtmlPrinter.html#method-i-method_href">#method_href</a>
         
     | 
| 
       616 
     | 
    
         
            -
                —
         
     | 
| 
       617 
     | 
    
         
            -
                <span class="container">RubyProf::GraphHtmlPrinter</span>
         
     | 
| 
       618 
     | 
    
         
            -
             
     | 
| 
       619 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       620 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-method_name">#method_name</a>
         
     | 
| 
       621 
     | 
    
         
            -
                —
         
     | 
| 
       622 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       623 
     | 
    
         
            -
             
     | 
| 
       624 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       625 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-min_depth">#min_depth</a>
         
     | 
| 
       626 
     | 
    
         
            -
                —
         
     | 
| 
       627 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       628 
     | 
    
         
            -
             
     | 
| 
       629 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       630 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-min_percent">#min_percent</a>
         
     | 
| 
       631 
     | 
    
         
            -
                —
         
     | 
| 
       632 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       633 
     | 
    
         
            -
             
     | 
| 
       634 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       635 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-name">#name</a>
         
     | 
| 
       636 
     | 
    
         
            -
                —
         
     | 
| 
       637 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       638 
     | 
    
         
            -
             
     | 
| 
       639 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       640 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-open_asset">#open_asset</a>
         
     | 
| 
       641 
     | 
    
         
            -
                —
         
     | 
| 
       642 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       643 
     | 
    
         
            -
             
     | 
| 
       644 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       645 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html#method-i-option_parser">#option_parser</a>
         
     | 
| 
       646 
     | 
    
         
            -
                —
         
     | 
| 
       647 
     | 
    
         
            -
                <span class="container">RubyProf::Cmd</span>
         
     | 
| 
       648 
     | 
    
         
            -
             
     | 
| 
       649 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       650 
     | 
    
         
            -
                <a href="RubyProf/ProfileTask.html#method-i-output_directory">#output_directory</a>
         
     | 
| 
       651 
     | 
    
         
            -
                —
         
     | 
| 
       652 
     | 
    
         
            -
                <span class="container">RubyProf::ProfileTask</span>
         
     | 
| 
       653 
     | 
    
         
            -
             
     | 
| 
       654 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       655 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-parent">#parent</a>
         
     | 
| 
       656 
     | 
    
         
            -
                —
         
     | 
| 
       657 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       658 
     | 
    
         
            -
             
     | 
| 
       659 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       660 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-parents">#parents</a>
         
     | 
| 
       661 
     | 
    
         
            -
                —
         
     | 
| 
       662 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       663 
     | 
    
         
            -
             
     | 
| 
       664 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       665 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html#method-i-parse_args">#parse_args</a>
         
     | 
| 
       666 
     | 
    
         
            -
                —
         
     | 
| 
       667 
     | 
    
         
            -
                <span class="container">RubyProf::Cmd</span>
         
     | 
| 
       668 
     | 
    
         
            -
             
     | 
| 
       669 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       670 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-path">#path</a>
         
     | 
| 
       671 
     | 
    
         
            -
                —
         
     | 
| 
       672 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       673 
     | 
    
         
            -
             
     | 
| 
       674 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       675 
     | 
    
         
            -
                <a href="Rack/RubyProf/RackProfiler.html#method-i-pause">#pause</a>
         
     | 
| 
       676 
     | 
    
         
            -
                —
         
     | 
| 
       677 
     | 
    
         
            -
                <span class="container">Rack::RubyProf::RackProfiler</span>
         
     | 
| 
       678 
     | 
    
         
            -
             
     | 
| 
       679 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       680 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-pause">#pause</a>
         
     | 
| 
       681 
     | 
    
         
            -
                —
         
     | 
| 
       682 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       683 
     | 
    
         
            -
             
     | 
| 
       684 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       685 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-paused-3F">#paused?</a>
         
     | 
| 
       686 
     | 
    
         
            -
                —
         
     | 
| 
       687 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       688 
     | 
    
         
            -
             
     | 
| 
       689 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       690 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-print">#print</a>
         
     | 
| 
       691 
     | 
    
         
            -
                —
         
     | 
| 
       692 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       693 
     | 
    
         
            -
             
     | 
| 
       694 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       695 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print">#print</a>
         
     | 
| 
       696 
     | 
    
         
            -
                —
         
     | 
| 
       697 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       698 
     | 
    
         
            -
             
     | 
| 
       699 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       700 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-print">#print</a>
         
     | 
| 
       701 
     | 
    
         
            -
                —
         
     | 
| 
       702 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       703 
     | 
    
         
            -
             
     | 
| 
       704 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       705 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-print">#print</a>
         
     | 
| 
       706 
     | 
    
         
            -
                —
         
     | 
| 
       707 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       708 
     | 
    
         
            -
             
     | 
| 
       709 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       710 
     | 
    
         
            -
                <a href="RubyProf/DotPrinter.html#method-i-print">#print</a>
         
     | 
| 
       711 
     | 
    
         
            -
                —
         
     | 
| 
       712 
     | 
    
         
            -
                <span class="container">RubyProf::DotPrinter</span>
         
     | 
| 
       713 
     | 
    
         
            -
             
     | 
| 
       714 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       715 
     | 
    
         
            -
                <a href="RubyProf/GraphHtmlPrinter.html#method-i-print">#print</a>
         
     | 
| 
       716 
     | 
    
         
            -
                —
         
     | 
| 
       717 
     | 
    
         
            -
                <span class="container">RubyProf::GraphHtmlPrinter</span>
         
     | 
| 
       718 
     | 
    
         
            -
             
     | 
| 
       719 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       720 
     | 
    
         
            -
                <a href="Rack/RubyProf/RackProfiler.html#method-i-print-21">#print!</a>
         
     | 
| 
       721 
     | 
    
         
            -
                —
         
     | 
| 
       722 
     | 
    
         
            -
                <span class="container">Rack::RubyProf::RackProfiler</span>
         
     | 
| 
       723 
     | 
    
         
            -
             
     | 
| 
       724 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       725 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_commands">#print_commands</a>
         
     | 
| 
       726 
     | 
    
         
            -
                —
         
     | 
| 
       727 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       728 
     | 
    
         
            -
             
     | 
| 
       729 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       730 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_css">#print_css</a>
         
     | 
| 
       731 
     | 
    
         
            -
                —
         
     | 
| 
       732 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       733 
     | 
    
         
            -
             
     | 
| 
       734 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       735 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-print_file">#print_file</a>
         
     | 
| 
       736 
     | 
    
         
            -
                —
         
     | 
| 
       737 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       738 
     | 
    
         
            -
             
     | 
| 
       739 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       740 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_footer">#print_footer</a>
         
     | 
| 
       741 
     | 
    
         
            -
                —
         
     | 
| 
       742 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       743 
     | 
    
         
            -
             
     | 
| 
       744 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       745 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-print_footer">#print_footer</a>
         
     | 
| 
       746 
     | 
    
         
            -
                —
         
     | 
| 
       747 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       748 
     | 
    
         
            -
             
     | 
| 
       749 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       750 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_header">#print_header</a>
         
     | 
| 
       751 
     | 
    
         
            -
                —
         
     | 
| 
       752 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       753 
     | 
    
         
            -
             
     | 
| 
       754 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       755 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-print_header">#print_header</a>
         
     | 
| 
       756 
     | 
    
         
            -
                —
         
     | 
| 
       757 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       758 
     | 
    
         
            -
             
     | 
| 
       759 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       760 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-print_headers">#print_headers</a>
         
     | 
| 
       761 
     | 
    
         
            -
                —
         
     | 
| 
       762 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       763 
     | 
    
         
            -
             
     | 
| 
       764 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       765 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_help">#print_help</a>
         
     | 
| 
       766 
     | 
    
         
            -
                —
         
     | 
| 
       767 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       768 
     | 
    
         
            -
             
     | 
| 
       769 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       770 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_java_script">#print_java_script</a>
         
     | 
| 
       771 
     | 
    
         
            -
                —
         
     | 
| 
       772 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       773 
     | 
    
         
            -
             
     | 
| 
       774 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       775 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-print_method">#print_method</a>
         
     | 
| 
       776 
     | 
    
         
            -
                —
         
     | 
| 
       777 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       778 
     | 
    
         
            -
             
     | 
| 
       779 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       780 
     | 
    
         
            -
                <a href="RubyProf/FlatPrinterWithLineNumbers.html#method-i-print_methods">#print_methods</a>
         
     | 
| 
       781 
     | 
    
         
            -
                —
         
     | 
| 
       782 
     | 
    
         
            -
                <span class="container">RubyProf::FlatPrinterWithLineNumbers</span>
         
     | 
| 
       783 
     | 
    
         
            -
             
     | 
| 
       784 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       785 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_stack">#print_stack</a>
         
     | 
| 
       786 
     | 
    
         
            -
                —
         
     | 
| 
       787 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       788 
     | 
    
         
            -
             
     | 
| 
       789 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       790 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-print_thread">#print_thread</a>
         
     | 
| 
       791 
     | 
    
         
            -
                —
         
     | 
| 
       792 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       793 
     | 
    
         
            -
             
     | 
| 
       794 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       795 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-print_thread">#print_thread</a>
         
     | 
| 
       796 
     | 
    
         
            -
                —
         
     | 
| 
       797 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       798 
     | 
    
         
            -
             
     | 
| 
       799 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       800 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-print_threads">#print_threads</a>
         
     | 
| 
       801 
     | 
    
         
            -
                —
         
     | 
| 
       802 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       803 
     | 
    
         
            -
             
     | 
| 
       804 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       805 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-print_threads">#print_threads</a>
         
     | 
| 
       806 
     | 
    
         
            -
                —
         
     | 
| 
       807 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       808 
     | 
    
         
            -
             
     | 
| 
       809 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       810 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-print_title_bar">#print_title_bar</a>
         
     | 
| 
       811 
     | 
    
         
            -
                —
         
     | 
| 
       812 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       813 
     | 
    
         
            -
             
     | 
| 
       814 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       815 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-print_to_flat">#print_to_flat</a>
         
     | 
| 
       816 
     | 
    
         
            -
                —
         
     | 
| 
       817 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       818 
     | 
    
         
            -
             
     | 
| 
       819 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       820 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-print_to_graph">#print_to_graph</a>
         
     | 
| 
       821 
     | 
    
         
            -
                —
         
     | 
| 
       822 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       823 
     | 
    
         
            -
             
     | 
| 
       824 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       825 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-print_to_stack">#print_to_stack</a>
         
     | 
| 
       826 
     | 
    
         
            -
                —
         
     | 
| 
       827 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       828 
     | 
    
         
            -
             
     | 
| 
       829 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       830 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-print_to_tree">#print_to_tree</a>
         
     | 
| 
       831 
     | 
    
         
            -
                —
         
     | 
| 
       832 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       833 
     | 
    
         
            -
             
     | 
| 
       834 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       835 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-profile">#profile</a>
         
     | 
| 
       836 
     | 
    
         
            -
                —
         
     | 
| 
       837 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       838 
     | 
    
         
            -
             
     | 
| 
       839 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       840 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-remove_subsidiary_files_from_previous_profile_runs">#remove_subsidiary_files_from_previous_profile_runs</a>
         
     | 
| 
       841 
     | 
    
         
            -
                —
         
     | 
| 
       842 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       843 
     | 
    
         
            -
             
     | 
| 
       844 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       845 
     | 
    
         
            -
                <a href="Rack/RubyProf/RackProfiler.html#method-i-resume">#resume</a>
         
     | 
| 
       846 
     | 
    
         
            -
                —
         
     | 
| 
       847 
     | 
    
         
            -
                <span class="container">Rack::RubyProf::RackProfiler</span>
         
     | 
| 
       848 
     | 
    
         
            -
             
     | 
| 
       849 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       850 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-resume">#resume</a>
         
     | 
| 
       851 
     | 
    
         
            -
                —
         
     | 
| 
       852 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       853 
     | 
    
         
            -
             
     | 
| 
       854 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       855 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-root-3F">#root?</a>
         
     | 
| 
       856 
     | 
    
         
            -
                —
         
     | 
| 
       857 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       858 
     | 
    
         
            -
             
     | 
| 
       859 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       860 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-root-3F">#root?</a>
         
     | 
| 
       861 
     | 
    
         
            -
                —
         
     | 
| 
       862 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       863 
     | 
    
         
            -
             
     | 
| 
       864 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       865 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html#method-i-run">#run</a>
         
     | 
| 
       866 
     | 
    
         
            -
                —
         
     | 
| 
       867 
     | 
    
         
            -
                <span class="container">RubyProf::Cmd</span>
         
     | 
| 
       868 
     | 
    
         
            -
             
     | 
| 
       869 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       870 
     | 
    
         
            -
                <a href="RubyProf/ProfileTask.html#method-i-run_script">#run_script</a>
         
     | 
| 
       871 
     | 
    
         
            -
                —
         
     | 
| 
       872 
     | 
    
         
            -
                <span class="container">RubyProf::ProfileTask</span>
         
     | 
| 
       873 
     | 
    
         
            -
             
     | 
| 
       874 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       875 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-running-3F">#running?</a>
         
     | 
| 
       876 
     | 
    
         
            -
                —
         
     | 
| 
       877 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       878 
     | 
    
         
            -
             
     | 
| 
       879 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       880 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-self_time">#self_time</a>
         
     | 
| 
       881 
     | 
    
         
            -
                —
         
     | 
| 
       882 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       883 
     | 
    
         
            -
             
     | 
| 
       884 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       885 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-self_time">#self_time</a>
         
     | 
| 
       886 
     | 
    
         
            -
                —
         
     | 
| 
       887 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       888 
     | 
    
         
            -
             
     | 
| 
       889 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       890 
     | 
    
         
            -
                <a href="RubyProf/Cmd.html#method-i-setup_options">#setup_options</a>
         
     | 
| 
       891 
     | 
    
         
            -
                —
         
     | 
| 
       892 
     | 
    
         
            -
                <span class="container">RubyProf::Cmd</span>
         
     | 
| 
       893 
     | 
    
         
            -
             
     | 
| 
       894 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       895 
     | 
    
         
            -
                <a href="RubyProf/GraphHtmlPrinter.html#method-i-setup_options">#setup_options</a>
         
     | 
| 
       896 
     | 
    
         
            -
                —
         
     | 
| 
       897 
     | 
    
         
            -
                <span class="container">RubyProf::GraphHtmlPrinter</span>
         
     | 
| 
       898 
     | 
    
         
            -
             
     | 
| 
       899 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       900 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-setup_options">#setup_options</a>
         
     | 
| 
       901 
     | 
    
         
            -
                —
         
     | 
| 
       902 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       903 
     | 
    
         
            -
             
     | 
| 
       904 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       905 
     | 
    
         
            -
                <a href="RubyProf/FlatPrinter.html#method-i-sort_method">#sort_method</a>
         
     | 
| 
       906 
     | 
    
         
            -
                —
         
     | 
| 
       907 
     | 
    
         
            -
                <span class="container">RubyProf::FlatPrinter</span>
         
     | 
| 
       908 
     | 
    
         
            -
             
     | 
| 
       909 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       910 
     | 
    
         
            -
                <a href="RubyProf/AbstractPrinter.html#method-i-sort_method">#sort_method</a>
         
     | 
| 
       911 
     | 
    
         
            -
                —
         
     | 
| 
       912 
     | 
    
         
            -
                <span class="container">RubyProf::AbstractPrinter</span>
         
     | 
| 
       913 
     | 
    
         
            -
             
     | 
| 
       914 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       915 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-stack">#stack</a>
         
     | 
| 
       916 
     | 
    
         
            -
                —
         
     | 
| 
       917 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       918 
     | 
    
         
            -
             
     | 
| 
       919 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       920 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-stack_profile">#stack_profile</a>
         
     | 
| 
       921 
     | 
    
         
            -
                —
         
     | 
| 
       922 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       923 
     | 
    
         
            -
             
     | 
| 
       924 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       925 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-start">#start</a>
         
     | 
| 
       926 
     | 
    
         
            -
                —
         
     | 
| 
       927 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       928 
     | 
    
         
            -
             
     | 
| 
       929 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       930 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-stop">#stop</a>
         
     | 
| 
       931 
     | 
    
         
            -
                —
         
     | 
| 
       932 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       933 
     | 
    
         
            -
             
     | 
| 
       934 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       935 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-sum">#sum</a>
         
     | 
| 
       936 
     | 
    
         
            -
                —
         
     | 
| 
       937 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       938 
     | 
    
         
            -
             
     | 
| 
       939 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       940 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-target">#target</a>
         
     | 
| 
       941 
     | 
    
         
            -
                —
         
     | 
| 
       942 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       943 
     | 
    
         
            -
             
     | 
| 
       944 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       945 
     | 
    
         
            -
                <a href="RubyProf/GraphHtmlPrinter.html#method-i-template">#template</a>
         
     | 
| 
       946 
     | 
    
         
            -
                —
         
     | 
| 
       947 
     | 
    
         
            -
                <span class="container">RubyProf::GraphHtmlPrinter</span>
         
     | 
| 
       948 
     | 
    
         
            -
             
     | 
| 
       949 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       950 
     | 
    
         
            -
                <a href="RubyProf/Profile.html#method-i-threads">#threads</a>
         
     | 
| 
       951 
     | 
    
         
            -
                —
         
     | 
| 
       952 
     | 
    
         
            -
                <span class="container">RubyProf::Profile</span>
         
     | 
| 
       953 
     | 
    
         
            -
             
     | 
| 
       954 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       955 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-threshold">#threshold</a>
         
     | 
| 
       956 
     | 
    
         
            -
                —
         
     | 
| 
       957 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       958 
     | 
    
         
            -
             
     | 
| 
       959 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       960 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-title">#title</a>
         
     | 
| 
       961 
     | 
    
         
            -
                —
         
     | 
| 
       962 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       963 
     | 
    
         
            -
             
     | 
| 
       964 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       965 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-to_s">#to_s</a>
         
     | 
| 
       966 
     | 
    
         
            -
                —
         
     | 
| 
       967 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       968 
     | 
    
         
            -
             
     | 
| 
       969 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       970 
     | 
    
         
            -
                <a href="RubyProf/CallInfo.html#method-i-to_s">#to_s</a>
         
     | 
| 
       971 
     | 
    
         
            -
                —
         
     | 
| 
       972 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfo</span>
         
     | 
| 
       973 
     | 
    
         
            -
             
     | 
| 
       974 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       975 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-to_s">#to_s</a>
         
     | 
| 
       976 
     | 
    
         
            -
                —
         
     | 
| 
       977 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       978 
     | 
    
         
            -
             
     | 
| 
       979 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       980 
     | 
    
         
            -
                <a href="RubyProf/Thread.html#method-i-top_call_infos">#top_call_infos</a>
         
     | 
| 
       981 
     | 
    
         
            -
                —
         
     | 
| 
       982 
     | 
    
         
            -
                <span class="container">RubyProf::Thread</span>
         
     | 
| 
       983 
     | 
    
         
            -
             
     | 
| 
       984 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       985 
     | 
    
         
            -
                <a href="RubyProf/Thread.html#method-i-top_methods">#top_methods</a>
         
     | 
| 
       986 
     | 
    
         
            -
                —
         
     | 
| 
       987 
     | 
    
         
            -
                <span class="container">RubyProf::Thread</span>
         
     | 
| 
       988 
     | 
    
         
            -
             
     | 
| 
       989 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       990 
     | 
    
         
            -
                <a href="RubyProf/Thread.html#method-i-total_time">#total_time</a>
         
     | 
| 
       991 
     | 
    
         
            -
                —
         
     | 
| 
       992 
     | 
    
         
            -
                <span class="container">RubyProf::Thread</span>
         
     | 
| 
       993 
     | 
    
         
            -
             
     | 
| 
       994 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       995 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-total_time">#total_time</a>
         
     | 
| 
       996 
     | 
    
         
            -
                —
         
     | 
| 
       997 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       998 
     | 
    
         
            -
             
     | 
| 
       999 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1000 
     | 
    
         
            -
                <a href="RubyProf/CallStackPrinter.html#method-i-total_time">#total_time</a>
         
     | 
| 
       1001 
     | 
    
         
            -
                —
         
     | 
| 
       1002 
     | 
    
         
            -
                <span class="container">RubyProf::CallStackPrinter</span>
         
     | 
| 
       1003 
     | 
    
         
            -
             
     | 
| 
       1004 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1005 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-total_time">#total_time</a>
         
     | 
| 
       1006 
     | 
    
         
            -
                —
         
     | 
| 
       1007 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       1008 
     | 
    
         
            -
             
     | 
| 
       1009 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1010 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-tree_profile">#tree_profile</a>
         
     | 
| 
       1011 
     | 
    
         
            -
                —
         
     | 
| 
       1012 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       1013 
     | 
    
         
            -
             
     | 
| 
       1014 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1015 
     | 
    
         
            -
                <a href="RubyProf/CallTreePrinter.html#method-i-validate_print_params">#validate_print_params</a>
         
     | 
| 
       1016 
     | 
    
         
            -
                —
         
     | 
| 
       1017 
     | 
    
         
            -
                <span class="container">RubyProf::CallTreePrinter</span>
         
     | 
| 
       1018 
     | 
    
         
            -
             
     | 
| 
       1019 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1020 
     | 
    
         
            -
                <a href="RubyProf/MultiPrinter.html#method-i-validate_print_params">#validate_print_params</a>
         
     | 
| 
       1021 
     | 
    
         
            -
                —
         
     | 
| 
       1022 
     | 
    
         
            -
                <span class="container">RubyProf::MultiPrinter</span>
         
     | 
| 
       1023 
     | 
    
         
            -
             
     | 
| 
       1024 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1025 
     | 
    
         
            -
                <a href="RubyProf/CallInfoVisitor.html#method-i-visit">#visit</a>
         
     | 
| 
       1026 
     | 
    
         
            -
                —
         
     | 
| 
       1027 
     | 
    
         
            -
                <span class="container">RubyProf::CallInfoVisitor</span>
         
     | 
| 
       1028 
     | 
    
         
            -
             
     | 
| 
       1029 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1030 
     | 
    
         
            -
                <a href="RubyProf/Thread.html#method-i-wait_time">#wait_time</a>
         
     | 
| 
       1031 
     | 
    
         
            -
                —
         
     | 
| 
       1032 
     | 
    
         
            -
                <span class="container">RubyProf::Thread</span>
         
     | 
| 
       1033 
     | 
    
         
            -
             
     | 
| 
       1034 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1035 
     | 
    
         
            -
                <a href="RubyProf/AggregateCallInfo.html#method-i-wait_time">#wait_time</a>
         
     | 
| 
       1036 
     | 
    
         
            -
                —
         
     | 
| 
       1037 
     | 
    
         
            -
                <span class="container">RubyProf::AggregateCallInfo</span>
         
     | 
| 
       1038 
     | 
    
         
            -
             
     | 
| 
       1039 
     | 
    
         
            -
              <li class="method">
         
     | 
| 
       1040 
     | 
    
         
            -
                <a href="RubyProf/MethodInfo.html#method-i-wait_time">#wait_time</a>
         
     | 
| 
       1041 
     | 
    
         
            -
                —
         
     | 
| 
       1042 
     | 
    
         
            -
                <span class="container">RubyProf::MethodInfo</span>
         
     | 
| 
       1043 
     | 
    
         
            -
            </ul>
         
     | 
| 
       1044 
     | 
    
         
            -
            </main>
         
     | 
| 
       1045 
     | 
    
         
            -
             
     | 
| 
       1046 
     | 
    
         
            -
             
     | 
| 
       1047 
     | 
    
         
            -
            <footer id="validator-badges" role="contentinfo">
         
     | 
| 
       1048 
     | 
    
         
            -
              <p><a href="http://validator.w3.org/check/referer">Validate</a>
         
     | 
| 
       1049 
     | 
    
         
            -
              <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
         
     | 
| 
       1050 
     | 
    
         
            -
              <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
         
     | 
| 
       1051 
     | 
    
         
            -
            </footer>
         
     | 
| 
       1052 
     | 
    
         
            -
             
     |