Search completed in 1.22 seconds.
14 results for "Flame":
Flame Chart - Firefox Developer Tools
ToolsPerformanceFlame Chart
the flame chart shows you the state of the javascript stack for your code at every millisecond during the performance profile.
... the call tree and the flame chart are both used to analyze your site's javascript, and they both use the same data: a sample of the javascript engine's stack, taken periodically during the recording.
... but while the call tree organizes this data to show you where your program is spending most time in aggregate across the recording, the flame chart uses it to show you when in the recording particular functions are executing.
...And 8 more matches
Index - Firefox Developer Tools
ToolsIndex
86 sorting algorithms comparison this article describes a simple example program that we use in two of the performance guides: the guide to the call tree and the guide to the flame chart.
... 87 flame chart the call tree and the flame chart are both used to analyze your site's javascript, and they both use the same data: a sample of the javascript engine's stack, taken periodically during the recording.
UI Tour - Firefox Developer Tools
ToolsPerformanceUI Tour
the performance tool's ui consists of 4 main pieces: toolbar recordings pane recording overview details pane, which may contain any one of: waterfall call tree flame chart toolbar the toolbar contains buttons to: start and stop a recording import a recording you previously saved clear the recordings pane.
... flame chart if the call tree tells you, statistically, which functions your site is spending most time executing across the whole recording, the flame chart tells you the call stack at any given point during the recording: to learn much more about the flame chart, see the separate flame chart page.
Performance - Firefox Developer Tools
ToolsPerformance
you get four sub-tools to examine aspects of the profile in more detail: the waterfall shows the different operations the browser was performing, such as executing layout, javascript, repaints, and garbage collection the call tree shows the javascript functions in which the browser spent most of its time the flame chart shows the javascript call stack over the course of the recording the allocations view shows the heap allocations made by your code over the course of the recording.
... flame chart see which javascript functions are executing, and when, over the course of the recording.
Using the Frame Timing API - Web APIs
WebAPIFrame Timing APIUsing the Frame Timing API
the performance tool's flame chart and call tree tabs provide data to help analyze the site's javascript usage.
... the call tree shows where the application is spending most of its time, whereas the flame chart shows the state of the javascript stack for the code at every millisecond during the performance profile.
Web Performance
WebPerformance
other documentation developer tools performance features this section provides information on how to use and understand the performance features in your developer tools, including waterfall, call tree, and flame charts.
...knowing how to read waterfall charts, call trees, traces, flame charts , and allocations in your browser developer tools will help you understand waterfall and flame charts in other performance tools.
Working with JSON - Learn web development
LearnJavaScriptObjectsJSON
"secretidentity": "dan jukes", "powers": [ "radiation resistance", "turning tiny", "radiation blast" ] }, { "name": "madame uppercut", "age": 39, "secretidentity": "jane wilson", "powers": [ "million tonne punch", "damage resistance", "superhuman reflexes" ] }, { "name": "eternal flame", "age": 1000000, "secretidentity": "unknown", "powers": [ "immortality", "heat immunity", "inferno", "teleportation", "interdimensional travel" ] } ] } if we loaded this object into a javascript program, parsed in a variable called superheroes for example, we could then access the data inside it using the same dot/bracket not...
Mozilla Development Tools
MozillaMozilla development tools
it is our home-grown web-based tool for watching the up-to-the-minute goings-on in our cvs repository (viewing checkins and log messages, reading diffs, etc.) tinderbox tinderbox is for knowing when the tree is in flames.
Performance
MozillaPerformance
profiling and performance tools profiling with the developer tools profiler the profiler built into the developer tools has a high-level waterfall, detailed call tree, allocations and gc profiling, and flame graphs.
Call Tree - Firefox Developer Tools
ToolsPerformanceCall Tree
note that we use the same program - the same profile, in fact - in the documentation page for the flame chart.
Sorting algorithms comparison - Firefox Developer Tools
ToolsPerformanceExamplesSorting algorithms comparison
this article describes a simple example program that we use in two of the performance guides: the guide to the call tree and the guide to the flame chart.
Frame rate - Firefox Developer Tools
ToolsPerformanceFrame rate
switch to the flame chart to see the call stack at that point: the offending function is called dopointlesscomputations(), and it's defined in "main.js".
How to - Firefox Developer Tools
ToolsPerformanceHow to
select a tool to switch between the waterfall, call tree, and flame chart tools, use the buttons in the toolbar: configure markers displayed to control which markers are shown in the waterfall, use the button in the toolbar: zoom in to zoom into a slice of the recording, select that slice in the recording overview: ...
Intensive JavaScript - Firefox Developer Tools
ToolsPerformanceScenariosIntensive JavaScript
by switching to the flame chart view we can find out: this shows us the js call stack at this point in the execution.