Created
September 25, 2024 01:13
-
-
Save jonahwilliams/69abf884eb262ccdf70e360fdf753dd8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg version="1.1" width="1200" height="1958" onload="init(evt)" viewBox="0 0 1200 1958" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs> | |
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > | |
<stop stop-color="#eeeeee" offset="5%" /> | |
<stop stop-color="#eeeeb0" offset="95%" /> | |
</linearGradient> | |
</defs> | |
<style type="text/css"> | |
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
text { font-family:Verdana; font-size:12px; fill:#000000; } | |
#search, #ignorecase { opacity:0.1; cursor:pointer; } | |
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } | |
#subtitle { text-anchor:middle; font-color:#a0a0a0; } | |
#title { text-anchor:middle; font-size:17px} | |
#unzoom { cursor:pointer; } | |
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
.hide { display:none; } | |
.parent { opacity:0.5; } | |
</style> | |
<script type="text/ecmascript"> | |
<![CDATA[ | |
"use strict"; | |
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; | |
function init(evt) { | |
details = document.getElementById("details").firstChild; | |
searchbtn = document.getElementById("search"); | |
ignorecaseBtn = document.getElementById("ignorecase"); | |
unzoombtn = document.getElementById("unzoom"); | |
matchedtxt = document.getElementById("matched"); | |
svg = document.getElementsByTagName("svg")[0]; | |
searching = 0; | |
currentSearchTerm = null; | |
} | |
// mouse-over for info | |
function s(info) { details.nodeValue = "symbol: " + info; } | |
function c() { details.nodeValue = ' '; } | |
window.addEventListener("click", function(e) { | |
var target = find_group(e.target); | |
if (target) { | |
if (target.nodeName == "a") { | |
if (e.ctrlKey === false) return; | |
e.preventDefault(); | |
} | |
if (target.classList.contains("parent")) unzoom(); | |
zoom(target); | |
} | |
else if (e.target.id == "unzoom") unzoom(); | |
else if (e.target.id == "search") search_prompt(); | |
else if (e.target.id == "ignorecase") toggle_ignorecase(); | |
}, false) | |
// ctrl-F for search | |
window.addEventListener("keydown",function (e) { | |
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
e.preventDefault(); | |
search_prompt(); | |
} | |
}, false) | |
// ctrl-I to toggle case-sensitive search | |
window.addEventListener("keydown",function (e) { | |
if (e.ctrlKey && e.keyCode === 73) { | |
e.preventDefault(); | |
toggle_ignorecase(); | |
} | |
}, false) | |
// functions | |
function find_child(node, selector) { | |
var children = node.querySelectorAll(selector); | |
if (children.length) return children[0]; | |
return; | |
} | |
function find_group(node) { | |
var parent = node.parentElement; | |
if (!parent) return; | |
if (parent.id == "frames") return node; | |
return find_group(parent); | |
} | |
function orig_save(e, attr, val) { | |
if (e.attributes["_orig_" + attr] != undefined) return; | |
if (e.attributes[attr] == undefined) return; | |
if (val == undefined) val = e.attributes[attr].value; | |
e.setAttribute("_orig_" + attr, val); | |
} | |
function orig_load(e, attr) { | |
if (e.attributes["_orig_"+attr] == undefined) return; | |
e.attributes[attr].value = e.attributes["_orig_" + attr].value; | |
e.removeAttribute("_orig_"+attr); | |
} | |
function g_to_text(e) { | |
var text = find_child(e, "title").firstChild.nodeValue; | |
return (text) | |
} | |
function g_to_func(e) { | |
var func = g_to_text(e); | |
// if there's any manipulation we want to do to the function | |
// name before it's searched, do it here before returning. | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes["width"].value) -3; | |
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)/,""); | |
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; | |
// Smaller than this size won't fit anything | |
if (w < 2*12*0.59) { | |
t.textContent = ""; | |
return; | |
} | |
t.textContent = txt; | |
// Fit in full text width | |
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
return; | |
for (var x=txt.length-2; x>0; x--) { | |
if (t.getSubStringLength(0, x+2) <= w) { | |
t.textContent = txt.substring(0,x) + ".."; | |
return; | |
} | |
} | |
t.textContent = ""; | |
} | |
// zoom | |
function zoom_reset(e) { | |
if (e.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; | |
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio; | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_child(c[i], x-10, ratio); | |
} | |
} | |
function zoom_parent(e) { | |
if (e.attributes) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = 10; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2); | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_parent(c[i]); | |
} | |
} | |
function zoom(node) { | |
var attr = find_child(node, "rect").attributes; | |
var width = parseFloat(attr["width"].value); | |
var xmin = parseFloat(attr["x"].value); | |
var xmax = parseFloat(xmin + width); | |
var ymin = parseFloat(attr["y"].value); | |
var ratio = (svg.width.baseVal.value - 2*10) / width; | |
// XXX: Workaround for JavaScript float issues (fix me) | |
var fudge = 0.0001; | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "1.0"; | |
var el = document.getElementsByTagName("g"); | |
for(var i=0;i<el.length;i++){ | |
var e = el[i]; | |
var a = find_child(e, "rect").attributes; | |
var ex = parseFloat(a["x"].value); | |
var ew = parseFloat(a["width"].value); | |
// Is it an ancestor | |
if (0 == 0) { | |
var upstack = parseFloat(a["y"].value) > ymin; | |
} else { | |
var upstack = parseFloat(a["y"].value) < ymin; | |
} | |
if (upstack) { | |
// Direct ancestor | |
if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
e.style["opacity"] = "0.5"; | |
zoom_parent(e); | |
e.onclick = function(e){unzoom(); zoom(this);}; | |
update_text(e); | |
} | |
// not in current path | |
else | |
e.style["display"] = "none"; | |
} | |
// Children maybe | |
else { | |
// no common path | |
if (ex < xmin || ex + fudge >= xmax) { | |
e.style["display"] = "none"; | |
} | |
else { | |
zoom_child(e, xmin, ratio); | |
e.onclick = function(e){zoom(this);}; | |
update_text(e); | |
} | |
} | |
} | |
} | |
function unzoom() { | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "0.0"; | |
var el = document.getElementsByTagName("g"); | |
for(var i=0;i<el.length;i++) { | |
el[i].style["display"] = "block"; | |
el[i].style["opacity"] = "1"; | |
zoom_reset(el[i]); | |
update_text(el[i]); | |
} | |
} | |
]]> | |
</script> | |
<rect ry="2" y="0.0" height="1958.0" x="0.0" width="1200.0" rx="2" fill="url(#background)"/> | |
<text fill="rgb(0,0,0)" font-family="Verdana" id="title" y="24.0" x="600.00" text-anchor="middle" font-size="12">Flame Chart</text> | |
<text fill="rgb(0,0,0)" font-family="Verdana" id="details" y="1924.0" x="10.00" text-anchor="" font-size="12"> </text> | |
<text fill="rgb(0,0,0)" font-family="Verdana" style="opacity:0.0;cursor:pointer" id="unzoom" y="24.0" x="10.00" text-anchor="" onclick="unzoom()" font-size="12">Reset Zoom</text> | |
<text id="search" font-family="Verdana" onclick="search_prompt()" text-anchor="" style="opacity:0.1;cursor:pointer" onmouseover="searchover()" onmouseout="searchout()" y="24.0" font-size="12" x="1090.00" fill="rgb(0,0,0)">Search</text> | |
<text fill="rgb(0,0,0)" font-family="Verdana" id="ignorecase" y="24.0" x="1174.00" text-anchor="" font-size="12">ic</text> | |
<text fill="rgb(0,0,0)" font-family="Verdana" id="matched" y="1941.0" x="1090.00" text-anchor="" font-size="12"> </text> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Runner (1497) (100.00%)')"><title >Runner (1497) (100.00%)</title> | |
<rect ry="2" y="1875.0" height="15.0" x="10.0" width="1180.0" rx="2" fill="rgb(237,194,55)"/> | |
<text font-family="Verdana" y="1885.50" font-size="12" x="13.00">Runner (1497)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('start (99.90%)')" class="func_g" onmouseout="c()"><title >start (99.90%)</title> | |
<rect ry="2" width="1178.82" y="1859.0" rx="2" height="15.0" fill="rgb(208,174,12)" x="10.0"/> | |
<text y="1869.50" x="13.00" font-family="Verdana" font-size="12">start</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('main (99.30%)')" onclick="zoom(this)"><title >main (99.30%)</title> | |
<rect y="1843.0" fill="rgb(241,17,30)" height="15.0" ry="2" rx="2" x="10.0" width="1171.74"/> | |
<text font-family="Verdana" x="13.00" y="1853.50" font-size="12">main</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('static AppDelegate.$main() (99.30%)')" onmouseout="c()"><title >static AppDelegate.$main() (99.30%)</title> | |
<rect height="15.0" fill="rgb(254,7,21)" x="10.0" rx="2" width="1171.74" ry="2" y="1827.0"/> | |
<text font-family="Verdana" x="13.00" y="1837.50" font-size="12">static AppDelegate.$main()</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('specialized static UIApplicationDelegate.main() (99.30%)')" onclick="zoom(this)" class="func_g"><title >specialized static UIApplicationDelegate.main() (99.30%)</title> | |
<rect fill="rgb(207,8,38)" height="15.0" ry="2" x="10.0" y="1811.0" width="1171.74" rx="2"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="1821.50">specialized static UIApplicationDelegate.main()</text> | |
</g> | |
<g onmouseover="s('0x19d05749c (99.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x19d05749c (99.30%)</title> | |
<rect y="1795.0" height="15.0" fill="rgb(239,12,11)" rx="2" width="1171.74" x="10.0" ry="2"/> | |
<text x="13.00" font-size="12" y="1805.50" font-family="Verdana">0x19d05749c</text> | |
</g> | |
<g class="func_g" onmouseover="s('UIApplicationMain (99.30%)')" onmouseout="c()" onclick="zoom(this)"><title >UIApplicationMain (99.30%)</title> | |
<rect x="10.0" height="15.0" fill="rgb(211,82,0)" y="1779.0" width="1171.74" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="1789.50" x="13.00">UIApplicationMain</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIApplication _run] (99.20%)')"><title >-[UIApplication _run] (99.20%)</title> | |
<rect x="10.0" y="1763.0" ry="2" width="1170.5599" fill="rgb(231,174,17)" height="15.0" rx="2"/> | |
<text font-size="12" y="1773.50" font-family="Verdana" x="13.00">-[UIApplication _run]</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('GSEventRunModal (99.20%)')" onmouseout="c()" class="func_g"><title >GSEventRunModal (99.20%)</title> | |
<rect ry="2" fill="rgb(219,43,51)" rx="2" height="15.0" width="1170.5599" x="10.0" y="1747.0"/> | |
<text font-family="Verdana" font-size="12" y="1757.50" x="13.00">GSEventRunModal</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('CFRunLoopRunSpecific (99.20%)')"><title >CFRunLoopRunSpecific (99.20%)</title> | |
<rect width="1170.5599" height="15.0" rx="2" y="1731.0" fill="rgb(224,48,29)" ry="2" x="10.0"/> | |
<text x="13.00" font-size="12" y="1741.50" font-family="Verdana">CFRunLoopRunSpecific</text> | |
</g> | |
<g onmouseover="s('__CFRunLoopRun (99.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >__CFRunLoopRun (99.20%)</title> | |
<rect x="10.0" height="15.0" y="1715.0" ry="2" fill="rgb(250,42,0)" width="1170.5599" rx="2"/> | |
<text y="1725.50" x="13.00" font-size="12" font-family="Verdana">__CFRunLoopRun</text> | |
</g> | |
<g class="func_g" onmouseover="s('__CFRunLoopDoTimers (95.70%)')" onmouseout="c()" onclick="zoom(this)"><title >__CFRunLoopDoTimers (95.70%)</title> | |
<rect ry="2" rx="2" x="10.0" height="15.0" width="1129.26" y="1699.0" fill="rgb(255,88,44)"/> | |
<text y="1709.50" x="13.00" font-family="Verdana" font-size="12">__CFRunLoopDoTimers</text> | |
</g> | |
<g onmouseover="s('__CFRunLoopDoTimer (95.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >__CFRunLoopDoTimer (95.60%)</title> | |
<rect ry="2" y="1683.0" x="10.0" width="1128.0801" height="15.0" rx="2" fill="rgb(210,116,28)"/> | |
<text x="13.00" y="1693.50" font-family="Verdana" font-size="12">__CFRunLoopDoTimer</text> | |
</g> | |
<g onmouseover="s('__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ (95.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ (95.50%)</title> | |
<rect rx="2" fill="rgb(251,84,36)" x="10.0" ry="2" width="1126.9001" y="1667.0" height="15.0"/> | |
<text font-family="Verdana" y="1677.50" x="13.00" font-size="12">__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (95.50%)')" onclick="zoom(this)"><title >fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (95.50%)</title> | |
<rect ry="2" height="15.0" width="1126.9001" x="10.0" fill="rgb(220,46,28)" rx="2" y="1651.0"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="1661.50">fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*)</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('fml::MessageLoopImpl::FlushTasks(fml::FlushType) (95.50%)')" onclick="zoom(this)"><title >fml::MessageLoopImpl::FlushTasks(fml::FlushType) (95.50%)</title> | |
<rect fill="rgb(247,194,18)" x="10.0" y="1635.0" width="1126.9001" rx="2" ry="2" height="15.0"/> | |
<text x="13.00" y="1645.50" font-size="12" font-family="Verdana">fml::MessageLoopImpl::FlushTasks(fml::FlushType)</text> | |
</g> | |
<g onmouseover="s('std::_fl::__function::__func<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0, std::_fl::allocator<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0>, void ()>::operator()() (89.70%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >std::_fl::__function::__func<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0, std::_fl::allocator<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0>, void ()>::operator()() (89.70%)</title> | |
<rect fill="rgb(211,47,12)" ry="2" rx="2" x="10.0" height="15.0" y="1619.0" width="1058.4601"/> | |
<text x="13.00" font-size="12" y="1629.50" font-family="Verdana">std::_fl::__function::__func<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0, std::_fl::allocator<flutter::VsyncWaite..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('std::_fl::__function::__func<flutter::Animator::AwaitVSync()::$_0, std::_fl::allocator<flutter::Animator::AwaitVSync()::$_0>, void (std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>)>::operator()(std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>&&) (89.60%)')" class="func_g" onmouseout="c()"><title >std::_fl::__function::__func<flutter::Animator::AwaitVSync()::$_0, std::_fl::allocator<flutter::Animator::AwaitVSync()::$_0>, void (std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>)>::operator()(std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>&&) (89.60%)</title> | |
<rect fill="rgb(211,128,29)" rx="2" x="10.0" y="1603.0" ry="2" width="1057.2802" height="15.0"/> | |
<text font-size="12" y="1613.50" x="13.00" font-family="Verdana">std::_fl::__function::__func<flutter::Animator::AwaitVSync()::$_0, std::_fl::allocator<flutter::Animator::AwaitVSync()::$_0>, void (std::_fl::uniqu..</text> | |
</g> | |
<g onmouseover="s('flutter::Shell::OnAnimatorBeginFrame(fml::TimePoint, unsigned long long) (89.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::Shell::OnAnimatorBeginFrame(fml::TimePoint, unsigned long long) (89.50%)</title> | |
<rect y="1587.0" x="10.0" rx="2" height="15.0" fill="rgb(237,224,27)" width="1056.1001" ry="2"/> | |
<text y="1597.50" x="13.00" font-family="Verdana" font-size="12">flutter::Shell::OnAnimatorBeginFrame(fml::TimePoint, unsigned long long)</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Dart_InvokeClosure (88.80%)')"><title >Dart_InvokeClosure (88.80%)</title> | |
<rect x="10.0" width="1047.8402" ry="2" rx="2" y="1571.0" fill="rgb(238,35,14)" height="15.0"/> | |
<text y="1581.50" font-size="12" font-family="Verdana" x="13.00">Dart_InvokeClosure</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (88.70%)')" onmouseout="c()"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (88.70%)</title> | |
<rect y="1555.0" x="10.0" fill="rgb(249,220,49)" width="1046.6602" ry="2" rx="2" height="15.0"/> | |
<text y="1565.50" x="13.00" font-size="12" font-family="Verdana">dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&)</text> | |
</g> | |
<g onmouseover="s('stub InvokeDartCode (88.70%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >stub InvokeDartCode (88.70%)</title> | |
<rect width="1046.6602" rx="2" height="15.0" fill="rgb(227,121,54)" y="1539.0" ry="2" x="10.0"/> | |
<text font-family="Verdana" x="13.00" y="1549.50" font-size="12">stub InvokeDartCode</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('drawFrame (#2) (85.30%)')" onclick="zoom(this)" class="func_g"><title >drawFrame (#2) (85.30%)</title> | |
<rect x="10.0" y="1523.0" rx="2" fill="rgb(236,120,44)" ry="2" width="1006.5402" height="15.0"/> | |
<text y="1533.50" x="13.00" font-size="12" font-family="Verdana">drawFrame (#2)</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('drawFrame (85.30%)')"><title >drawFrame (85.30%)</title> | |
<rect y="1507.0" fill="rgb(251,205,9)" height="15.0" x="10.0" width="1006.5402" rx="2" ry="2"/> | |
<text y="1517.50" font-size="12" font-family="Verdana" x="13.00">drawFrame</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PlatformDispatcher._drawFrame (85.30%)')" onclick="zoom(this)" class="func_g"><title >PlatformDispatcher._drawFrame (85.30%)</title> | |
<rect rx="2" height="15.0" width="1006.5402" x="10.0" y="1491.0" fill="rgb(245,166,46)" ry="2"/> | |
<text font-size="12" y="1501.50" font-family="Verdana" x="13.00">PlatformDispatcher._drawFrame</text> | |
</g> | |
<g class="func_g" onmouseover="s('invoke (85.30%)')" onmouseout="c()" onclick="zoom(this)"><title >invoke (85.30%)</title> | |
<rect ry="2" y="1475.0" x="10.0" width="1006.5402" height="15.0" fill="rgb(246,159,51)" rx="2"/> | |
<text x="13.00" y="1485.50" font-size="12" font-family="Verdana">invoke</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('SchedulerBinding._handleDrawFrame (85.30%)')" onmouseout="c()" class="func_g"><title >SchedulerBinding._handleDrawFrame (85.30%)</title> | |
<rect height="15.0" x="10.0" width="1006.5402" fill="rgb(231,8,23)" rx="2" ry="2" y="1459.0"/> | |
<text x="13.00" y="1469.50" font-size="12" font-family="Verdana">SchedulerBinding._handleDrawFrame</text> | |
</g> | |
<g onmouseover="s('SchedulerBinding._handleDrawFrame (#2) (85.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >SchedulerBinding._handleDrawFrame (#2) (85.30%)</title> | |
<rect height="15.0" width="1006.5402" fill="rgb(238,8,34)" ry="2" x="10.0" rx="2" y="1443.0"/> | |
<text x="13.00" y="1453.50" font-size="12" font-family="Verdana">SchedulerBinding._handleDrawFrame (#2)</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SchedulerBinding.handleDrawFrame (85.30%)')" class="func_g" onclick="zoom(this)"><title >SchedulerBinding.handleDrawFrame (85.30%)</title> | |
<rect width="1006.5402" fill="rgb(244,172,43)" rx="2" x="10.0" y="1427.0" height="15.0" ry="2"/> | |
<text font-size="12" y="1437.50" x="13.00" font-family="Verdana">SchedulerBinding.handleDrawFrame</text> | |
</g> | |
<g class="func_g" onmouseover="s('SchedulerBinding._invokeFrameCallback (84.80%)')" onmouseout="c()" onclick="zoom(this)"><title >SchedulerBinding._invokeFrameCallback (84.80%)</title> | |
<rect width="1000.64026" y="1411.0" x="10.0" fill="rgb(236,197,11)" ry="2" height="15.0" rx="2"/> | |
<text font-size="12" y="1421.50" x="13.00" font-family="Verdana">SchedulerBinding._invokeFrameCallback</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RendererBinding._handlePersistentFrameCallback (#2) (83.30%)')"><title >RendererBinding._handlePersistentFrameCallback (#2) (83.30%)</title> | |
<rect x="10.0" height="15.0" fill="rgb(206,15,49)" rx="2" y="1395.0" width="982.94025" ry="2"/> | |
<text x="13.00" y="1405.50" font-family="Verdana" font-size="12">RendererBinding._handlePersistentFrameCallback (#2)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RendererBinding._handlePersistentFrameCallback (83.30%)')"><title >RendererBinding._handlePersistentFrameCallback (83.30%)</title> | |
<rect width="982.9402" height="15.0" fill="rgb(231,83,42)" ry="2" y="1379.0" x="10.0" rx="2"/> | |
<text font-size="12" y="1389.50" x="13.00" font-family="Verdana">RendererBinding._handlePersistentFrameCallback</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('WidgetsBinding.drawFrame (83.30%)')" class="func_g" onclick="zoom(this)"><title >WidgetsBinding.drawFrame (83.30%)</title> | |
<rect ry="2" width="982.9402" rx="2" y="1363.0" x="10.0" fill="rgb(245,126,53)" height="15.0"/> | |
<text font-family="Verdana" y="1373.50" font-size="12" x="13.00">WidgetsBinding.drawFrame</text> | |
</g> | |
<g onmouseover="s('RendererBinding.drawFrame (48.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RendererBinding.drawFrame (48.20%)</title> | |
<rect x="10.0" ry="2" fill="rgb(228,97,55)" y="1347.0" rx="2" width="568.76013" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="1357.50">RendererBinding.drawFrame</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('PipelineOwner.flushPaint (41.30%)')" onmouseout="c()"><title >PipelineOwner.flushPaint (41.30%)</title> | |
<rect ry="2" fill="rgb(237,181,8)" rx="2" x="10.0" width="487.3401" y="1331.0" height="15.0"/> | |
<text font-family="Verdana" y="1341.50" font-size="12" x="13.00">PipelineOwner.flushPaint</text> | |
</g> | |
<g onmouseover="s('PipelineOwner.flushPaint (41.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PipelineOwner.flushPaint (41.30%)</title> | |
<rect fill="rgb(255,196,1)" height="15.0" y="1315.0" rx="2" ry="2" x="10.0" width="487.34006"/> | |
<text x="13.00" y="1325.50" font-size="12" font-family="Verdana">PipelineOwner.flushPaint</text> | |
</g> | |
<g onmouseover="s('PaintingContext.repaintCompositedChild (41.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PaintingContext.repaintCompositedChild (41.10%)</title> | |
<rect fill="rgb(234,10,25)" height="15.0" x="10.0" ry="2" y="1299.0" rx="2" width="484.98004"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="1309.50">PaintingContext.repaintCompositedChild</text> | |
</g> | |
<g onmouseover="s('PaintingContext._repaintCompositedChild (41.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PaintingContext._repaintCompositedChild (41.10%)</title> | |
<rect height="15.0" width="484.98007" y="1283.0" fill="rgb(209,208,16)" x="10.0" rx="2" ry="2"/> | |
<text y="1293.50" font-size="12" x="13.00" font-family="Verdana">PaintingContext._repaintCompositedChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (40.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject._paintWithContext (40.50%)</title> | |
<rect rx="2" y="1267.0" fill="rgb(224,192,19)" x="10.0" ry="2" height="15.0" width="477.9001"/> | |
<text x="13.00" y="1277.50" font-size="12" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (40.50%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (40.50%)</title> | |
<rect ry="2" height="15.0" x="10.0" y="1251.0" fill="rgb(206,160,39)" rx="2" width="477.9001"/> | |
<text font-family="Verdana" y="1261.50" x="13.00" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (40.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (40.50%)</title> | |
<rect height="15.0" x="10.0" y="1235.0" ry="2" rx="2" width="477.9001" fill="rgb(241,92,8)"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="1245.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (40.50%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (40.50%)</title> | |
<rect width="477.9001" height="15.0" rx="2" y="1219.0" x="10.0" fill="rgb(205,211,26)" ry="2"/> | |
<text y="1229.50" font-family="Verdana" font-size="12" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (39.50%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (39.50%)</title> | |
<rect x="10.0" y="1203.0" width="466.10007" ry="2" fill="rgb(238,216,46)" rx="2" height="15.0"/> | |
<text y="1213.50" font-family="Verdana" x="13.00" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (39.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (39.50%)</title> | |
<rect y="1187.0" height="15.0" ry="2" fill="rgb(239,218,25)" x="10.0" rx="2" width="466.10007"/> | |
<text y="1197.50" font-family="Verdana" x="13.00" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (39.50%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (39.50%)</title> | |
<rect fill="rgb(251,80,8)" x="10.0" height="15.0" width="466.10007" y="1171.0" ry="2" rx="2"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="1181.50">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderPhysicalModel.paint (39.50%)')" onclick="zoom(this)"><title >RenderPhysicalModel.paint (39.50%)</title> | |
<rect y="1155.0" ry="2" fill="rgb(238,227,49)" height="15.0" width="466.10007" x="10.0" rx="2"/> | |
<text x="13.00" y="1165.50" font-size="12" font-family="Verdana">RenderPhysicalModel.paint</text> | |
</g> | |
<g onmouseover="s('PaintingContext.pushClipRRect (39.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >PaintingContext.pushClipRRect (39.30%)</title> | |
<rect width="463.74005" height="15.0" rx="2" y="1139.0" fill="rgb(212,103,6)" ry="2" x="10.0"/> | |
<text font-family="Verdana" x="13.00" y="1149.50" font-size="12">PaintingContext.pushClipRRect</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderPhysicalModel.paint.<anonymous closure> (39.30%)')"><title >RenderPhysicalModel.paint.<anonymous closure> (39.30%)</title> | |
<rect x="10.0" height="15.0" width="463.74008" rx="2" ry="2" y="1123.0" fill="rgb(205,57,4)"/> | |
<text font-size="12" x="13.00" y="1133.50" font-family="Verdana">RenderPhysicalModel.paint.<anonymous closure></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (39.30%)')" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (39.30%)</title> | |
<rect y="1107.0" fill="rgb(247,56,3)" rx="2" ry="2" x="10.0" height="15.0" width="463.74008"/> | |
<text x="13.00" y="1117.50" font-family="Verdana" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.paintChild (39.30%)')" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.paintChild (39.30%)</title> | |
<rect width="463.74008" rx="2" ry="2" x="10.0" fill="rgb(228,84,1)" y="1091.0" height="15.0"/> | |
<text y="1101.50" font-family="Verdana" x="13.00" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (39.30%)')"><title >RenderObject._paintWithContext (39.30%)</title> | |
<rect rx="2" y="1075.0" x="10.0" height="15.0" ry="2" width="463.74008" fill="rgb(239,70,28)"/> | |
<text font-family="Verdana" x="13.00" y="1085.50" font-size="12">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderInkFeatures.paint (39.30%)')" class="func_g"><title >RenderInkFeatures.paint (39.30%)</title> | |
<rect x="10.0" ry="2" rx="2" fill="rgb(211,71,52)" y="1059.0" width="463.74008" height="15.0"/> | |
<text y="1069.50" font-family="Verdana" x="13.00" font-size="12">RenderInkFeatures.paint</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (39.30%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (39.30%)</title> | |
<rect width="463.74008" rx="2" ry="2" fill="rgb(233,59,49)" x="10.0" y="1043.0" height="15.0"/> | |
<text x="13.00" y="1053.50" font-size="12" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (39.30%)')" onmouseout="c()" class="func_g"><title >PaintingContext.paintChild (39.30%)</title> | |
<rect ry="2" fill="rgb(225,60,48)" y="1027.0" x="10.0" height="15.0" width="463.74008" rx="2"/> | |
<text x="13.00" font-family="Verdana" y="1037.50" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (39.30%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (39.30%)</title> | |
<rect height="15.0" fill="rgb(222,37,35)" rx="2" y="1011.0" width="463.74008" ry="2" x="10.0"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="1021.50">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderCustomMultiChildLayoutBox.paint (39.30%)')"><title >RenderCustomMultiChildLayoutBox.paint (39.30%)</title> | |
<rect fill="rgb(239,144,33)" rx="2" height="15.0" ry="2" y="995.0" x="10.0" width="463.74008"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="1005.50">RenderCustomMultiChildLayoutBox.paint</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderBoxContainerDefaultsMixin.defaultPaint (#2) (39.30%)')"><title >RenderBoxContainerDefaultsMixin.defaultPaint (#2) (39.30%)</title> | |
<rect y="979.0" x="10.0" height="15.0" width="463.74008" fill="rgb(245,119,51)" ry="2" rx="2"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="989.50">RenderBoxContainerDefaultsMixin.defaultPaint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (39.30%)')" class="func_g"><title >PaintingContext.paintChild (39.30%)</title> | |
<rect height="15.0" rx="2" ry="2" width="463.74008" fill="rgb(245,38,7)" x="10.0" y="963.0"/> | |
<text y="973.50" font-family="Verdana" font-size="12" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (39.30%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._paintWithContext (39.30%)</title> | |
<rect fill="rgb(239,76,12)" ry="2" rx="2" height="15.0" x="10.0" y="947.0" width="463.74008"/> | |
<text font-size="12" x="13.00" y="957.50" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderStack.paint (39.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderStack.paint (39.30%)</title> | |
<rect rx="2" y="931.0" fill="rgb(228,98,11)" ry="2" height="15.0" width="463.74008" x="10.0"/> | |
<text y="941.50" x="13.00" font-size="12" font-family="Verdana">RenderStack.paint</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderStack.paintStack (39.30%)')" class="func_g" onmouseout="c()"><title >RenderStack.paintStack (39.30%)</title> | |
<rect x="10.0" fill="rgb(242,20,20)" width="463.74008" height="15.0" ry="2" y="915.0" rx="2"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="925.50">RenderStack.paintStack</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderBoxContainerDefaultsMixin.defaultPaint (39.30%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderBoxContainerDefaultsMixin.defaultPaint (39.30%)</title> | |
<rect rx="2" y="899.0" fill="rgb(226,168,12)" ry="2" x="10.0" width="463.74008" height="15.0"/> | |
<text font-size="12" x="13.00" y="909.50" font-family="Verdana">RenderBoxContainerDefaultsMixin.defaultPaint</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (39.30%)')"><title >PaintingContext.paintChild (39.30%)</title> | |
<rect width="463.74008" ry="2" fill="rgb(232,222,33)" height="15.0" x="10.0" y="883.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="893.50">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (38.70%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (38.70%)</title> | |
<rect ry="2" x="10.0" y="867.0" fill="rgb(218,113,49)" rx="2" width="456.66013" height="15.0"/> | |
<text font-size="12" y="877.50" font-family="Verdana" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderStack.paint (36.90%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderStack.paint (36.90%)</title> | |
<rect y="851.0" ry="2" width="435.42014" x="10.0" rx="2" fill="rgb(206,143,39)" height="15.0"/> | |
<text y="861.50" font-size="12" x="13.00" font-family="Verdana">RenderStack.paint</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PaintingContext.pushClipRect (36.80%)')" class="func_g" onclick="zoom(this)"><title >PaintingContext.pushClipRect (36.80%)</title> | |
<rect rx="2" height="15.0" ry="2" width="434.2401" x="10.0" y="835.0" fill="rgb(225,64,17)"/> | |
<text font-size="12" font-family="Verdana" y="845.50" x="13.00">PaintingContext.pushClipRect</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ClipContext.clipRectAndPaint (36.80%)')"><title >ClipContext.clipRectAndPaint (36.80%)</title> | |
<rect ry="2" x="10.0" height="15.0" y="819.0" width="434.2401" fill="rgb(235,190,47)" rx="2"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="829.50">ClipContext.clipRectAndPaint</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ClipContext._clipAndPaint (36.80%)')"><title >ClipContext._clipAndPaint (36.80%)</title> | |
<rect height="15.0" x="10.0" width="434.2401" y="803.0" fill="rgb(221,21,0)" rx="2" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="813.50">ClipContext._clipAndPaint</text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.pushClipRect.<anonymous closure> (36.60%)')" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.pushClipRect.<anonymous closure> (36.60%)</title> | |
<rect ry="2" fill="rgb(207,114,27)" x="10.0" width="431.8801" height="15.0" rx="2" y="787.0"/> | |
<text font-size="12" x="13.00" y="797.50" font-family="Verdana">PaintingContext.pushClipRect.<anonymous closure></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderStack.paintStack (36.60%)')"><title >RenderStack.paintStack (36.60%)</title> | |
<rect rx="2" y="771.0" fill="rgb(238,169,4)" ry="2" height="15.0" x="10.0" width="431.8801"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="781.50">RenderStack.paintStack</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderStack.paintStack (36.60%)')" onclick="zoom(this)"><title >RenderStack.paintStack (36.60%)</title> | |
<rect width="431.8801" height="15.0" ry="2" fill="rgb(215,149,47)" y="755.0" rx="2" x="10.0"/> | |
<text font-family="Verdana" font-size="12" y="765.50" x="13.00">RenderStack.paintStack</text> | |
</g> | |
<g onmouseover="s('RenderBoxContainerDefaultsMixin.defaultPaint (36.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderBoxContainerDefaultsMixin.defaultPaint (36.60%)</title> | |
<rect x="10.0" height="15.0" rx="2" fill="rgb(205,56,8)" width="431.8801" ry="2" y="739.0"/> | |
<text font-size="12" x="13.00" y="749.50" font-family="Verdana">RenderBoxContainerDefaultsMixin.defaultPaint</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (36.20%)')" class="func_g"><title >PaintingContext.paintChild (36.20%)</title> | |
<rect height="15.0" fill="rgb(224,193,21)" x="10.0" width="427.16013" ry="2" rx="2" y="723.0"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="733.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (36.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject._paintWithContext (36.10%)</title> | |
<rect y="707.0" ry="2" width="425.9801" x="10.0" height="15.0" rx="2" fill="rgb(234,83,9)"/> | |
<text x="13.00" font-family="Verdana" y="717.50" font-size="12">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (35.80%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (35.80%)</title> | |
<rect fill="rgb(237,190,23)" y="691.0" ry="2" x="10.0" rx="2" height="15.0" width="422.4401"/> | |
<text y="701.50" font-size="12" font-family="Verdana" x="13.00">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PaintingContext.paintChild (35.70%)')" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (35.70%)</title> | |
<rect y="675.0" ry="2" width="421.2601" rx="2" fill="rgb(235,85,49)" x="10.0" height="15.0"/> | |
<text x="13.00" font-size="12" y="685.50" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (35.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject._paintWithContext (35.30%)</title> | |
<rect y="659.0" rx="2" x="10.0" fill="rgb(219,178,38)" width="416.5401" height="15.0" ry="2"/> | |
<text font-size="12" y="669.50" x="13.00" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderImage.paint (24.00%)')"><title >RenderImage.paint (24.00%)</title> | |
<rect ry="2" fill="rgb(240,221,34)" x="10.0" y="643.0" width="283.20007" height="15.0" rx="2"/> | |
<text x="13.00" font-family="Verdana" y="653.50" font-size="12">RenderImage.paint</text> | |
</g> | |
<g onmouseover="s('paintImage (22.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >paintImage (22.30%)</title> | |
<rect fill="rgb(209,8,45)" width="263.14005" y="627.0" height="15.0" rx="2" x="10.0" ry="2"/> | |
<text x="13.00" y="637.50" font-size="12" font-family="Verdana">paintImage</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('NativeCanvas.drawImageRect (9.70%)')" class="func_g"><title >NativeCanvas.drawImageRect (9.70%)</title> | |
<rect y="611.0" width="114.46003" height="15.0" rx="2" x="10.0" ry="2" fill="rgb(246,49,42)"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="621.50">NativeCanvas.d..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_NativeCanvas._drawImageRect (9.00%)')"><title >_NativeCanvas._drawImageRect (9.00%)</title> | |
<rect fill="rgb(226,103,31)" rx="2" ry="2" x="10.0" y="595.0" width="106.20003" height="15.0"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="605.50">_NativeCanvas..</text> | |
</g> | |
<g onmouseover="s('NativeCanvas.__drawImageRect$Method$FfiNative (8.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >NativeCanvas.__drawImageRect$Method$FfiNative (8.60%)</title> | |
<rect x="10.0" fill="rgb(245,121,21)" ry="2" y="579.0" width="101.48003" rx="2" height="15.0"/> | |
<text font-size="12" y="589.50" font-family="Verdana" x="13.00">NativeCanvas..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (8.40%)')"><title >stub CallNativeThroughSafepoint (8.40%)</title> | |
<rect width="99.12002" fill="rgb(223,52,23)" x="10.0" y="563.0" height="15.0" rx="2" ry="2"/> | |
<text x="13.00" y="573.50" font-family="Verdana" font-size="12">stub CallNat..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('tonic::FfiDispatcher<flutter::Canvas, _Dart_Handle* (flutter::Canvas::*)(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int), &flutter::Canvas::drawImageRect(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int)>::Call(tonic::DartWrappable*, tonic::DartWrappable*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int) (8.20%)')" onmouseout="c()"><title >tonic::FfiDispatcher<flutter::Canvas, _Dart_Handle* (flutter::Canvas::*)(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int), &flutter::Canvas::drawImageRect(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int)>::Call(tonic::DartWrappable*, tonic::DartWrappable*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int) (8.20%)</title> | |
<rect height="15.0" y="547.0" rx="2" fill="rgb(235,175,24)" ry="2" width="96.76002" x="10.0"/> | |
<text y="557.50" x="13.00" font-family="Verdana" font-size="12">tonic::FfiD..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::Paint::paint(flutter::DlPaint&, flutter::DisplayListAttributeFlags const&) const (3.70%)')"><title >flutter::Paint::paint(flutter::DlPaint&, flutter::DisplayListAttributeFlags const&) const (3.70%)</title> | |
<rect height="15.0" ry="2" rx="2" y="531.0" width="43.660007" x="10.0" fill="rgb(232,13,19)"/> | |
<text x="13.00" y="541.50" font-size="12" font-family="Verdana">flut..</text> | |
</g> | |
<g onmouseover="s('tonic::DartByteData::DartByteData(_Dart_Handle*) (1.90%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >tonic::DartByteData::DartByteData(_Dart_Handle*) (1.90%)</title> | |
<rect rx="2" fill="rgb(228,31,30)" width="22.420002" y="515.0" ry="2" height="15.0" x="10.0"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="525.50">t..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Dart_TypedDataAcquireData (0.70%)')"><title >Dart_TypedDataAcquireData (0.70%)</title> | |
<rect fill="rgb(249,26,50)" rx="2" ry="2" x="10.0" width="8.260002" y="499.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="509.50" x="13.00"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('tonic::CheckAndHandleError(_Dart_Handle*) (0.50%)')"><title >tonic::CheckAndHandleError(_Dart_Handle*) (0.50%)</title> | |
<rect fill="rgb(210,132,5)" rx="2" ry="2" x="18.260002" width="5.9000015" y="499.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="509.50" x="21.26"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Dart_IsFatalError (0.20%)')"><title >Dart_IsFatalError (0.20%)</title> | |
<rect x="18.260002" rx="2" y="483.0" ry="2" height="15.0" width="2.3600006" fill="rgb(227,141,8)"/> | |
<text x="21.26" font-family="Verdana" y="493.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Dart_IsError (0.10%)')"><title >Dart_IsError (0.10%)</title> | |
<rect x="20.620003" rx="2" y="483.0" ry="2" height="15.0" width="1.1800003" fill="rgb(243,1,43)"/> | |
<text x="23.62" font-family="Verdana" y="493.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_IsUnhandledExceptionError (0.10%)')" onmouseout="c()"><title >Dart_IsUnhandledExceptionError (0.10%)</title> | |
<rect x="21.800003" rx="2" y="483.0" ry="2" height="15.0" width="1.1800003" fill="rgb(230,15,17)"/> | |
<text x="24.80" font-family="Verdana" y="493.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_IsNull (0.20%)')" onmouseout="c()"><title >Dart_IsNull (0.20%)</title> | |
<rect fill="rgb(241,153,27)" rx="2" ry="2" x="24.160002" width="2.3600006" y="499.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="509.50" x="27.16"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (0.20%)')" onmouseout="c()"><title >dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (0.20%)</title> | |
<rect fill="rgb(223,30,7)" rx="2" ry="2" x="26.520002" width="2.3600006" y="499.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="509.50" x="29.52"></text> | |
</g> | |
<g onmouseover="s('Dart_TypedDataReleaseData (0.50%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >Dart_TypedDataReleaseData (0.50%)</title> | |
<rect fill="rgb(224,115,12)" rx="2" ry="2" x="32.420002" width="5.9000015" y="515.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="525.50" x="35.42"></text> | |
</g> | |
<g onmouseover="s('dart::Heap::CheckConcurrentMarking(dart::Thread*, dart::GCReason, long) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::Heap::CheckConcurrentMarking(dart::Thread*, dart::GCReason, long) (0.10%)</title> | |
<rect rx="2" x="32.420002" height="15.0" y="499.0" fill="rgb(236,186,36)" width="1.1800003" ry="2"/> | |
<text x="35.42" font-size="12" y="509.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::Heap::CheckExternalGC(dart::Thread*) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::Heap::CheckExternalGC(dart::Thread*) (0.10%)</title> | |
<rect rx="2" x="33.600002" height="15.0" y="499.0" fill="rgb(210,182,6)" width="1.1800003" ry="2"/> | |
<text x="36.60" font-size="12" y="509.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Dart_IsNull (0.50%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Dart_IsNull (0.50%)</title> | |
<rect fill="rgb(212,31,18)" rx="2" ry="2" x="38.320004" width="5.9000015" y="515.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="525.50" x="41.32"></text> | |
</g> | |
<g onmouseover="s('flutter::DlPaint::setImageFilter(flutter::DlImageFilter const*) (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::DlPaint::setImageFilter(flutter::DlImageFilter const*) (0.20%)</title> | |
<rect fill="rgb(217,64,40)" rx="2" ry="2" x="44.220005" width="2.3600006" y="515.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="525.50" x="47.22"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('std::_fl::shared_ptr<flutter::DlImageFilter const>& std::_fl::shared_ptr<flutter::DlImageFilter const>::operator=[abi:v15000]<flutter::DlImageFilter, void>(std::_fl::shared_ptr<flutter::DlImageFilter>&&) (0.10%)')" onmouseout="c()"><title >std::_fl::shared_ptr<flutter::DlImageFilter const>& std::_fl::shared_ptr<flutter::DlImageFilter const>::operator=[abi:v15000]<flutter::DlImageFilter, void>(std::_fl::shared_ptr<flutter::DlImageFilter>&&) (0.10%)</title> | |
<rect y="499.0" rx="2" width="1.1800003" fill="rgb(208,84,38)" ry="2" x="44.220005" height="15.0"/> | |
<text y="509.50" x="47.22" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DlPaint::setColorFilter(flutter::DlColorFilter const*) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::DlPaint::setColorFilter(flutter::DlColorFilter const*) (0.10%)</title> | |
<rect fill="rgb(209,27,44)" rx="2" ry="2" x="46.580006" width="1.1800003" y="515.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="525.50" x="49.58"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::DrawImageRect(sk_sp<flutter::DlImage> const&, SkRect const&, SkRect const&, flutter::DlImageSampling, flutter::DlPaint const*, flutter::DlCanvas::SrcRectConstraint) (3.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayListBuilder::DrawImageRect(sk_sp<flutter::DlImage> const&, SkRect const&, SkRect const&, flutter::DlImageSampling, flutter::DlPaint const*, flutter::DlCanvas::SrcRectConstraint) (3.40%)</title> | |
<rect height="15.0" x="53.660007" rx="2" ry="2" fill="rgb(221,36,21)" y="531.0" width="40.120007"/> | |
<text font-family="Verdana" x="56.66" font-size="12" y="541.50">flu..</text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::drawImageRect(sk_sp<flutter::DlImage>, impeller::TRect<float> const&, impeller::TRect<float> const&, flutter::DlImageSampling, bool, flutter::DlCanvas::SrcRectConstraint) (2.70%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::drawImageRect(sk_sp<flutter::DlImage>, impeller::TRect<float> const&, impeller::TRect<float> const&, flutter::DlImageSampling, bool, flutter::DlCanvas::SrcRectConstraint) (2.70%)</title> | |
<rect fill="rgb(208,155,53)" ry="2" rx="2" x="53.660007" y="515.0" width="31.860012" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="525.50" x="56.66">fl..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::AccumulateOpBounds(SkRect&, flutter::DisplayListAttributeFlags) (1.70%)')" onmouseout="c()"><title >flutter::DisplayListBuilder::AccumulateOpBounds(SkRect&, flutter::DisplayListAttributeFlags) (1.70%)</title> | |
<rect height="15.0" x="53.660007" fill="rgb(243,112,53)" width="20.060009" rx="2" ry="2" y="499.0"/> | |
<text x="56.66" y="509.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::DisplayListMatrixClipState::mapAndClipRect(SkRect const&, SkRect*) const (1.20%)')" onclick="zoom(this)"><title >flutter::DisplayListMatrixClipState::mapAndClipRect(SkRect const&, SkRect*) const (1.20%)</title> | |
<rect fill="rgb(230,98,34)" width="14.160007" rx="2" x="53.660007" ry="2" y="483.0" height="15.0"/> | |
<text y="493.50" font-size="12" font-family="Verdana" x="56.66"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::TRect<float>::TransformAndClipBounds(impeller::Matrix const&) const (0.90%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::TRect<float>::TransformAndClipBounds(impeller::Matrix const&) const (0.90%)</title> | |
<rect width="10.620007" height="15.0" y="467.0" ry="2" x="53.660007" rx="2" fill="rgb(213,132,13)"/> | |
<text font-size="12" font-family="Verdana" y="477.50" x="56.66"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('impeller::TRect<float>::GetTransformedPoints(impeller::Matrix const&) const (0.50%)')" class="func_g"><title >impeller::TRect<float>::GetTransformedPoints(impeller::Matrix const&) const (0.50%)</title> | |
<rect width="5.9000015" fill="rgb(207,26,7)" ry="2" x="53.660007" y="451.0" rx="2" height="15.0"/> | |
<text x="56.66" font-family="Verdana" font-size="12" y="461.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('impeller::TRect<float>::TransformBounds(impeller::Matrix const&) const (0.20%)')" class="func_g"><title >impeller::TRect<float>::TransformBounds(impeller::Matrix const&) const (0.20%)</title> | |
<rect width="2.3600006" fill="rgb(215,85,40)" ry="2" x="59.56001" y="451.0" rx="2" height="15.0"/> | |
<text x="62.56" font-family="Verdana" font-size="12" y="461.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_platform_memmove (0.10%)')" onclick="zoom(this)"><title >_platform_memmove (0.10%)</title> | |
<rect fill="rgb(222,114,37)" width="1.1800003" rx="2" x="67.820015" ry="2" y="483.0" height="15.0"/> | |
<text y="493.50" font-size="12" font-family="Verdana" x="70.82"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayListStorage::realloc(unsigned long) (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayListStorage::realloc(unsigned long) (0.30%)</title> | |
<rect height="15.0" x="73.72002" fill="rgb(217,183,9)" width="3.540001" rx="2" ry="2" y="499.0"/> | |
<text x="76.72" y="509.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_realloc (0.30%)')" onclick="zoom(this)"><title >_realloc (0.30%)</title> | |
<rect fill="rgb(226,116,27)" rx="2" width="3.540001" y="483.0" height="15.0" ry="2" x="73.72002"/> | |
<text font-family="Verdana" y="493.50" x="76.72" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('_malloc_zone_realloc (0.20%)')" class="func_g"><title >_malloc_zone_realloc (0.20%)</title> | |
<rect width="2.3600006" fill="rgb(211,219,32)" ry="2" x="73.72002" y="467.0" rx="2" height="15.0"/> | |
<text y="477.50" x="76.72" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('szone_realloc (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >szone_realloc (0.20%)</title> | |
<rect width="2.3600006" rx="2" height="15.0" ry="2" x="73.72002" y="451.0" fill="rgb(209,206,10)"/> | |
<text font-family="Verdana" font-size="12" y="461.50" x="76.72"></text> | |
</g> | |
<g onmouseover="s('_platform_memmove (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_platform_memmove (0.10%)</title> | |
<rect height="15.0" width="1.1800003" y="435.0" rx="2" ry="2" x="73.72002" fill="rgb(214,10,1)"/> | |
<text font-family="Verdana" y="445.50" font-size="12" x="76.72"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_platform_memset (0.10%)')" class="func_g" onclick="zoom(this)"><title >_platform_memset (0.10%)</title> | |
<rect fill="rgb(223,40,3)" rx="2" width="1.1800003" y="499.0" height="15.0" ry="2" x="77.26001"/> | |
<text x="80.26" y="509.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DisplayListBuilder::SetAttributesFromPaint(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.40%)')" onmouseout="c()"><title >flutter::DisplayListBuilder::SetAttributesFromPaint(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.40%)</title> | |
<rect fill="rgb(250,209,22)" rx="2" width="4.720001" y="515.0" height="15.0" ry="2" x="85.52002"/> | |
<text x="88.52" y="525.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('bool flutter::Equals<flutter::DlImageFilter>(flutter::DlImageFilter const*, flutter::DlImageFilter const*) (0.10%)')"><title >bool flutter::Equals<flutter::DlImageFilter>(flutter::DlImageFilter const*, flutter::DlImageFilter const*) (0.10%)</title> | |
<rect fill="rgb(243,166,51)" width="1.1800003" x="85.52002" ry="2" y="499.0" height="15.0" rx="2"/> | |
<text y="509.50" font-family="Verdana" x="88.52" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x19 (0.40%)')" onmouseout="c()"><title >0x19 (0.40%)</title> | |
<rect x="111.48003" width="4.720001" height="15.0" rx="2" fill="rgb(208,150,38)" ry="2" y="579.0"/> | |
<text x="114.48" y="589.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('NativeCanvas.__drawImageRect$Method$FfiNative (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >NativeCanvas.__drawImageRect$Method$FfiNative (0.40%)</title> | |
<rect fill="rgb(211,183,38)" rx="2" ry="2" x="111.48003" width="4.720001" y="563.0" height="15.0"/> | |
<text x="114.48" y="573.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::Thread::ExitApiScope() (0.20%)')"><title >dart::Thread::ExitApiScope() (0.20%)</title> | |
<rect x="111.48003" fill="rgb(239,155,7)" ry="2" y="547.0" width="2.3600006" rx="2" height="15.0"/> | |
<text y="557.50" font-size="12" font-family="Verdana" x="114.48"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectParameterizedStub (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub _iso_stub_AllocateObjectParameterizedStub (0.20%)</title> | |
<rect fill="rgb(218,51,43)" rx="2" ry="2" x="116.20003" width="2.3600006" y="595.0" height="15.0"/> | |
<text x="119.20" y="605.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('LinkedHashSetMixin.contains (#5) (2.90%)')" onmouseout="c()"><title >LinkedHashSetMixin.contains (#5) (2.90%)</title> | |
<rect fill="rgb(225,28,7)" rx="2" ry="2" x="124.46003" width="34.22001" y="611.0" height="15.0"/> | |
<text x="127.46" y="621.50" font-size="12" font-family="Verdana">Li..</text> | |
</g> | |
<g class="func_g" onmouseover="s('LinkedHashSetMixin._getKeyOrData (2.80%)')" onmouseout="c()" onclick="zoom(this)"><title >LinkedHashSetMixin._getKeyOrData (2.80%)</title> | |
<rect x="124.46003" width="33.04" height="15.0" rx="2" fill="rgb(242,90,54)" ry="2" y="595.0"/> | |
<text font-family="Verdana" x="127.46" y="605.50" font-size="12">Li..</text> | |
</g> | |
<g class="func_g" onmouseover="s('OperatorEqualsAndHashCode._hashCode (2.80%)')" onmouseout="c()" onclick="zoom(this)"><title >OperatorEqualsAndHashCode._hashCode (2.80%)</title> | |
<rect y="579.0" width="33.04" height="15.0" rx="2" x="124.46003" ry="2" fill="rgb(233,158,14)"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="127.46">Op..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('ImageSizeInfo.hashCode (2.70%)')" class="func_g"><title >ImageSizeInfo.hashCode (2.70%)</title> | |
<rect y="563.0" x="124.46003" fill="rgb(208,109,35)" rx="2" ry="2" width="31.860008" height="15.0"/> | |
<text x="127.46" y="573.50" font-size="12" font-family="Verdana">Im..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Object.hash (2.60%)')"><title >Object.hash (2.60%)</title> | |
<rect rx="2" ry="2" y="547.0" fill="rgb(246,228,42)" height="15.0" width="30.680016" x="124.46003"/> | |
<text y="557.50" x="127.46" font-family="Verdana" font-size="12">Ob..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Size.hashCode (2.00%)')" onmouseout="c()"><title >Size.hashCode (2.00%)</title> | |
<rect width="23.599998" height="15.0" ry="2" rx="2" fill="rgb(217,54,36)" y="531.0" x="124.46003"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="127.46">S..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Object.hash (1.80%)')" class="func_g" onmouseout="c()"><title >Object.hash (1.80%)</title> | |
<rect fill="rgb(252,212,9)" ry="2" height="15.0" rx="2" x="124.46003" width="21.240013" y="515.0"/> | |
<text x="127.46" y="525.50" font-size="12" font-family="Verdana">O..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('double.hashCode (0.50%)')" class="func_g"><title >double.hashCode (0.50%)</title> | |
<rect fill="rgb(222,229,8)" y="499.0" height="15.0" ry="2" rx="2" width="5.9000015" x="124.46003"/> | |
<text font-size="12" font-family="Verdana" x="127.46" y="509.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('SystemHash.hash2 (0.10%)')"><title >SystemHash.hash2 (0.10%)</title> | |
<rect fill="rgb(213,38,33)" y="499.0" height="15.0" ry="2" rx="2" width="1.1800079" x="130.36003"/> | |
<text font-size="12" font-family="Verdana" x="133.36" y="509.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('SystemHash.hash3 (0.10%)')"><title >SystemHash.hash3 (0.10%)</title> | |
<rect width="1.1799927" height="15.0" ry="2" rx="2" fill="rgb(213,224,38)" y="531.0" x="148.06003"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="151.06"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Iterable.fold (1.30%)')" onmouseout="c()"><title >Iterable.fold (1.30%)</title> | |
<rect fill="rgb(251,195,27)" rx="2" ry="2" x="158.68004" width="15.339996" y="611.0" height="15.0"/> | |
<text x="161.68" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('CompactIterator.moveNext (0.40%)')"><title >CompactIterator.moveNext (0.40%)</title> | |
<rect x="158.68004" width="4.720001" height="15.0" rx="2" fill="rgb(222,83,36)" ry="2" y="595.0"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="161.68"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('CompactIterable.iterator (0.40%)')"><title >CompactIterable.iterator (0.40%)</title> | |
<rect x="163.40004" width="4.720001" height="15.0" rx="2" fill="rgb(255,218,50)" ry="2" y="595.0"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="166.40"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectParameterizedStub (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >stub _iso_stub_AllocateObjectParameterizedStub (0.20%)</title> | |
<rect width="2.3600006" fill="rgb(211,46,11)" x="163.40004" y="579.0" height="15.0" rx="2" ry="2"/> | |
<text y="589.50" x="166.40" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('paintImage.<anonymous closure> (#2) (0.10%)')"><title >paintImage.<anonymous closure> (#2) (0.10%)</title> | |
<rect x="168.12004" width="1.1800079" height="15.0" rx="2" fill="rgb(209,10,29)" ry="2" y="595.0"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="171.12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Rect.size (0.60%)')" onmouseout="c()"><title >Rect.size (0.60%)</title> | |
<rect fill="rgb(212,115,23)" rx="2" ry="2" x="174.02003" width="7.080002" y="611.0" height="15.0"/> | |
<text x="177.02" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Rect.height (0.20%)')"><title >Rect.height (0.20%)</title> | |
<rect x="174.02003" width="2.3600006" height="15.0" rx="2" fill="rgb(254,129,0)" ry="2" y="595.0"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="177.02"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect x="176.38004" width="1.1799927" height="15.0" rx="2" fill="rgb(232,75,17)" ry="2" y="595.0"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="179.38"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Paint.color= (0.50%)')" onmouseout="c()"><title >Paint.color= (0.50%)</title> | |
<rect fill="rgb(237,170,3)" rx="2" ry="2" x="181.10004" width="5.899994" y="611.0" height="15.0"/> | |
<text x="184.10" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('new Paint (0.50%)')" onmouseout="c()"><title >new Paint (0.50%)</title> | |
<rect fill="rgb(219,229,21)" rx="2" ry="2" x="187.00003" width="5.899994" y="611.0" height="15.0"/> | |
<text x="190.00" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('new ByteData (0.50%)')"><title >new ByteData (0.50%)</title> | |
<rect x="187.00003" width="5.899994" rx="2" ry="2" height="15.0" y="595.0" fill="rgb(230,68,9)"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="190.00"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('new Uint8List (0.10%)')"><title >new Uint8List (0.10%)</title> | |
<rect x="187.00003" width="1.1799927" height="15.0" rx="2" fill="rgb(254,167,6)" ry="2" y="579.0"/> | |
<text font-family="Verdana" y="589.50" font-size="12" x="190.00"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('stub _iso_stub_AllocateUint8ArrayStub (0.10%)')"><title >stub _iso_stub_AllocateUint8ArrayStub (0.10%)</title> | |
<rect height="15.0" width="1.1799927" y="563.0" rx="2" ry="2" x="187.00003" fill="rgb(240,201,15)"/> | |
<text font-size="12" font-family="Verdana" x="190.00" y="573.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('new _ByteDataView._ (0.10%)')"><title >new _ByteDataView._ (0.10%)</title> | |
<rect x="188.18002" width="1.1799927" height="15.0" rx="2" fill="rgb(245,155,2)" ry="2" y="579.0"/> | |
<text font-family="Verdana" y="589.50" font-size="12" x="191.18"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect height="15.0" width="1.1799927" y="563.0" rx="2" ry="2" x="188.18002" fill="rgb(209,5,4)"/> | |
<text font-size="12" font-family="Verdana" x="191.18" y="573.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('rangeCheck (0.10%)')"><title >rangeCheck (0.10%)</title> | |
<rect x="189.36003" width="1.1799927" height="15.0" rx="2" fill="rgb(225,5,31)" ry="2" y="579.0"/> | |
<text font-family="Verdana" y="589.50" font-size="12" x="192.36"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.50%)')" onmouseout="c()"><title >stub _iso_stub_AllocateObjectStub (0.50%)</title> | |
<rect fill="rgb(207,117,14)" rx="2" ry="2" x="192.90002" width="5.899994" y="611.0" height="15.0"/> | |
<text x="195.90" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('applyBoxFit (0.30%)')" onmouseout="c()"><title >applyBoxFit (0.30%)</title> | |
<rect fill="rgb(250,131,10)" rx="2" ry="2" x="198.80002" width="3.5400085" y="611.0" height="15.0"/> | |
<text x="201.80" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect x="198.80002" width="1.1799927" rx="2" ry="2" height="15.0" y="595.0" fill="rgb(240,11,24)"/> | |
<text font-family="Verdana" y="605.50" font-size="12" x="201.80"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('SchedulerBinding.addPostFrameCallback (0.50%)')" onmouseout="c()"><title >SchedulerBinding.addPostFrameCallback (0.50%)</title> | |
<rect fill="rgb(221,2,22)" rx="2" ry="2" x="202.34003" width="5.899994" y="611.0" height="15.0"/> | |
<text x="205.34" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('List.add (0.50%)')"><title >List.add (0.50%)</title> | |
<rect x="202.34003" width="5.899994" height="15.0" rx="2" fill="rgb(220,139,20)" ry="2" y="595.0"/> | |
<text font-family="Verdana" y="605.50" font-size="12" x="205.34"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('stub SlowTypeTest (0.20%)')"><title >stub SlowTypeTest (0.20%)</title> | |
<rect x="202.34003" ry="2" fill="rgb(229,25,30)" width="2.3600006" height="15.0" y="579.0" rx="2"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="205.34"></text> | |
</g> | |
<g class="func_g" onmouseover="s('stub Subtype6TestCache (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >stub Subtype6TestCache (0.20%)</title> | |
<rect fill="rgb(248,2,15)" rx="2" ry="2" y="563.0" x="202.34003" height="15.0" width="2.3600006"/> | |
<text y="573.50" x="205.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('List._growToNextCapacity (0.10%)')"><title >List._growToNextCapacity (0.10%)</title> | |
<rect x="204.70003" ry="2" fill="rgb(236,131,0)" width="1.1799927" height="15.0" y="579.0" rx="2"/> | |
<text y="589.50" x="207.70" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('List._grow (0.10%)')"><title >List._grow (0.10%)</title> | |
<rect fill="rgb(220,188,17)" rx="2" ry="2" y="563.0" x="204.70003" height="15.0" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" x="207.70" y="573.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Offset.& (0.30%)')" onmouseout="c()"><title >Offset.& (0.30%)</title> | |
<rect fill="rgb(213,150,32)" rx="2" ry="2" x="208.24002" width="3.5400085" y="611.0" height="15.0"/> | |
<text x="211.24" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect x="208.24002" width="1.1799927" height="15.0" rx="2" fill="rgb(249,88,52)" ry="2" y="595.0"/> | |
<text font-family="Verdana" y="605.50" font-size="12" x="211.24"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PlatformDispatcher.views (0.30%)')" onmouseout="c()"><title >PlatformDispatcher.views (0.30%)</title> | |
<rect fill="rgb(240,36,37)" rx="2" ry="2" x="211.78003" width="3.5400085" y="611.0" height="15.0"/> | |
<text x="214.78" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub InstantiateTypeArguments (0.20%)')"><title >stub InstantiateTypeArguments (0.20%)</title> | |
<rect x="211.78003" width="2.3600006" height="15.0" rx="2" fill="rgb(223,63,16)" ry="2" y="595.0"/> | |
<text font-family="Verdana" y="605.50" font-size="12" x="214.78"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_LinkedHashMapMixin.values (0.10%)')"><title >_LinkedHashMapMixin.values (0.10%)</title> | |
<rect x="214.14003" width="1.1800079" height="15.0" rx="2" fill="rgb(219,205,30)" ry="2" y="595.0"/> | |
<text font-family="Verdana" y="605.50" font-size="12" x="217.14"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_LinkedHashMapMixin.[] (0.30%)')" onmouseout="c()"><title >_LinkedHashMapMixin.[] (0.30%)</title> | |
<rect fill="rgb(247,30,23)" rx="2" ry="2" x="215.32004" width="3.5400085" y="611.0" height="15.0"/> | |
<text x="218.32" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('LinkedHashMapMixin._getValueOrData (0.30%)')"><title >LinkedHashMapMixin._getValueOrData (0.30%)</title> | |
<rect x="215.32004" width="3.5399933" height="15.0" rx="2" fill="rgb(234,6,21)" ry="2" y="595.0"/> | |
<text font-family="Verdana" y="605.50" font-size="12" x="218.32"></text> | |
</g> | |
<g onmouseover="s('OperatorEqualsAndHashCode._hashCode (#2) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >OperatorEqualsAndHashCode._hashCode (#2) (0.10%)</title> | |
<rect width="1.1799927" y="579.0" height="15.0" fill="rgb(218,148,40)" ry="2" x="215.32004" rx="2"/> | |
<text font-size="12" y="589.50" font-family="Verdana" x="218.32"></text> | |
</g> | |
<g onmouseover="s('int.toDouble (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >int.toDouble (0.30%)</title> | |
<rect fill="rgb(219,72,50)" rx="2" ry="2" x="218.86005" width="3.5400085" y="611.0" height="15.0"/> | |
<text x="221.86" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('new _Double.fromInteger (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >new _Double.fromInteger (0.30%)</title> | |
<rect x="218.86005" width="3.5399933" height="15.0" rx="2" fill="rgb(218,61,24)" ry="2" y="595.0"/> | |
<text font-family="Verdana" font-size="12" y="605.50" x="221.86"></text> | |
</g> | |
<g onmouseover="s('Size./ (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Size./ (0.30%)</title> | |
<rect fill="rgb(237,104,50)" rx="2" ry="2" x="222.40005" width="3.5400085" y="611.0" height="15.0"/> | |
<text x="225.40" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect x="222.40005" width="1.1799927" height="15.0" rx="2" fill="rgb(216,202,29)" ry="2" y="595.0"/> | |
<text font-family="Verdana" y="605.50" font-size="12" x="225.40"></text> | |
</g> | |
<g onmouseover="s('Size.* (#2) (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Size.* (#2) (0.20%)</title> | |
<rect fill="rgb(226,54,24)" rx="2" ry="2" x="225.94006" width="2.3600006" y="611.0" height="15.0"/> | |
<text x="228.94" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect x="225.94006" width="1.1799927" height="15.0" rx="2" fill="rgb(215,94,15)" ry="2" y="595.0"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="228.94"></text> | |
</g> | |
<g onmouseover="s('Alignment.inscribe (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Alignment.inscribe (0.20%)</title> | |
<rect fill="rgb(237,53,46)" rx="2" ry="2" x="228.30006" width="2.3600006" y="611.0" height="15.0"/> | |
<text x="231.30" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('int.toDouble (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >int.toDouble (0.30%)</title> | |
<rect fill="rgb(215,108,6)" rx="2" ry="2" x="230.66006" width="3.5400085" y="611.0" height="15.0"/> | |
<text x="233.66" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('new _Double.fromInteger (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >new _Double.fromInteger (0.30%)</title> | |
<rect height="15.0" x="230.66006" width="3.5399933" rx="2" y="595.0" ry="2" fill="rgb(239,123,6)"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="233.66"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateClosureStub (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub _iso_stub_AllocateClosureStub (0.20%)</title> | |
<rect fill="rgb(217,89,30)" rx="2" ry="2" x="234.20007" width="2.3600006" y="611.0" height="15.0"/> | |
<text x="237.20" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Rect.topLeft (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Rect.topLeft (0.20%)</title> | |
<rect fill="rgb(242,64,41)" rx="2" ry="2" x="236.56007" width="2.3600006" y="611.0" height="15.0"/> | |
<text x="239.56" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectStub (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >stub _iso_stub_AllocateObjectStub (0.20%)</title> | |
<rect height="15.0" y="595.0" rx="2" ry="2" x="236.56007" width="2.3600006" fill="rgb(213,130,30)"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="239.56"></text> | |
</g> | |
<g onmouseover="s('Offset.translate (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Offset.translate (0.10%)</title> | |
<rect fill="rgb(214,92,38)" rx="2" ry="2" x="238.92007" width="1.1799927" y="611.0" height="15.0"/> | |
<text x="241.92" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect height="15.0" y="595.0" rx="2" ry="2" x="238.92007" width="1.1799927" fill="rgb(207,146,40)"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="241.92"></text> | |
</g> | |
<g onmouseover="s('Rect.isEmpty (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Rect.isEmpty (0.10%)</title> | |
<rect fill="rgb(205,68,23)" rx="2" ry="2" x="240.10007" width="1.1799927" y="611.0" height="15.0"/> | |
<text x="243.10" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Offset.& (0.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Offset.& (0.60%)</title> | |
<rect fill="rgb(247,59,38)" rx="2" ry="2" x="273.14005" width="7.0799866" y="627.0" height="15.0"/> | |
<text x="276.14" y="637.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.30%)')"><title >stub _iso_stub_AllocateObjectStub (0.30%)</title> | |
<rect height="15.0" y="611.0" rx="2" ry="2" x="273.14005" width="3.5400085" fill="rgb(225,144,18)"/> | |
<text x="276.14" y="621.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.canvas (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.canvas (0.40%)</title> | |
<rect fill="rgb(221,50,37)" rx="2" ry="2" x="280.22003" width="4.720001" y="627.0" height="15.0"/> | |
<text x="283.22" y="637.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderBox.size (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderBox.size (0.10%)</title> | |
<rect fill="rgb(217,87,45)" rx="2" ry="2" x="284.94003" width="1.1799927" y="627.0" height="15.0"/> | |
<text x="287.94" y="637.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (11.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (11.00%)</title> | |
<rect fill="rgb(253,23,12)" rx="2" ry="2" x="293.20007" width="129.80005" y="643.0" height="15.0"/> | |
<text x="296.20" y="653.50" font-size="12" font-family="Verdana">RenderProxyBoxMi..</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (11.00%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >PaintingContext.paintChild (11.00%)</title> | |
<rect width="129.80005" height="15.0" y="627.0" ry="2" fill="rgb(241,42,7)" rx="2" x="293.20007"/> | |
<text y="637.50" font-family="Verdana" font-size="12" x="296.20">PaintingContext...</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (11.00%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (11.00%)</title> | |
<rect height="15.0" y="611.0" width="129.80005" x="293.20007" rx="2" fill="rgb(251,0,28)" ry="2"/> | |
<text x="296.20" y="621.50" font-size="12" font-family="Verdana">RenderObject._pa..</text> | |
</g> | |
<g onmouseover="s('RenderParagraph.paint (10.90%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderParagraph.paint (10.90%)</title> | |
<rect rx="2" width="128.62003" y="595.0" height="15.0" fill="rgb(244,47,23)" x="293.20007" ry="2"/> | |
<text y="605.50" x="296.20" font-family="Verdana" font-size="12">RenderParagraph...</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('TextPainter.paint (10.70%)')" onmouseout="c()"><title >TextPainter.paint (10.70%)</title> | |
<rect x="293.20007" rx="2" y="579.0" height="15.0" width="126.26001" ry="2" fill="rgb(211,80,54)"/> | |
<text font-size="12" x="296.20" font-family="Verdana" y="589.50">TextPainter.paint</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('NativeCanvas.drawParagraph (10.60%)')"><title >NativeCanvas.drawParagraph (10.60%)</title> | |
<rect x="293.20007" height="15.0" ry="2" fill="rgb(233,45,19)" rx="2" width="125.08002" y="563.0"/> | |
<text font-size="12" x="296.20" font-family="Verdana" y="573.50">NativeCanvas.dr..</text> | |
</g> | |
<g onmouseover="s('_NativeParagraph._paint (10.60%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_NativeParagraph._paint (10.60%)</title> | |
<rect rx="2" height="15.0" x="293.20007" width="125.08002" fill="rgb(242,185,2)" ry="2" y="547.0"/> | |
<text y="557.50" font-size="12" x="296.20" font-family="Verdana">_NativeParagrap..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('NativeParagraph.__paint$Method$FfiNative (10.60%)')" class="func_g" onmouseout="c()"><title >NativeParagraph.__paint$Method$FfiNative (10.60%)</title> | |
<rect width="125.08002" height="15.0" rx="2" x="293.20007" y="531.0" ry="2" fill="rgb(232,35,9)"/> | |
<text font-family="Verdana" font-size="12" y="541.50" x="296.20">NativeParagraph..</text> | |
</g> | |
<g onmouseover="s('stub CallNativeThroughSafepoint (10.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (10.60%)</title> | |
<rect ry="2" height="15.0" width="125.08002" fill="rgb(209,44,47)" y="515.0" rx="2" x="293.20007"/> | |
<text font-size="12" font-family="Verdana" y="525.50" x="296.20">stub CallNative..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('txt::ParagraphSkia::Paint(flutter::DisplayListBuilder*, double, double) (10.60%)')"><title >txt::ParagraphSkia::Paint(flutter::DisplayListBuilder*, double, double) (10.60%)</title> | |
<rect width="125.08002" y="499.0" rx="2" x="293.20007" fill="rgb(220,81,26)" height="15.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="296.20" y="509.50">txt::ParagraphS..</text> | |
</g> | |
<g onmouseover="s('skia::textlayout::ParagraphImpl::paint(skia::textlayout::ParagraphPainter*, float, float) (10.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >skia::textlayout::ParagraphImpl::paint(skia::textlayout::ParagraphPainter*, float, float) (10.60%)</title> | |
<rect width="125.08002" fill="rgb(241,70,4)" height="15.0" y="483.0" ry="2" x="293.20007" rx="2"/> | |
<text x="296.20" y="493.50" font-size="12" font-family="Verdana">skia::textlayou..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('skia::textlayout::TextLine::paint(skia::textlayout::ParagraphPainter*, float, float) (10.60%)')"><title >skia::textlayout::TextLine::paint(skia::textlayout::ParagraphPainter*, float, float) (10.60%)</title> | |
<rect rx="2" x="293.20007" y="467.0" width="125.08002" ry="2" height="15.0" fill="rgb(225,199,28)"/> | |
<text font-size="12" y="477.50" font-family="Verdana" x="296.20">skia::textlayou..</text> | |
</g> | |
<g onmouseover="s('txt::(anonymous namespace)::DisplayListParagraphPainter::drawTextBlob(sk_sp<SkTextBlob> const&, float, float, std::_fl::variant<SkPaint, int> const&) (10.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >txt::(anonymous namespace)::DisplayListParagraphPainter::drawTextBlob(sk_sp<SkTextBlob> const&, float, float, std::_fl::variant<SkPaint, int> const&) (10.50%)</title> | |
<rect width="123.900024" ry="2" x="293.20007" height="15.0" fill="rgb(244,133,7)" y="451.0" rx="2"/> | |
<text y="461.50" font-size="12" font-family="Verdana" x="296.20">txt::(anonymous..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('impeller::MakeTextFrameFromTextBlobSkia(sk_sp<SkTextBlob> const&) (10.30%)')"><title >impeller::MakeTextFrameFromTextBlobSkia(sk_sp<SkTextBlob> const&) (10.30%)</title> | |
<rect ry="2" y="435.0" rx="2" x="293.20007" width="121.54004" height="15.0" fill="rgb(254,168,38)"/> | |
<text y="445.50" x="296.20" font-size="12" font-family="Verdana">impeller::MakeT..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('SkTypeface_Mac::onCreateScalerContext(SkScalerContextEffects const&, SkDescriptor const*) const (9.40%)')"><title >SkTypeface_Mac::onCreateScalerContext(SkScalerContextEffects const&, SkDescriptor const*) const (9.40%)</title> | |
<rect width="110.92001" rx="2" x="293.20007" y="419.0" fill="rgb(218,177,17)" ry="2" height="15.0"/> | |
<text font-size="12" x="296.20" y="429.50" font-family="Verdana">SkTypeface_Ma..</text> | |
</g> | |
<g onmouseover="s('SkCTFontCreateExactCopy(__CTFont const*, double, OpszVariation) (9.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >SkCTFontCreateExactCopy(__CTFont const*, double, OpszVariation) (9.20%)</title> | |
<rect y="403.0" ry="2" height="15.0" rx="2" x="293.20007" width="108.56" fill="rgb(245,128,12)"/> | |
<text font-size="12" y="413.50" x="296.20" font-family="Verdana">SkCTFontCreat..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('CTFontCreateCopyWithAttributes (8.00%)')"><title >CTFontCreateCopyWithAttributes (8.00%)</title> | |
<rect y="387.0" x="293.20007" height="15.0" rx="2" ry="2" width="94.400024" fill="rgb(220,56,48)"/> | |
<text x="296.20" font-family="Verdana" y="397.50" font-size="12">CTFontCreat..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('CTFontCreateWithFontDescriptor (6.40%)')"><title >CTFontCreateWithFontDescriptor (6.40%)</title> | |
<rect x="293.20007" y="371.0" fill="rgb(254,63,33)" ry="2" height="15.0" width="75.52002" rx="2"/> | |
<text x="296.20" font-size="12" font-family="Verdana" y="381.50">CTFontCr..</text> | |
</g> | |
<g class="func_g" onmouseover="s('TCFRef<CTFont*> TCFBase_NEW<CTFont, __CTFontDescriptor const*, double&, CGAffineTransform const*&, __CTFontDescriptor const*&>(__CTFontDescriptor const*&&, double&, CGAffineTransform const*&, __CTFontDescriptor const*&) (3.50%)')" onclick="zoom(this)" onmouseout="c()"><title >TCFRef<CTFont*> TCFBase_NEW<CTFont, __CTFontDescriptor const*, double&, CGAffineTransform const*&, __CTFontDescriptor const*&>(__CTFontDescriptor const*&&, double&, CGAffineTransform const*&, __CTFontDescriptor const*&) (3.50%)</title> | |
<rect width="41.30002" x="293.20007" fill="rgb(219,216,55)" height="15.0" y="355.0" rx="2" ry="2"/> | |
<text x="296.20" y="365.50" font-family="Verdana" font-size="12">TCF..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('TFont::TFont(__CTFontDescriptor const*, double, CGAffineTransform const*, __CTFontDescriptor const*) (3.40%)')" class="func_g" onclick="zoom(this)"><title >TFont::TFont(__CTFontDescriptor const*, double, CGAffineTransform const*, __CTFontDescriptor const*) (3.40%)</title> | |
<rect x="293.20007" fill="rgb(208,67,6)" height="15.0" width="40.119995" rx="2" ry="2" y="339.0"/> | |
<text x="296.20" y="349.50" font-size="12" font-family="Verdana">TFo..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('TFont::SetOpticalSize(__CTFontDescriptor const*, CGFont*) (1.40%)')" onclick="zoom(this)"><title >TFont::SetOpticalSize(__CTFontDescriptor const*, CGFont*) (1.40%)</title> | |
<rect y="323.0" x="293.20007" rx="2" fill="rgb(251,115,38)" height="15.0" ry="2" width="16.519989"/> | |
<text y="333.50" font-family="Verdana" x="296.20" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('TBaseFont::CopyOpticalSizeAxis() const (0.50%)')" class="func_g"><title >TBaseFont::CopyOpticalSizeAxis() const (0.50%)</title> | |
<rect y="307.0" height="15.0" width="5.899994" fill="rgb(246,159,34)" ry="2" x="293.20007" rx="2"/> | |
<text y="317.50" x="296.20" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CFEqual (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >CFEqual (0.20%)</title> | |
<rect x="293.20007" ry="2" y="291.0" width="2.3599854" height="15.0" fill="rgb(217,68,29)" rx="2"/> | |
<text font-family="Verdana" x="296.20" font-size="12" y="301.50"></text> | |
</g> | |
<g onmouseover="s('-[NSNumber isEqualToNumber:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[NSNumber isEqualToNumber:] (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(248,99,7)" height="15.0" y="275.0" rx="2" x="293.20007" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="296.20" y="285.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[NSNumber compare:] (0.10%)')" onclick="zoom(this)"><title >-[NSNumber compare:] (0.10%)</title> | |
<rect height="15.0" width="1.1799927" ry="2" x="293.20007" y="259.0" fill="rgb(205,31,37)" rx="2"/> | |
<text y="269.50" font-size="12" x="296.20" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[NSConstantDictionary objectForKey:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[NSConstantDictionary objectForKey:] (0.10%)</title> | |
<rect x="295.56006" ry="2" y="291.0" width="1.1799927" height="15.0" fill="rgb(234,196,33)" rx="2"/> | |
<text font-family="Verdana" x="298.56" font-size="12" y="301.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('bsearch (0.10%)')" onmouseout="c()"><title >bsearch (0.10%)</title> | |
<rect ry="2" fill="rgb(228,171,16)" y="275.0" x="295.56006" height="15.0" rx="2" width="1.1799927"/> | |
<text x="298.56" font-family="Verdana" font-size="12" y="285.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('comparisonUsingOrderingForStringKeys (0.10%)')" onclick="zoom(this)" class="func_g"><title >comparisonUsingOrderingForStringKeys (0.10%)</title> | |
<rect width="1.1799927" x="295.56006" y="259.0" rx="2" height="15.0" fill="rgb(206,161,41)" ry="2"/> | |
<text y="269.50" font-size="12" x="298.56" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('ClampValueToRangeOfAxis(double, __CFDictionary const*) (0.30%)')"><title >ClampValueToRangeOfAxis(double, __CFDictionary const*) (0.30%)</title> | |
<rect height="15.0" x="299.10007" rx="2" ry="2" width="3.5400085" y="307.0" fill="rgb(208,164,18)"/> | |
<text y="317.50" font-size="12" x="302.10" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('CompareValueWithValueInAxisForKey(double, __CFDictionary const*, __CFString const*, double*) (0.30%)')" onclick="zoom(this)"><title >CompareValueWithValueInAxisForKey(double, __CFDictionary const*, __CFString const*, double*) (0.30%)</title> | |
<rect x="299.10007" ry="2" y="291.0" width="3.5400085" height="15.0" fill="rgb(254,199,37)" rx="2"/> | |
<text font-size="12" y="301.50" x="302.10" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[NSConstantDictionary objectForKey:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[NSConstantDictionary objectForKey:] (0.10%)</title> | |
<rect width="1.1799927" x="299.10007" y="275.0" rx="2" height="15.0" fill="rgb(223,37,19)" ry="2"/> | |
<text x="302.10" font-size="12" font-family="Verdana" y="285.50"></text> | |
</g> | |
<g onmouseover="s('bsearch (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >bsearch (0.10%)</title> | |
<rect width="1.1799927" rx="2" height="15.0" x="299.10007" y="259.0" fill="rgb(234,43,26)" ry="2"/> | |
<text font-size="12" x="302.10" font-family="Verdana" y="269.50"></text> | |
</g> | |
<g onmouseover="s('comparisonUsingOrderingForStringKeys (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >comparisonUsingOrderingForStringKeys (0.10%)</title> | |
<rect y="243.0" fill="rgb(211,167,5)" x="299.10007" rx="2" width="1.1799927" height="15.0" ry="2"/> | |
<text x="302.10" font-family="Verdana" font-size="12" y="253.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[NSConstantDictionary objectForKey:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[NSConstantDictionary objectForKey:] (0.10%)</title> | |
<rect height="15.0" x="302.64008" rx="2" ry="2" width="1.1799927" y="307.0" fill="rgb(233,87,8)"/> | |
<text y="317.50" font-size="12" x="305.64" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('bsearch (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >bsearch (0.10%)</title> | |
<rect ry="2" x="302.64008" width="1.1799927" height="15.0" y="291.0" fill="rgb(227,158,18)" rx="2"/> | |
<text x="305.64" font-family="Verdana" font-size="12" y="301.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('comparisonUsingOrderingForStringKeys (0.10%)')" onclick="zoom(this)" class="func_g"><title >comparisonUsingOrderingForStringKeys (0.10%)</title> | |
<rect width="1.1799927" x="302.64008" y="275.0" rx="2" height="15.0" fill="rgb(219,124,30)" ry="2"/> | |
<text font-family="Verdana" x="305.64" y="285.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('CFStringCompareWithOptionsAndLocale (0.10%)')" onmouseout="c()"><title >CFStringCompareWithOptionsAndLocale (0.10%)</title> | |
<rect fill="rgb(212,75,15)" width="1.1799927" height="15.0" ry="2" x="302.64008" y="259.0" rx="2"/> | |
<text y="269.50" font-size="12" x="305.64" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[__NSDictionaryM objectForKey:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[__NSDictionaryM objectForKey:] (0.10%)</title> | |
<rect height="15.0" x="303.82007" rx="2" ry="2" width="1.1799927" y="307.0" fill="rgb(250,33,22)"/> | |
<text y="317.50" font-size="12" x="306.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('TFont::SetExtras(__CTFontDescriptor const*) (1.20%)')"><title >TFont::SetExtras(__CTFontDescriptor const*) (1.20%)</title> | |
<rect ry="2" x="309.72006" width="14.160004" height="15.0" y="323.0" fill="rgb(253,33,38)" rx="2"/> | |
<text y="333.50" font-size="12" x="312.72" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('CopyAttributeToExtras(TDescriptor const*, __CFDictionary*, __CFString const*, AcceptedType) (0.70%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CopyAttributeToExtras(TDescriptor const*, __CFDictionary*, __CFString const*, AcceptedType) (0.70%)</title> | |
<rect width="8.26001" fill="rgb(230,199,6)" x="309.72006" height="15.0" rx="2" ry="2" y="307.0"/> | |
<text y="317.50" x="312.72" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[__NSDictionaryM objectForKey:] (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[__NSDictionaryM objectForKey:] (0.40%)</title> | |
<rect ry="2" x="309.72006" rx="2" width="4.720001" height="15.0" y="291.0" fill="rgb(233,164,41)"/> | |
<text y="301.50" font-size="12" x="312.72" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('__CFStringHash (0.10%)')" class="func_g"><title >__CFStringHash (0.10%)</title> | |
<rect width="1.1799927" x="309.72006" rx="2" fill="rgb(234,153,36)" height="15.0" ry="2" y="275.0"/> | |
<text font-size="12" font-family="Verdana" y="285.50" x="312.72"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('objc_msgSend (0.10%)')" class="func_g"><title >objc_msgSend (0.10%)</title> | |
<rect width="1.1799927" x="310.90005" rx="2" fill="rgb(206,141,45)" height="15.0" ry="2" y="275.0"/> | |
<text font-size="12" font-family="Verdana" y="285.50" x="313.90"></text> | |
</g> | |
<g onmouseover="s('-[__NSDictionaryM __setObject:forKey:] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[__NSDictionaryM __setObject:forKey:] (0.10%)</title> | |
<rect fill="rgb(205,112,36)" width="1.1799927" height="15.0" ry="2" x="314.44006" y="291.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="301.50" x="317.44"></text> | |
</g> | |
<g onmouseover="s('-[__NSDictionaryM objectForKey:] (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[__NSDictionaryM objectForKey:] (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(237,184,27)" x="317.98007" height="15.0" rx="2" ry="2" y="307.0"/> | |
<text y="317.50" x="320.98" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('TFont::SetFlags(unsigned int, __CTFontDescriptor const*) (0.40%)')"><title >TFont::SetFlags(unsigned int, __CTFontDescriptor const*) (0.40%)</title> | |
<rect ry="2" x="323.88007" width="4.720001" height="15.0" y="323.0" fill="rgb(226,77,40)" rx="2"/> | |
<text y="333.50" font-size="12" x="326.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[__NSDictionaryM objectForKey:] (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[__NSDictionaryM objectForKey:] (0.30%)</title> | |
<rect fill="rgb(205,199,1)" width="3.5400085" height="15.0" ry="2" x="323.88007" y="307.0" rx="2"/> | |
<text y="317.50" x="326.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('TFont::InitMatrix(CGAffineTransform const*, __CTFontDescriptor const*) (0.10%)')"><title >TFont::InitMatrix(CGAffineTransform const*, __CTFontDescriptor const*) (0.10%)</title> | |
<rect ry="2" x="328.60007" width="1.1799927" height="15.0" y="323.0" fill="rgb(219,159,38)" rx="2"/> | |
<text y="333.50" font-size="12" x="331.60" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('TDescriptor::CreateMatchingDescriptor(__CFSet const*, double, unsigned long) const (2.80%)')"><title >TDescriptor::CreateMatchingDescriptor(__CFSet const*, double, unsigned long) const (2.80%)</title> | |
<rect ry="2" x="334.5001" width="33.04001" height="15.0" y="355.0" fill="rgb(227,96,47)" rx="2"/> | |
<text y="365.50" font-size="12" x="337.50" font-family="Verdana">TD..</text> | |
</g> | |
<g onmouseover="s('TDescriptor::InitBaseFont(unsigned long, double) (2.70%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >TDescriptor::InitBaseFont(unsigned long, double) (2.70%)</title> | |
<rect height="15.0" x="334.5001" rx="2" ry="2" width="31.860016" y="339.0" fill="rgb(215,90,15)"/> | |
<text y="349.50" x="337.50" font-size="12" font-family="Verdana">TD..</text> | |
</g> | |
<g onmouseover="s('TDescriptor::CreateMatchingDescriptorInternal(__CFSet const*, unsigned long) const (1.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >TDescriptor::CreateMatchingDescriptorInternal(__CFSet const*, unsigned long) const (1.50%)</title> | |
<rect fill="rgb(251,4,54)" width="17.700012" height="15.0" ry="2" x="334.5001" y="323.0" rx="2"/> | |
<text y="333.50" font-size="12" x="337.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[__NSDictionaryM objectForKey:] (0.70%)')" onmouseout="c()"><title >-[__NSDictionaryM objectForKey:] (0.70%)</title> | |
<rect rx="2" height="15.0" fill="rgb(249,34,42)" width="8.26001" ry="2" y="307.0" x="334.5001"/> | |
<text font-family="Verdana" x="337.50" y="317.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('__CFStringHash (0.20%)')" onmouseout="c()"><title >__CFStringHash (0.20%)</title> | |
<rect ry="2" y="291.0" width="2.3599854" rx="2" x="334.5001" height="15.0" fill="rgb(229,120,35)"/> | |
<text font-size="12" font-family="Verdana" y="301.50" x="337.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[__NSCFString isEqual:] (0.10%)')" onmouseout="c()"><title >-[__NSCFString isEqual:] (0.10%)</title> | |
<rect ry="2" y="291.0" width="1.1799927" rx="2" x="336.86008" height="15.0" fill="rgb(217,77,29)"/> | |
<text font-size="12" font-family="Verdana" y="301.50" x="339.86"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('objc_msgSend (0.10%)')"><title >objc_msgSend (0.10%)</title> | |
<rect ry="2" y="291.0" width="1.1799927" rx="2" x="338.0401" height="15.0" fill="rgb(234,41,1)"/> | |
<text font-size="12" font-family="Verdana" y="301.50" x="341.04"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('CFStringFindWithOptionsAndLocale (0.20%)')"><title >CFStringFindWithOptionsAndLocale (0.20%)</title> | |
<rect ry="2" y="307.0" width="2.3599854" rx="2" x="342.7601" height="15.0" fill="rgb(220,16,5)"/> | |
<text x="345.76" y="317.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('CFDictionaryGetValue (0.20%)')"><title >CFDictionaryGetValue (0.20%)</title> | |
<rect ry="2" y="307.0" width="2.3599854" rx="2" x="345.1201" height="15.0" fill="rgb(216,194,17)"/> | |
<text x="348.12" y="317.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('CF_IS_OBJC (0.10%)')" class="func_g"><title >CF_IS_OBJC (0.10%)</title> | |
<rect ry="2" width="1.1799927" rx="2" y="291.0" fill="rgb(205,61,29)" height="15.0" x="345.1201"/> | |
<text y="301.50" font-family="Verdana" x="348.12" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('TDescriptorSource::CopySplicedDescriptorForName(__CFString const*, __CFString const*, __CFString const*, __CFNumber const*, __CFNumber const*, CTFontLegibilityWeight, __CFBoolean const*, __CFNumber const*, __CFString const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, unsigned int) const (0.10%)')" class="func_g"><title >TDescriptorSource::CopySplicedDescriptorForName(__CFString const*, __CFString const*, __CFString const*, __CFNumber const*, __CFNumber const*, CTFontLegibilityWeight, __CFBoolean const*, __CFNumber const*, __CFString const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, unsigned int) const (0.10%)</title> | |
<rect ry="2" y="307.0" width="1.1799927" rx="2" x="347.4801" height="15.0" fill="rgb(216,70,42)"/> | |
<text x="350.48" y="317.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('TDescriptorSource::CopySpliceFontForName(__CFString const*, __CFString const*, __CFNumber const*, __CFNumber const*, CTFontLegibilityWeight, __CFBoolean const*, __CFNumber const*, __CFString const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, unsigned int) (0.10%)')"><title >TDescriptorSource::CopySpliceFontForName(__CFString const*, __CFString const*, __CFNumber const*, __CFNumber const*, CTFontLegibilityWeight, __CFBoolean const*, __CFNumber const*, __CFString const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, __CFNumber const*, unsigned int) (0.10%)</title> | |
<rect fill="rgb(228,24,44)" rx="2" width="1.1799927" x="347.4801" ry="2" y="291.0" height="15.0"/> | |
<text font-size="12" y="301.50" font-family="Verdana" x="350.48"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('TBaseFont::CopyOpticalSizeAxis() const (0.70%)')"><title >TBaseFont::CopyOpticalSizeAxis() const (0.70%)</title> | |
<rect ry="2" y="323.0" width="8.26001" rx="2" x="352.2001" height="15.0" fill="rgb(241,112,21)"/> | |
<text y="333.50" font-size="12" x="355.20" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[NSConstantDictionary objectForKey:] (0.30%)')" class="func_g"><title >-[NSConstantDictionary objectForKey:] (0.30%)</title> | |
<rect fill="rgb(251,213,30)" width="3.5400085" height="15.0" ry="2" x="352.2001" y="307.0" rx="2"/> | |
<text x="355.20" y="317.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('bsearch (0.20%)')"><title >bsearch (0.20%)</title> | |
<rect rx="2" x="352.2001" ry="2" height="15.0" y="291.0" fill="rgb(247,218,39)" width="2.3599854"/> | |
<text x="355.20" y="301.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('comparisonUsingOrderingForStringKeys (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >comparisonUsingOrderingForStringKeys (0.20%)</title> | |
<rect fill="rgb(208,143,10)" width="2.3599854" height="15.0" rx="2" y="275.0" x="352.2001" ry="2"/> | |
<text font-size="12" y="285.50" font-family="Verdana" x="355.20"></text> | |
</g> | |
<g onmouseover="s('CFStringCompareWithOptionsAndLocale (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >CFStringCompareWithOptionsAndLocale (0.10%)</title> | |
<rect y="259.0" fill="rgb(254,156,28)" rx="2" ry="2" x="352.2001" width="1.1799927" height="15.0"/> | |
<text font-size="12" y="269.50" font-family="Verdana" x="355.20"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('CFEqual (0.10%)')" onmouseout="c()" class="func_g"><title >CFEqual (0.10%)</title> | |
<rect fill="rgb(225,149,21)" width="1.1799927" height="15.0" ry="2" x="355.7401" y="307.0" rx="2"/> | |
<text font-family="Verdana" x="358.74" font-size="12" y="317.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[NSNumber isEqualToNumber:] (0.10%)')"><title >-[NSNumber isEqualToNumber:] (0.10%)</title> | |
<rect rx="2" x="355.7401" ry="2" height="15.0" y="291.0" fill="rgb(207,200,27)" width="1.1799927"/> | |
<text font-family="Verdana" x="358.74" y="301.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('TTenuousComponentFont::CopyVariationAxes() const (0.10%)')" onmouseout="c()" class="func_g"><title >TTenuousComponentFont::CopyVariationAxes() const (0.10%)</title> | |
<rect fill="rgb(221,200,48)" width="1.1799927" height="15.0" ry="2" x="356.9201" y="307.0" rx="2"/> | |
<text font-family="Verdana" x="359.92" font-size="12" y="317.50"></text> | |
</g> | |
<g onmouseover="s('-[__NSDictionaryM objectForKey:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[__NSDictionaryM objectForKey:] (0.10%)</title> | |
<rect ry="2" y="323.0" width="1.1799927" rx="2" x="360.46008" height="15.0" fill="rgb(210,91,50)"/> | |
<text font-family="Verdana" x="363.46" font-size="12" y="333.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('TCFRef<CTFontDescriptor*> TCFBase_NEW<CTFontDescriptor, CTFontDescriptor*, __CFDictionary const*>(CTFontDescriptor*&&, __CFDictionary const*&&) (1.30%)')"><title >TCFRef<CTFontDescriptor*> TCFBase_NEW<CTFontDescriptor, CTFontDescriptor*, __CFDictionary const*>(CTFontDescriptor*&&, __CFDictionary const*&&) (1.30%)</title> | |
<rect ry="2" y="371.0" width="15.339996" rx="2" x="368.7201" height="15.0" fill="rgb(219,172,7)"/> | |
<text font-family="Verdana" x="371.72" font-size="12" y="381.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('TDescriptor::TDescriptor(TDescriptor const&, __CFDictionary const*) (1.10%)')" onmouseout="c()"><title >TDescriptor::TDescriptor(TDescriptor const&, __CFDictionary const*) (1.10%)</title> | |
<rect height="15.0" x="368.7201" rx="2" ry="2" width="12.980011" y="355.0" fill="rgb(223,137,24)"/> | |
<text y="365.50" font-size="12" x="371.72" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[__NSDictionaryM __apply:context:] (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >-[__NSDictionaryM __apply:context:] (0.30%)</title> | |
<rect ry="2" x="368.7201" width="3.5400085" height="15.0" y="339.0" fill="rgb(246,57,34)" rx="2"/> | |
<text x="371.72" font-family="Verdana" font-size="12" y="349.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[__NSDictionaryM __setObject:forKey:] (0.20%)')"><title >-[__NSDictionaryM __setObject:forKey:] (0.20%)</title> | |
<rect rx="2" x="368.7201" ry="2" height="15.0" y="323.0" fill="rgb(241,56,12)" width="2.3599854"/> | |
<text font-family="Verdana" font-size="12" x="371.72" y="333.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('TCFMutableDictionary::TCFMutableDictionary(__CFDictionary const*, long) (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >TCFMutableDictionary::TCFMutableDictionary(__CFDictionary const*, long) (0.20%)</title> | |
<rect ry="2" x="372.2601" width="2.3599854" height="15.0" y="339.0" fill="rgb(253,142,9)" rx="2"/> | |
<text x="375.26" font-family="Verdana" font-size="12" y="349.50"></text> | |
</g> | |
<g onmouseover="s('-[__NSDictionaryI _cfMutableCopy] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[__NSDictionaryI _cfMutableCopy] (0.10%)</title> | |
<rect x="372.2601" y="323.0" fill="rgb(254,63,26)" ry="2" height="15.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="333.50" x="375.26"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_NSDictionaryI_mutableCopyWithZone (0.10%)')"><title >_NSDictionaryI_mutableCopyWithZone (0.10%)</title> | |
<rect height="15.0" ry="2" fill="rgb(205,11,45)" y="307.0" x="372.2601" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="375.26" y="317.50"></text> | |
</g> | |
<g onmouseover="s('__NSDictionaryM_new (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__NSDictionaryM_new (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(209,11,18)" ry="2" rx="2" x="372.2601" height="15.0" y="291.0"/> | |
<text x="375.26" y="301.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('CFSetContainsValue (0.20%)')"><title >CFSetContainsValue (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(251,24,45)" ry="2" rx="2" x="374.6201" height="15.0" y="339.0"/> | |
<text font-family="Verdana" font-size="12" y="349.50" x="377.62"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CFBasicHashGetCountOfKey (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >CFBasicHashGetCountOfKey (0.20%)</title> | |
<rect ry="2" x="374.6201" width="2.3599854" height="15.0" y="323.0" fill="rgb(230,110,19)" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="377.62" y="333.50"></text> | |
</g> | |
<g onmouseover="s('___CFBasicHashFindBucket_Linear (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >___CFBasicHashFindBucket_Linear (0.20%)</title> | |
<rect height="15.0" ry="2" fill="rgb(206,100,41)" y="307.0" x="374.6201" width="2.3599854" rx="2"/> | |
<text x="377.62" y="317.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[__NSDictionaryM objectForKey:] (0.10%)')"><title >-[__NSDictionaryM objectForKey:] (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(215,77,43)" ry="2" rx="2" x="376.9801" height="15.0" y="339.0"/> | |
<text font-family="Verdana" font-size="12" y="349.50" x="379.98"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_CFRelease (0.10%)')"><title >_CFRelease (0.10%)</title> | |
<rect ry="2" y="371.0" width="1.1799927" rx="2" x="384.0601" height="15.0" fill="rgb(239,105,36)"/> | |
<text font-family="Verdana" x="387.06" font-size="12" y="381.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('CTFontCopyAttribute (0.30%)')"><title >CTFontCopyAttribute (0.30%)</title> | |
<rect ry="2" y="387.0" width="3.5400085" rx="2" x="387.6001" height="15.0" fill="rgb(224,179,25)"/> | |
<text font-family="Verdana" x="390.60" font-size="12" y="397.50"></text> | |
</g> | |
<g onmouseover="s('CFDictionaryGetValue (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >CFDictionaryGetValue (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(212,5,47)" ry="2" rx="2" x="387.6001" height="15.0" y="371.0"/> | |
<text y="381.50" font-size="12" x="390.60" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('___CFBasicHashFindBucket_Linear (0.20%)')"><title >___CFBasicHashFindBucket_Linear (0.20%)</title> | |
<rect ry="2" x="387.6001" width="2.3599854" height="15.0" y="355.0" fill="rgb(246,66,47)" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="390.60" y="365.50"></text> | |
</g> | |
<g onmouseover="s('TFont::CopyAttribute(unsigned long, __CFString const*) const (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >TFont::CopyAttribute(unsigned long, __CFString const*) const (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(215,170,3)" ry="2" rx="2" x="389.96008" height="15.0" y="371.0"/> | |
<text y="381.50" font-size="12" x="392.96" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('add_opsz_attr(__CFDictionary*, double) (0.10%)')"><title >add_opsz_attr(__CFDictionary*, double) (0.10%)</title> | |
<rect ry="2" y="387.0" width="1.1799927" rx="2" x="391.14008" height="15.0" fill="rgb(226,55,53)"/> | |
<text font-family="Verdana" x="394.14" font-size="12" y="397.50"></text> | |
</g> | |
<g onmouseover="s('-[__NSDictionaryM __setObject:forKey:] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[__NSDictionaryM __setObject:forKey:] (0.10%)</title> | |
<rect ry="2" x="391.14008" width="1.1799927" height="15.0" y="371.0" fill="rgb(209,125,11)" rx="2"/> | |
<text y="381.50" font-size="12" x="394.14" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('CTFontDescriptorCreateWithAttributes (0.10%)')"><title >CTFontDescriptorCreateWithAttributes (0.10%)</title> | |
<rect ry="2" y="387.0" width="1.1799927" rx="2" x="392.3201" height="15.0" fill="rgb(223,199,43)"/> | |
<text font-family="Verdana" x="395.32" font-size="12" y="397.50"></text> | |
</g> | |
<g onmouseover="s('TCFRef<CTFontDescriptor*> TCFBase_NEW<CTFontDescriptor, __CFDictionary const*&>(__CFDictionary const*&) (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >TCFRef<CTFontDescriptor*> TCFBase_NEW<CTFontDescriptor, __CFDictionary const*&>(__CFDictionary const*&) (0.10%)</title> | |
<rect ry="2" x="392.3201" width="1.1799927" height="15.0" y="371.0" fill="rgb(246,86,10)" rx="2"/> | |
<text y="381.50" font-size="12" x="395.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[__NSDictionaryM __setObject:forKey:] (0.10%)')"><title >-[__NSDictionaryM __setObject:forKey:] (0.10%)</title> | |
<rect ry="2" y="387.0" width="1.1799927" rx="2" x="393.5001" height="15.0" fill="rgb(237,86,1)"/> | |
<text font-family="Verdana" x="396.50" font-size="12" y="397.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[__NSDictionaryM dealloc] (0.10%)')"><title >-[__NSDictionaryM dealloc] (0.10%)</title> | |
<rect ry="2" y="387.0" width="1.1799927" rx="2" x="394.68008" height="15.0" fill="rgb(229,223,16)"/> | |
<text font-family="Verdana" x="397.68" font-size="12" y="397.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('SkScalerContext_Mac::~SkScalerContext_Mac() (0.20%)')"><title >SkScalerContext_Mac::~SkScalerContext_Mac() (0.20%)</title> | |
<rect ry="2" y="419.0" width="2.3599854" rx="2" x="404.1201" height="15.0" fill="rgb(208,224,11)"/> | |
<text font-size="12" y="429.50" x="407.12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('SkScalerContext_Mac::~SkScalerContext_Mac() (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >SkScalerContext_Mac::~SkScalerContext_Mac() (0.20%)</title> | |
<rect fill="rgb(215,139,32)" y="403.0" width="2.3599854" x="404.1201" height="15.0" ry="2" rx="2"/> | |
<text y="413.50" font-size="12" x="407.12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_CFRelease (0.20%)')"><title >_CFRelease (0.20%)</title> | |
<rect fill="rgb(244,148,28)" height="15.0" rx="2" y="387.0" width="2.3599854" ry="2" x="404.1201"/> | |
<text font-family="Verdana" font-size="12" y="397.50" x="407.12"></text> | |
</g> | |
<g onmouseover="s('TFont::~TFont() (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >TFont::~TFont() (0.10%)</title> | |
<rect x="404.1201" width="1.1799927" fill="rgb(211,34,1)" rx="2" y="371.0" height="15.0" ry="2"/> | |
<text y="381.50" x="407.12" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::drawTextFrame(std::_fl::shared_ptr<impeller::TextFrame> const&, float, float) (0.10%)')"><title >flutter::DisplayListBuilder::drawTextFrame(std::_fl::shared_ptr<impeller::TextFrame> const&, float, float) (0.10%)</title> | |
<rect ry="2" y="435.0" width="1.1799927" rx="2" x="414.7401" height="15.0" fill="rgb(249,164,35)"/> | |
<text font-size="12" y="445.50" x="417.74" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::AccumulateOpBounds(SkRect&, flutter::DisplayListAttributeFlags) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::AccumulateOpBounds(SkRect&, flutter::DisplayListAttributeFlags) (0.10%)</title> | |
<rect fill="rgb(248,75,33)" y="419.0" width="1.1799927" x="414.7401" height="15.0" ry="2" rx="2"/> | |
<text y="429.50" font-size="12" x="417.74" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderParagraph._layoutTextWithConstraints (0.20%)')"><title >RenderParagraph._layoutTextWithConstraints (0.20%)</title> | |
<rect ry="2" y="579.0" width="2.3599854" rx="2" x="419.46008" height="15.0" fill="rgb(247,23,3)"/> | |
<text font-size="12" y="589.50" x="422.46" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('TextPainter.layout (0.20%)')"><title >TextPainter.layout (0.20%)</title> | |
<rect fill="rgb(226,69,24)" y="563.0" width="2.3599854" x="419.46008" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" x="422.46" font-family="Verdana" y="573.50"></text> | |
</g> | |
<g onmouseover="s('TextPainterLayoutCacheWithOffset._resizeToFit (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >TextPainterLayoutCacheWithOffset._resizeToFit (0.10%)</title> | |
<rect x="419.46008" width="1.1799927" ry="2" rx="2" height="15.0" fill="rgb(231,141,17)" y="547.0"/> | |
<text y="557.50" font-size="12" x="422.46" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Offset.+ (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Offset.+ (0.10%)</title> | |
<rect fill="rgb(229,214,26)" rx="2" ry="2" x="437.16013" width="1.1799927" y="723.0" height="15.0"/> | |
<text x="440.16" y="733.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.canvas (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.canvas (0.10%)</title> | |
<rect fill="rgb(249,13,38)" rx="2" ry="2" x="441.8801" width="1.1799927" y="787.0" height="15.0"/> | |
<text x="444.88" y="797.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (1.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (1.80%)</title> | |
<rect fill="rgb(235,199,53)" rx="2" ry="2" x="445.42014" width="21.24002" y="851.0" height="15.0"/> | |
<text x="448.42" y="861.50" font-size="12" font-family="Verdana">R..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (1.70%)')"><title >PaintingContext.paintChild (1.70%)</title> | |
<rect fill="rgb(209,78,4)" y="835.0" width="20.059998" x="445.42014" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" y="845.50" x="448.42" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject._paintWithContext (1.70%)')"><title >RenderObject._paintWithContext (1.70%)</title> | |
<rect width="20.059998" height="15.0" y="819.0" ry="2" fill="rgb(251,124,50)" rx="2" x="445.42014"/> | |
<text y="829.50" font-family="Verdana" font-size="12" x="448.42"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (1.70%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (1.70%)</title> | |
<rect y="803.0" ry="2" width="20.059998" x="445.42014" rx="2" height="15.0" fill="rgb(246,118,40)"/> | |
<text y="813.50" font-size="12" x="448.42" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (1.70%)')"><title >PaintingContext.paintChild (1.70%)</title> | |
<rect rx="2" height="15.0" ry="2" width="20.059998" x="445.42014" y="787.0" fill="rgb(222,171,30)"/> | |
<text x="448.42" font-family="Verdana" font-size="12" y="797.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (1.70%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._paintWithContext (1.70%)</title> | |
<rect fill="rgb(206,109,25)" width="20.059998" ry="2" rx="2" x="445.42014" height="15.0" y="771.0"/> | |
<text font-family="Verdana" font-size="12" x="448.42" y="781.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderParagraph.paint (1.70%)')"><title >RenderParagraph.paint (1.70%)</title> | |
<rect height="15.0" x="445.42014" width="20.059998" y="755.0" fill="rgb(252,1,46)" rx="2" ry="2"/> | |
<text x="448.42" y="765.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('TextPainter.paint (1.60%)')"><title >TextPainter.paint (1.60%)</title> | |
<rect width="18.880005" fill="rgb(245,35,55)" rx="2" height="15.0" x="445.42014" y="739.0" ry="2"/> | |
<text x="448.42" font-size="12" font-family="Verdana" y="749.50"></text> | |
</g> | |
<g onmouseover="s('NativeCanvas.drawParagraph (1.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >NativeCanvas.drawParagraph (1.60%)</title> | |
<rect width="18.880005" height="15.0" ry="2" fill="rgb(234,111,41)" y="723.0" rx="2" x="445.42014"/> | |
<text font-size="12" x="448.42" font-family="Verdana" y="733.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_NativeParagraph._paint (1.60%)')" onclick="zoom(this)"><title >_NativeParagraph._paint (1.60%)</title> | |
<rect fill="rgb(218,81,4)" x="445.42014" height="15.0" rx="2" ry="2" width="18.880005" y="707.0"/> | |
<text x="448.42" y="717.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('NativeParagraph.__paint$Method$FfiNative (1.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >NativeParagraph.__paint$Method$FfiNative (1.60%)</title> | |
<rect y="691.0" ry="2" width="18.880005" x="445.42014" height="15.0" rx="2" fill="rgb(249,41,22)"/> | |
<text font-size="12" font-family="Verdana" x="448.42" y="701.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('stub CallNativeThroughSafepoint (1.60%)')"><title >stub CallNativeThroughSafepoint (1.60%)</title> | |
<rect y="675.0" rx="2" ry="2" height="15.0" x="445.42014" fill="rgb(208,70,26)" width="18.880005"/> | |
<text font-size="12" font-family="Verdana" y="685.50" x="448.42"></text> | |
</g> | |
<g onmouseover="s('txt::ParagraphSkia::Paint(flutter::DisplayListBuilder*, double, double) (1.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >txt::ParagraphSkia::Paint(flutter::DisplayListBuilder*, double, double) (1.60%)</title> | |
<rect ry="2" y="659.0" fill="rgb(208,15,22)" height="15.0" rx="2" width="18.880005" x="445.42014"/> | |
<text font-family="Verdana" x="448.42" y="669.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('skia::textlayout::ParagraphImpl::paint(skia::textlayout::ParagraphPainter*, float, float) (1.60%)')"><title >skia::textlayout::ParagraphImpl::paint(skia::textlayout::ParagraphPainter*, float, float) (1.60%)</title> | |
<rect ry="2" height="15.0" width="18.880005" x="445.42014" fill="rgb(253,53,8)" rx="2" y="643.0"/> | |
<text font-family="Verdana" x="448.42" y="653.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('skia::textlayout::TextLine::paint(skia::textlayout::ParagraphPainter*, float, float) (1.60%)')" onmouseout="c()"><title >skia::textlayout::TextLine::paint(skia::textlayout::ParagraphPainter*, float, float) (1.60%)</title> | |
<rect width="18.880005" height="15.0" y="627.0" rx="2" x="445.42014" fill="rgb(248,108,50)" ry="2"/> | |
<text font-size="12" y="637.50" x="448.42" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('txt::(anonymous namespace)::DisplayListParagraphPainter::drawTextBlob(sk_sp<SkTextBlob> const&, float, float, std::_fl::variant<SkPaint, int> const&) (1.60%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >txt::(anonymous namespace)::DisplayListParagraphPainter::drawTextBlob(sk_sp<SkTextBlob> const&, float, float, std::_fl::variant<SkPaint, int> const&) (1.60%)</title> | |
<rect rx="2" ry="2" fill="rgb(206,216,20)" width="18.880005" y="611.0" height="15.0" x="445.42014"/> | |
<text font-size="12" x="448.42" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseover="s('impeller::MakeTextFrameFromTextBlobSkia(sk_sp<SkTextBlob> const&) (1.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >impeller::MakeTextFrameFromTextBlobSkia(sk_sp<SkTextBlob> const&) (1.60%)</title> | |
<rect width="18.880005" x="445.42014" rx="2" fill="rgb(244,213,15)" y="595.0" height="15.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="448.42" y="605.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('SkTypeface_Mac::onCreateScalerContext(SkScalerContextEffects const&, SkDescriptor const*) const (1.20%)')" onclick="zoom(this)" onmouseout="c()"><title >SkTypeface_Mac::onCreateScalerContext(SkScalerContextEffects const&, SkDescriptor const*) const (1.20%)</title> | |
<rect x="445.42014" width="14.160004" height="15.0" y="579.0" fill="rgb(243,32,1)" ry="2" rx="2"/> | |
<text x="448.42" y="589.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('SkCTFontCreateExactCopy(__CTFont const*, double, OpszVariation) (1.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >SkCTFontCreateExactCopy(__CTFont const*, double, OpszVariation) (1.20%)</title> | |
<rect y="563.0" fill="rgb(246,107,41)" rx="2" width="14.160004" height="15.0" ry="2" x="445.42014"/> | |
<text font-family="Verdana" y="573.50" x="448.42" font-size="12"></text> | |
</g> | |
<g onmouseover="s('CTFontCreateCopyWithAttributes (1.00%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CTFontCreateCopyWithAttributes (1.00%)</title> | |
<rect fill="rgb(248,197,46)" x="445.42014" rx="2" width="11.799988" y="547.0" ry="2" height="15.0"/> | |
<text font-family="Verdana" x="448.42" font-size="12" y="557.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('CTFontCreateWithFontDescriptor (0.80%)')" onmouseout="c()"><title >CTFontCreateWithFontDescriptor (0.80%)</title> | |
<rect fill="rgb(215,109,12)" width="9.440002" y="531.0" ry="2" x="445.42014" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="448.42" y="541.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('TCFRef<CTFont*> TCFBase_NEW<CTFont, __CTFontDescriptor const*, double&, CGAffineTransform const*&, __CTFontDescriptor const*&>(__CTFontDescriptor const*&&, double&, CGAffineTransform const*&, __CTFontDescriptor const*&) (0.40%)')" class="func_g" onclick="zoom(this)"><title >TCFRef<CTFont*> TCFBase_NEW<CTFont, __CTFontDescriptor const*, double&, CGAffineTransform const*&, __CTFontDescriptor const*&>(__CTFontDescriptor const*&&, double&, CGAffineTransform const*&, __CTFontDescriptor const*&) (0.40%)</title> | |
<rect ry="2" fill="rgb(240,88,54)" x="445.42014" y="515.0" rx="2" width="4.720001" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="448.42" y="525.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('TFont::TFont(__CTFontDescriptor const*, double, CGAffineTransform const*, __CTFontDescriptor const*) (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >TFont::TFont(__CTFontDescriptor const*, double, CGAffineTransform const*, __CTFontDescriptor const*) (0.40%)</title> | |
<rect x="445.42014" fill="rgb(234,119,24)" height="15.0" ry="2" rx="2" y="499.0" width="4.720001"/> | |
<text y="509.50" font-family="Verdana" x="448.42" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('TFont::SetOpticalSize(__CTFontDescriptor const*, CGFont*) (0.20%)')" onmouseout="c()"><title >TFont::SetOpticalSize(__CTFontDescriptor const*, CGFont*) (0.20%)</title> | |
<rect height="15.0" fill="rgb(214,65,25)" rx="2" x="445.42014" width="2.3599854" ry="2" y="483.0"/> | |
<text y="493.50" font-size="12" x="448.42" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('TBaseFont::CopyOpticalSizeAxis() const (0.10%)')" onclick="zoom(this)"><title >TBaseFont::CopyOpticalSizeAxis() const (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" fill="rgb(254,225,8)" width="1.1799927" x="445.42014" y="467.0"/> | |
<text x="448.42" font-size="12" y="477.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('TDescriptor::CreateMatchingDescriptor(__CFSet const*, double, unsigned long) const (0.30%)')" class="func_g" onclick="zoom(this)"><title >TDescriptor::CreateMatchingDescriptor(__CFSet const*, double, unsigned long) const (0.30%)</title> | |
<rect width="3.5400085" height="15.0" rx="2" y="515.0" x="450.14014" fill="rgb(217,41,51)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="453.14" y="525.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('TDescriptor::InitBaseFont(unsigned long, double) (0.30%)')"><title >TDescriptor::InitBaseFont(unsigned long, double) (0.30%)</title> | |
<rect height="15.0" y="499.0" ry="2" x="450.14014" width="3.5400085" fill="rgb(216,100,14)" rx="2"/> | |
<text y="509.50" font-size="12" font-family="Verdana" x="453.14"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('TBaseFont::CopyOpticalSizeAxis() const (0.10%)')"><title >TBaseFont::CopyOpticalSizeAxis() const (0.10%)</title> | |
<rect x="450.14014" y="483.0" width="1.1799927" fill="rgb(232,22,17)" rx="2" ry="2" height="15.0"/> | |
<text font-family="Verdana" x="453.14" y="493.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('TDescriptor::CreateMatchingDescriptorInternal(__CFSet const*, unsigned long) const (0.10%)')" onclick="zoom(this)"><title >TDescriptor::CreateMatchingDescriptorInternal(__CFSet const*, unsigned long) const (0.10%)</title> | |
<rect x="451.32013" y="483.0" width="1.1799927" fill="rgb(214,227,25)" rx="2" ry="2" height="15.0"/> | |
<text y="493.50" font-size="12" x="454.32" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('TCFRef<CTFontDescriptor*> TCFBase_NEW<CTFontDescriptor, CTFontDescriptor*, __CFDictionary const*>(CTFontDescriptor*&&, __CFDictionary const*&&) (0.20%)')"><title >TCFRef<CTFontDescriptor*> TCFBase_NEW<CTFontDescriptor, CTFontDescriptor*, __CFDictionary const*>(CTFontDescriptor*&&, __CFDictionary const*&&) (0.20%)</title> | |
<rect width="2.3599854" height="15.0" rx="2" y="531.0" x="454.86014" fill="rgb(231,9,23)" ry="2"/> | |
<text y="541.50" font-size="12" x="457.86" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('TDescriptor::TDescriptor(TDescriptor const&, __CFDictionary const*) (0.10%)')" onclick="zoom(this)"><title >TDescriptor::TDescriptor(TDescriptor const&, __CFDictionary const*) (0.10%)</title> | |
<rect x="454.86014" y="515.0" width="1.1799927" fill="rgb(230,84,40)" rx="2" ry="2" height="15.0"/> | |
<text x="457.86" font-family="Verdana" y="525.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SkScalerContext_Mac::~SkScalerContext_Mac() (0.10%)')" class="func_g" onclick="zoom(this)"><title >SkScalerContext_Mac::~SkScalerContext_Mac() (0.10%)</title> | |
<rect width="1.1799927" height="15.0" rx="2" y="579.0" x="459.58014" fill="rgb(225,113,41)" ry="2"/> | |
<text y="589.50" font-size="12" x="462.58" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('SkScalerContext_Mac::~SkScalerContext_Mac() (0.10%)')"><title >SkScalerContext_Mac::~SkScalerContext_Mac() (0.10%)</title> | |
<rect x="459.58014" y="563.0" width="1.1799927" fill="rgb(231,12,6)" rx="2" ry="2" height="15.0"/> | |
<text font-family="Verdana" x="462.58" y="573.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.stopRecordingIfNeeded (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.stopRecordingIfNeeded (0.50%)</title> | |
<rect fill="rgb(229,60,17)" rx="2" ry="2" x="466.66013" width="5.899994" y="867.0" height="15.0"/> | |
<text x="469.66" y="877.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('NativePictureRecorder.endRecording (0.50%)')"><title >NativePictureRecorder.endRecording (0.50%)</title> | |
<rect fill="rgb(255,100,20)" y="851.0" width="5.899994" x="466.66013" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" y="861.50" x="469.66" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_NativePictureRecorder._endRecording (0.50%)')"><title >_NativePictureRecorder._endRecording (0.50%)</title> | |
<rect y="835.0" ry="2" width="5.899994" x="466.66013" rx="2" height="15.0" fill="rgb(228,130,25)"/> | |
<text font-size="12" x="469.66" font-family="Verdana" y="845.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('NativePictureRecorder.__endRecording$Method$FfiNative (0.50%)')"><title >NativePictureRecorder.__endRecording$Method$FfiNative (0.50%)</title> | |
<rect width="5.899994" height="15.0" y="819.0" ry="2" fill="rgb(225,85,19)" rx="2" x="466.66013"/> | |
<text font-size="12" y="829.50" font-family="Verdana" x="469.66"></text> | |
</g> | |
<g onmouseover="s('stub CallNativeThroughSafepoint (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (0.50%)</title> | |
<rect ry="2" y="803.0" fill="rgb(234,89,38)" height="15.0" rx="2" width="5.899994" x="466.66013"/> | |
<text y="813.50" font-size="12" x="469.66" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('tonic::FfiDispatcher<flutter::PictureRecorder, void (flutter::PictureRecorder::*)(_Dart_Handle*), &flutter::PictureRecorder::endRecording(_Dart_Handle*)>::Call(tonic::DartWrappable*, _Dart_Handle*) (0.50%)')" onmouseout="c()" class="func_g"><title >tonic::FfiDispatcher<flutter::PictureRecorder, void (flutter::PictureRecorder::*)(_Dart_Handle*), &flutter::PictureRecorder::endRecording(_Dart_Handle*)>::Call(tonic::DartWrappable*, _Dart_Handle*) (0.50%)</title> | |
<rect width="5.899994" height="15.0" rx="2" y="787.0" x="466.66013" fill="rgb(226,57,14)" ry="2"/> | |
<text font-size="12" y="797.50" x="469.66" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::DisplayListBuilder::Build() (0.30%)')"><title >flutter::DisplayListBuilder::Build() (0.30%)</title> | |
<rect x="466.66013" y="771.0" width="3.5400085" fill="rgb(219,160,33)" rx="2" ry="2" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="781.50" x="469.66"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('SkRect::join(SkRect const&) (0.10%)')"><title >SkRect::join(SkRect const&) (0.10%)</title> | |
<rect x="470.20013" y="771.0" width="1.1799927" fill="rgb(251,37,38)" rx="2" ry="2" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="781.50" x="473.20"></text> | |
</g> | |
<g onmouseover="s('new _NativePath (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >new _NativePath (0.10%)</title> | |
<rect fill="rgb(234,88,23)" rx="2" ry="2" x="473.74005" width="1.1799927" y="1139.0" height="15.0"/> | |
<text x="476.74" y="1149.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_NativePath._constructor (0.10%)')"><title >_NativePath._constructor (0.10%)</title> | |
<rect fill="rgb(239,192,38)" y="1123.0" width="1.1799927" x="473.74005" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" y="1133.50" x="476.74" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('NativePath.__constructor$Method$FfiNative (0.10%)')"><title >NativePath.__constructor$Method$FfiNative (0.10%)</title> | |
<rect y="1107.0" ry="2" width="1.1799927" x="473.74005" rx="2" height="15.0" fill="rgb(210,66,5)"/> | |
<text font-size="12" x="476.74" font-family="Verdana" y="1117.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="1091.0" ry="2" fill="rgb(249,197,10)" rx="2" x="473.74005"/> | |
<text font-family="Verdana" x="476.74" y="1101.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderShiftedBox.paint (0.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderShiftedBox.paint (0.90%)</title> | |
<rect fill="rgb(255,95,19)" rx="2" ry="2" x="476.10007" width="10.619995" y="1203.0" height="15.0"/> | |
<text x="479.10" y="1213.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (0.90%)')"><title >PaintingContext.paintChild (0.90%)</title> | |
<rect fill="rgb(240,120,47)" y="1187.0" width="10.619995" x="476.10007" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" y="1197.50" x="479.10" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.90%)')"><title >RenderObject._paintWithContext (0.90%)</title> | |
<rect y="1171.0" ry="2" width="10.619995" x="476.10007" rx="2" height="15.0" fill="rgb(227,35,54)"/> | |
<text font-size="12" x="479.10" font-family="Verdana" y="1181.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderTransform.paint (0.90%)')"><title >RenderTransform.paint (0.90%)</title> | |
<rect ry="2" y="1155.0" fill="rgb(216,10,36)" height="15.0" rx="2" width="10.619995" x="476.10007"/> | |
<text y="1165.50" font-family="Verdana" font-size="12" x="479.10"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.pushTransform (0.80%)')"><title >PaintingContext.pushTransform (0.80%)</title> | |
<rect width="9.440002" height="15.0" rx="2" y="1139.0" x="476.10007" fill="rgb(216,2,13)" ry="2"/> | |
<text y="1149.50" font-size="12" x="479.10" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.paint (0.40%)')"><title >RenderProxyBoxMixin.paint (0.40%)</title> | |
<rect x="476.10007" fill="rgb(226,182,10)" height="15.0" ry="2" rx="2" y="1123.0" width="4.720001"/> | |
<text font-size="12" font-family="Verdana" x="479.10" y="1133.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (0.40%)</title> | |
<rect height="15.0" x="476.10007" width="4.720001" y="1107.0" fill="rgb(255,197,0)" rx="2" ry="2"/> | |
<text x="479.10" font-size="12" font-family="Verdana" y="1117.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.paintChild (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.paintChild (0.40%)</title> | |
<rect width="4.720001" x="476.10007" height="15.0" fill="rgb(239,97,51)" y="1091.0" rx="2" ry="2"/> | |
<text y="1101.50" x="479.10" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (0.40%)')"><title >RenderObject._paintWithContext (0.40%)</title> | |
<rect fill="rgb(208,86,46)" x="476.10007" height="15.0" width="4.720001" y="1075.0" ry="2" rx="2"/> | |
<text x="479.10" y="1085.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderShiftedBox.paint (0.40%)')"><title >RenderShiftedBox.paint (0.40%)</title> | |
<rect height="15.0" y="1059.0" fill="rgb(251,162,12)" rx="2" width="4.720001" x="476.10007" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="1069.50" x="479.10"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >PaintingContext.paintChild (0.40%)</title> | |
<rect width="4.720001" height="15.0" rx="2" y="1043.0" fill="rgb(251,186,16)" ry="2" x="476.10007"/> | |
<text x="479.10" y="1053.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (0.40%)')"><title >RenderObject._paintWithContext (0.40%)</title> | |
<rect ry="2" rx="2" height="15.0" fill="rgb(253,194,9)" x="476.10007" y="1027.0" width="4.720001"/> | |
<text x="479.10" y="1037.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (0.40%)</title> | |
<rect ry="2" fill="rgb(208,165,38)" x="476.10007" width="4.720001" rx="2" height="15.0" y="1011.0"/> | |
<text x="479.10" y="1021.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (0.40%)')" class="func_g"><title >PaintingContext.paintChild (0.40%)</title> | |
<rect y="995.0" width="4.720001" x="476.10007" rx="2" ry="2" height="15.0" fill="rgb(219,210,50)"/> | |
<text y="1005.50" font-family="Verdana" x="479.10" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.40%)')" class="func_g" onmouseout="c()"><title >RenderObject._paintWithContext (0.40%)</title> | |
<rect x="476.10007" ry="2" rx="2" fill="rgb(240,90,7)" y="979.0" width="4.720001" height="15.0"/> | |
<text x="479.10" y="989.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderImage.paint (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderImage.paint (0.40%)</title> | |
<rect x="476.10007" height="15.0" width="4.720001" ry="2" fill="rgb(220,94,19)" y="963.0" rx="2"/> | |
<text x="479.10" font-family="Verdana" y="973.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('paintImage (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >paintImage (0.40%)</title> | |
<rect y="947.0" x="476.10007" height="15.0" width="4.720001" fill="rgb(222,23,24)" ry="2" rx="2"/> | |
<text x="479.10" font-size="12" font-family="Verdana" y="957.50"></text> | |
</g> | |
<g onmouseover="s('NativeCanvas.drawImageRect (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >NativeCanvas.drawImageRect (0.10%)</title> | |
<rect height="15.0" rx="2" ry="2" width="1.1799927" fill="rgb(236,52,21)" x="476.10007" y="931.0"/> | |
<text x="479.10" font-family="Verdana" font-size="12" y="941.50"></text> | |
</g> | |
<g onmouseover="s('_NativeCanvas._drawImageRect (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_NativeCanvas._drawImageRect (0.10%)</title> | |
<rect fill="rgb(211,45,55)" ry="2" rx="2" height="15.0" x="476.10007" y="915.0" width="1.1799927"/> | |
<text y="925.50" x="479.10" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('NativeCanvas.__drawImageRect$Method$FfiNative (0.10%)')" onclick="zoom(this)"><title >NativeCanvas.__drawImageRect$Method$FfiNative (0.10%)</title> | |
<rect rx="2" y="899.0" fill="rgb(253,39,15)" ry="2" x="476.10007" width="1.1799927" height="15.0"/> | |
<text font-family="Verdana" x="479.10" font-size="12" y="909.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect ry="2" x="476.10007" y="883.0" fill="rgb(215,207,49)" height="15.0" rx="2" width="1.1799927"/> | |
<text y="893.50" x="479.10" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('tonic::FfiDispatcher<flutter::Canvas, _Dart_Handle* (flutter::Canvas::*)(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int), &flutter::Canvas::drawImageRect(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int)>::Call(tonic::DartWrappable*, tonic::DartWrappable*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >tonic::FfiDispatcher<flutter::Canvas, _Dart_Handle* (flutter::Canvas::*)(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int), &flutter::Canvas::drawImageRect(flutter::CanvasImage const*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int)>::Call(tonic::DartWrappable*, tonic::DartWrappable*, double, double, double, double, double, double, double, double, _Dart_Handle*, _Dart_Handle*, int) (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(238,31,10)" rx="2" height="15.0" x="476.10007" y="867.0" ry="2"/> | |
<text font-size="12" y="877.50" x="479.10" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.canvas (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.canvas (0.20%)</title> | |
<rect x="480.82007" fill="rgb(215,104,32)" height="15.0" ry="2" rx="2" y="1123.0" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" x="483.82" y="1133.50"></text> | |
</g> | |
<g onmouseover="s('PaintingContext._startRecording (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PaintingContext._startRecording (0.20%)</title> | |
<rect height="15.0" fill="rgb(235,29,4)" rx="2" y="1107.0" width="2.3599854" ry="2" x="480.82007"/> | |
<text font-size="12" x="483.82" font-family="Verdana" y="1117.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RendererBinding.createCanvas (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RendererBinding.createCanvas (0.10%)</title> | |
<rect x="480.82007" ry="2" rx="2" fill="rgb(223,54,11)" y="1091.0" width="1.1799927" height="15.0"/> | |
<text font-family="Verdana" y="1101.50" font-size="12" x="483.82"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('new _NativeCanvas (0.10%)')" onclick="zoom(this)"><title >new _NativeCanvas (0.10%)</title> | |
<rect x="480.82007" height="15.0" width="1.1799927" ry="2" fill="rgb(237,149,0)" y="1075.0" rx="2"/> | |
<text font-size="12" x="483.82" y="1085.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_NativeCanvas._constructor (0.10%)')"><title >_NativeCanvas._constructor (0.10%)</title> | |
<rect width="1.1799927" x="480.82007" height="15.0" fill="rgb(234,50,48)" y="1059.0" rx="2" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="1069.50" x="483.82"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('NativeCanvas.__constructor$Method$FfiNative (0.10%)')" onclick="zoom(this)"><title >NativeCanvas.__constructor$Method$FfiNative (0.10%)</title> | |
<rect y="1043.0" x="480.82007" height="15.0" width="1.1799927" fill="rgb(253,107,3)" ry="2" rx="2"/> | |
<text font-size="12" x="483.82" font-family="Verdana" y="1053.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')" onmouseout="c()" class="func_g"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect fill="rgb(220,83,12)" x="480.82007" height="15.0" width="1.1799927" y="1027.0" ry="2" rx="2"/> | |
<text x="483.82" y="1037.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('tonic::FfiDispatcher<void, void (*)(_Dart_Handle*, flutter::PictureRecorder*, double, double, double, double), &flutter::Canvas::Create(_Dart_Handle*, flutter::PictureRecorder*, double, double, double, double)>::Call(_Dart_Handle*, tonic::DartWrappable*, double, double, double, double) (0.10%)')"><title >tonic::FfiDispatcher<void, void (*)(_Dart_Handle*, flutter::PictureRecorder*, double, double, double, double), &flutter::Canvas::Create(_Dart_Handle*, flutter::PictureRecorder*, double, double, double, double)>::Call(_Dart_Handle*, tonic::DartWrappable*, double, double, double, double) (0.10%)</title> | |
<rect width="1.1799927" height="15.0" rx="2" y="1011.0" fill="rgb(242,47,44)" ry="2" x="480.82007"/> | |
<text font-size="12" y="1021.50" x="483.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.stopRecordingIfNeeded (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.stopRecordingIfNeeded (0.50%)</title> | |
<rect fill="rgb(215,75,17)" rx="2" ry="2" x="487.9001" width="5.899994" y="1267.0" height="15.0"/> | |
<text x="490.90" y="1277.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('NativePictureRecorder.endRecording (0.50%)')"><title >NativePictureRecorder.endRecording (0.50%)</title> | |
<rect y="1251.0" ry="2" width="5.899994" x="487.9001" rx="2" height="15.0" fill="rgb(255,68,18)"/> | |
<text font-size="12" y="1261.50" x="490.90" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_NativePictureRecorder._endRecording (0.40%)')"><title >_NativePictureRecorder._endRecording (0.40%)</title> | |
<rect fill="rgb(242,185,28)" y="1235.0" width="4.720001" x="487.9001" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" x="490.90" font-family="Verdana" y="1245.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('NativePictureRecorder.__endRecording$Method$FfiNative (0.40%)')"><title >NativePictureRecorder.__endRecording$Method$FfiNative (0.40%)</title> | |
<rect ry="2" y="1219.0" fill="rgb(225,3,33)" height="15.0" rx="2" width="4.720001" x="487.9001"/> | |
<text y="1229.50" font-family="Verdana" font-size="12" x="490.90"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('stub CallNativeThroughSafepoint (0.40%)')"><title >stub CallNativeThroughSafepoint (0.40%)</title> | |
<rect ry="2" fill="rgb(233,39,12)" x="487.9001" width="4.720001" rx="2" height="15.0" y="1203.0"/> | |
<text y="1213.50" font-size="12" x="490.90" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('tonic::FfiDispatcher<flutter::PictureRecorder, void (flutter::PictureRecorder::*)(_Dart_Handle*), &flutter::PictureRecorder::endRecording(_Dart_Handle*)>::Call(tonic::DartWrappable*, _Dart_Handle*) (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >tonic::FfiDispatcher<flutter::PictureRecorder, void (flutter::PictureRecorder::*)(_Dart_Handle*), &flutter::PictureRecorder::endRecording(_Dart_Handle*)>::Call(tonic::DartWrappable*, _Dart_Handle*) (0.40%)</title> | |
<rect x="487.9001" height="15.0" width="4.720001" ry="2" fill="rgb(237,124,25)" y="1187.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="490.90" y="1197.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::DisplayListBuilder::Build() (0.30%)')"><title >flutter::DisplayListBuilder::Build() (0.30%)</title> | |
<rect width="3.5400085" x="487.9001" height="15.0" fill="rgb(244,25,11)" y="1171.0" rx="2" ry="2"/> | |
<text font-size="12" y="1181.50" font-family="Verdana" x="490.90"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListStorage::realloc(unsigned long) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::DisplayListStorage::realloc(unsigned long) (0.10%)</title> | |
<rect fill="rgb(248,205,43)" x="487.9001" height="15.0" width="1.1799927" y="1155.0" ry="2" rx="2"/> | |
<text font-family="Verdana" y="1165.50" font-size="12" x="490.90"></text> | |
</g> | |
<g onmouseover="s('_realloc (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_realloc (0.10%)</title> | |
<rect ry="2" x="487.9001" height="15.0" y="1139.0" fill="rgb(218,139,44)" rx="2" width="1.1799927"/> | |
<text font-size="12" font-family="Verdana" x="490.90" y="1149.50"></text> | |
</g> | |
<g onmouseover="s('PipelineOwner.flushLayout (5.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PipelineOwner.flushLayout (5.80%)</title> | |
<rect fill="rgb(251,195,45)" rx="2" ry="2" x="497.3401" width="68.44" y="1331.0" height="15.0"/> | |
<text x="500.34" y="1341.50" font-size="12" font-family="Verdana">Pipelin..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('PipelineOwner.flushLayout (5.70%)')"><title >PipelineOwner.flushLayout (5.70%)</title> | |
<rect y="1315.0" ry="2" width="67.26001" x="497.3401" rx="2" height="15.0" fill="rgb(222,187,45)"/> | |
<text font-size="12" y="1325.50" x="500.34" font-family="Verdana">Pipelin..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject._layoutWithoutResize (5.70%)')"><title >RenderObject._layoutWithoutResize (5.70%)</title> | |
<rect ry="2" y="1299.0" fill="rgb(208,170,36)" height="15.0" rx="2" width="67.26001" x="497.3401"/> | |
<text font-size="12" x="500.34" font-family="Verdana" y="1309.50">RenderO..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderStack.performLayout (5.60%)')"><title >RenderStack.performLayout (5.60%)</title> | |
<rect fill="rgb(218,180,6)" width="66.08002" ry="2" x="497.3401" rx="2" height="15.0" y="1283.0"/> | |
<text font-family="Verdana" y="1293.50" font-size="12" x="500.34">RenderS..</text> | |
</g> | |
<g onmouseover="s('RenderStack.layoutPositionedChild (3.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderStack.layoutPositionedChild (3.60%)</title> | |
<rect height="15.0" fill="rgb(249,9,19)" rx="2" y="1267.0" width="42.47998" ry="2" x="497.3401"/> | |
<text y="1277.50" font-size="12" x="500.34" font-family="Verdana">Ren..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Offset.dx (1.50%)')" onmouseout="c()" class="func_g"><title >Offset.dx (1.50%)</title> | |
<rect ry="2" x="497.3401" height="15.0" y="1251.0" fill="rgb(238,70,0)" rx="2" width="17.700012"/> | |
<text font-size="12" y="1261.50" x="500.34" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.70%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.70%)</title> | |
<rect ry="2" x="515.0401" height="15.0" y="1251.0" fill="rgb(250,78,2)" rx="2" width="8.26001"/> | |
<text font-size="12" y="1261.50" x="518.04" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('BoxConstraints.== (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >BoxConstraints.== (0.40%)</title> | |
<rect ry="2" fill="rgb(236,196,4)" rx="2" x="515.0401" width="4.7200317" y="1235.0" height="15.0"/> | |
<text font-size="12" y="1245.50" font-family="Verdana" x="518.04"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Object._haveSameRuntimeType (0.20%)')"><title >Object._haveSameRuntimeType (0.20%)</title> | |
<rect rx="2" fill="rgb(207,5,50)" x="515.0401" ry="2" y="1219.0" width="2.3599854" height="15.0"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="518.04"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('StackParentData.positionedChildConstraints (0.30%)')" onmouseout="c()" class="func_g"><title >StackParentData.positionedChildConstraints (0.30%)</title> | |
<rect ry="2" fill="rgb(218,35,18)" rx="2" x="523.3001" width="3.539978" y="1251.0" height="15.0"/> | |
<text font-size="12" y="1261.50" x="526.30" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('new BoxConstraints.tightFor (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >new BoxConstraints.tightFor (0.10%)</title> | |
<rect rx="2" fill="rgb(208,80,52)" x="523.3001" ry="2" y="1235.0" width="1.1799927" height="15.0"/> | |
<text font-size="12" y="1245.50" font-family="Verdana" x="526.30"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect rx="2" fill="rgb(235,157,18)" x="524.4801" ry="2" y="1235.0" width="1.1799927" height="15.0"/> | |
<text font-size="12" y="1245.50" font-family="Verdana" x="527.48"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Offset.dy (0.30%)')" onmouseout="c()" class="func_g"><title >Offset.dy (0.30%)</title> | |
<rect ry="2" fill="rgb(243,99,42)" rx="2" x="526.8401" width="3.539978" y="1251.0" height="15.0"/> | |
<text font-size="12" y="1261.50" x="529.84" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderStack._computeSize (1.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderStack._computeSize (1.60%)</title> | |
<rect ry="2" fill="rgb(214,140,12)" rx="2" x="539.82007" width="18.880005" y="1267.0" height="15.0"/> | |
<text y="1277.50" font-size="12" x="542.82" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ContainerRenderObjectMixin.firstChild (0.10%)')" onmouseout="c()" class="func_g"><title >ContainerRenderObjectMixin.firstChild (0.10%)</title> | |
<rect rx="2" fill="rgb(251,142,24)" x="539.82007" ry="2" y="1251.0" width="1.1799927" height="15.0"/> | |
<text font-size="12" y="1261.50" x="542.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderView.compositeFrame (0.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderView.compositeFrame (0.80%)</title> | |
<rect fill="rgb(210,103,49)" rx="2" ry="2" x="565.7801" width="9.440002" y="1331.0" height="15.0"/> | |
<text x="568.78" y="1341.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('FlutterView.render (0.30%)')"><title >FlutterView.render (0.30%)</title> | |
<rect y="1315.0" ry="2" width="3.539978" x="565.7801" rx="2" height="15.0" fill="rgb(222,47,20)"/> | |
<text font-size="12" y="1325.50" x="568.78" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('FlutterView._render (0.30%)')"><title >FlutterView._render (0.30%)</title> | |
<rect ry="2" fill="rgb(215,92,49)" rx="2" x="565.7801" width="3.539978" y="1299.0" height="15.0"/> | |
<text font-size="12" x="568.78" font-family="Verdana" y="1309.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('FlutterView.__render$Method$FfiNative (0.30%)')"><title >FlutterView.__render$Method$FfiNative (0.30%)</title> | |
<rect rx="2" fill="rgb(225,87,15)" x="565.7801" ry="2" y="1283.0" width="3.539978" height="15.0"/> | |
<text font-family="Verdana" y="1293.50" font-size="12" x="568.78"></text> | |
</g> | |
<g onmouseover="s('stub CallNativeThroughSafepoint (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (0.30%)</title> | |
<rect ry="2" y="1267.0" fill="rgb(231,115,34)" height="15.0" rx="2" width="3.539978" x="565.7801"/> | |
<text y="1277.50" font-size="12" x="568.78" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::RuntimeController::Render(long long, flutter::Scene*, double, double) (0.30%)')" onmouseout="c()" class="func_g"><title >flutter::RuntimeController::Render(long long, flutter::Scene*, double, double) (0.30%)</title> | |
<rect fill="rgb(211,66,5)" width="3.539978" ry="2" x="565.7801" rx="2" height="15.0" y="1251.0"/> | |
<text font-size="12" y="1261.50" x="568.78" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('flutter::Animator::EndFrame() (0.20%)')"><title >flutter::Animator::EndFrame() (0.20%)</title> | |
<rect height="15.0" fill="rgb(254,17,39)" rx="2" y="1235.0" width="2.3599854" ry="2" x="565.7801"/> | |
<text x="568.78" y="1245.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>) (0.20%)')"><title >flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>) (0.20%)</title> | |
<rect width="2.3599854" height="15.0" y="1219.0" x="565.7801" fill="rgb(237,39,5)" rx="2" ry="2"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="568.78"></text> | |
</g> | |
<g onmouseover="s('fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.20%)</title> | |
<rect ry="2" x="565.7801" height="15.0" width="2.3599854" fill="rgb(235,20,24)" rx="2" y="1203.0"/> | |
<text font-size="12" x="568.78" y="1213.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CFRunLoopTimerSetNextFireDate (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >CFRunLoopTimerSetNextFireDate (0.10%)</title> | |
<rect rx="2" x="565.7801" y="1187.0" width="1.1799927" fill="rgb(249,223,53)" height="15.0" ry="2"/> | |
<text x="568.78" y="1197.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('ContainerLayer.buildScene (0.30%)')"><title >ContainerLayer.buildScene (0.30%)</title> | |
<rect y="1315.0" ry="2" width="3.539978" x="569.32007" rx="2" height="15.0" fill="rgb(210,170,17)"/> | |
<text font-size="12" y="1325.50" x="572.32" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('TransformLayer.addToScene (0.20%)')"><title >TransformLayer.addToScene (0.20%)</title> | |
<rect ry="2" fill="rgb(246,227,33)" rx="2" x="569.32007" width="2.3599854" y="1299.0" height="15.0"/> | |
<text font-size="12" x="572.32" font-family="Verdana" y="1309.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('ContainerLayer.addChildrenToScene (0.20%)')"><title >ContainerLayer.addChildrenToScene (0.20%)</title> | |
<rect rx="2" fill="rgb(255,75,31)" x="569.32007" ry="2" y="1283.0" width="2.3599854" height="15.0"/> | |
<text font-family="Verdana" y="1293.50" font-size="12" x="572.32"></text> | |
</g> | |
<g onmouseover="s('Layer._addToSceneWithRetainedRendering (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Layer._addToSceneWithRetainedRendering (0.20%)</title> | |
<rect ry="2" x="569.32007" height="15.0" width="2.3599854" fill="rgb(243,94,37)" rx="2" y="1267.0"/> | |
<text y="1277.50" font-size="12" x="572.32" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('OffsetLayer.addToScene (0.10%)')" onmouseout="c()" class="func_g"><title >OffsetLayer.addToScene (0.10%)</title> | |
<rect ry="2" y="1251.0" fill="rgb(236,149,12)" height="15.0" rx="2" width="1.1799927" x="569.32007"/> | |
<text font-size="12" y="1261.50" x="572.32" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ContainerLayer.addChildrenToScene (0.10%)')"><title >ContainerLayer.addChildrenToScene (0.10%)</title> | |
<rect rx="2" x="569.32007" y="1235.0" width="1.1799927" fill="rgb(226,93,23)" height="15.0" ry="2"/> | |
<text x="572.32" y="1245.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Layer._addToSceneWithRetainedRendering (0.10%)')"><title >Layer._addToSceneWithRetainedRendering (0.10%)</title> | |
<rect fill="rgb(250,27,55)" width="1.1799927" ry="2" x="569.32007" rx="2" height="15.0" y="1219.0"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="572.32"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('OffsetLayer.addToScene (0.10%)')"><title >OffsetLayer.addToScene (0.10%)</title> | |
<rect height="15.0" fill="rgb(226,126,6)" rx="2" y="1203.0" width="1.1799927" ry="2" x="569.32007"/> | |
<text font-size="12" x="572.32" y="1213.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ContainerLayer.addChildrenToScene (0.10%)')" onmouseout="c()" class="func_g"><title >ContainerLayer.addChildrenToScene (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(242,143,5)" y="1187.0" x="569.32007" rx="2" ry="2" height="15.0"/> | |
<text x="572.32" y="1197.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Layer._addToSceneWithRetainedRendering (0.10%)')" onclick="zoom(this)"><title >Layer._addToSceneWithRetainedRendering (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="1171.0" rx="2" x="569.32007" fill="rgb(253,166,13)" ry="2"/> | |
<text x="572.32" y="1181.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('FlutterTimeline.startSync (0.10%)')"><title >FlutterTimeline.startSync (0.10%)</title> | |
<rect y="1315.0" ry="2" width="1.1799927" x="572.8601" rx="2" height="15.0" fill="rgb(218,204,9)"/> | |
<text font-size="12" y="1325.50" x="575.86" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Timeline.startSync (0.10%)')"><title >Timeline.startSync (0.10%)</title> | |
<rect ry="2" fill="rgb(235,93,4)" rx="2" x="572.8601" width="1.1799927" y="1299.0" height="15.0"/> | |
<text font-size="12" x="575.86" font-family="Verdana" y="1309.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('SyncBlock._startSync (0.10%)')"><title >SyncBlock._startSync (0.10%)</title> | |
<rect rx="2" fill="rgb(210,67,50)" x="572.8601" ry="2" y="1283.0" width="1.1799927" height="15.0"/> | |
<text font-family="Verdana" y="1293.50" font-size="12" x="575.86"></text> | |
</g> | |
<g onmouseover="s('PipelineOwner.flushCompositingBits (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PipelineOwner.flushCompositingBits (0.10%)</title> | |
<rect fill="rgb(223,168,45)" rx="2" ry="2" x="575.2201" width="1.1799927" y="1331.0" height="15.0"/> | |
<text x="578.22" y="1341.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('BuildOwner.buildScope (35.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >BuildOwner.buildScope (35.10%)</title> | |
<rect fill="rgb(228,192,46)" rx="2" ry="2" x="578.76013" width="414.18005" y="1347.0" height="15.0"/> | |
<text x="581.76" y="1357.50" font-size="12" font-family="Verdana">BuildOwner.buildScope</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('BuildScope._flushDirtyElements (35.00%)')"><title >BuildScope._flushDirtyElements (35.00%)</title> | |
<rect y="1331.0" ry="2" width="413.00006" x="578.76013" rx="2" height="15.0" fill="rgb(209,187,18)"/> | |
<text font-size="12" y="1341.50" x="581.76" font-family="Verdana">BuildScope._flushDirtyElements</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('BuildScope._tryRebuild (34.40%)')"><title >BuildScope._tryRebuild (34.40%)</title> | |
<rect ry="2" fill="rgb(217,18,48)" rx="2" x="578.76013" width="405.92004" y="1315.0" height="15.0"/> | |
<text font-size="12" x="581.76" font-family="Verdana" y="1325.50">BuildScope._tryRebuild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.rebuild (34.10%)')"><title >Element.rebuild (34.10%)</title> | |
<rect rx="2" fill="rgb(220,219,19)" x="578.76013" ry="2" y="1299.0" width="402.38" height="15.0"/> | |
<text y="1309.50" font-family="Verdana" font-size="12" x="581.76">Element.rebuild</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('StatefulElement.performRebuild (34.00%)')"><title >StatefulElement.performRebuild (34.00%)</title> | |
<rect ry="2" x="578.76013" height="15.0" width="401.20007" fill="rgb(227,158,53)" rx="2" y="1283.0"/> | |
<text y="1293.50" font-size="12" x="581.76" font-family="Verdana">StatefulElement.performRebuild</text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (34.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >ComponentElement.performRebuild (34.00%)</title> | |
<rect width="401.20007" height="15.0" y="1267.0" rx="2" x="578.76013" fill="rgb(240,172,12)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="581.76" y="1277.50">ComponentElement.performRebuild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.updateChild (30.60%)')"><title >Element.updateChild (30.60%)</title> | |
<rect ry="2" y="1251.0" fill="rgb(211,192,54)" height="15.0" rx="2" width="361.08008" x="578.76013"/> | |
<text font-size="12" y="1261.50" font-family="Verdana" x="581.76">Element.updateChild</text> | |
</g> | |
<g onmouseover="s('ProxyElement.update (27.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >ProxyElement.update (27.60%)</title> | |
<rect rx="2" x="578.76013" y="1235.0" width="325.68005" fill="rgb(209,192,39)" height="15.0" ry="2"/> | |
<text font-size="12" x="581.76" font-family="Verdana" y="1245.50">ProxyElement.update</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.rebuild (22.80%)')" onmouseout="c()" class="func_g"><title >Element.rebuild (22.80%)</title> | |
<rect height="15.0" fill="rgb(218,5,6)" rx="2" y="1219.0" width="269.04004" ry="2" x="578.76013"/> | |
<text font-family="Verdana" x="581.76" font-size="12" y="1229.50">Element.rebuild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.performRebuild (22.80%)')" onclick="zoom(this)"><title >ComponentElement.performRebuild (22.80%)</title> | |
<rect x="578.76013" ry="2" fill="rgb(213,9,32)" y="1203.0" rx="2" width="269.04004" height="15.0"/> | |
<text x="581.76" y="1213.50" font-family="Verdana" font-size="12">ComponentElement.performRebuild</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.updateChild (22.30%)')" onmouseout="c()"><title >Element.updateChild (22.30%)</title> | |
<rect x="578.76013" width="263.14" height="15.0" fill="rgb(250,227,55)" y="1187.0" ry="2" rx="2"/> | |
<text x="581.76" font-family="Verdana" font-size="12" y="1197.50">Element.updateChild</text> | |
</g> | |
<g onmouseover="s('StatefulElement.update (20.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >StatefulElement.update (20.40%)</title> | |
<rect fill="rgb(253,14,39)" x="578.76013" y="1171.0" ry="2" rx="2" height="15.0" width="240.72003"/> | |
<text font-family="Verdana" y="1181.50" x="581.76" font-size="12">StatefulElement.update</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.rebuild (16.90%)')" onmouseout="c()"><title >Element.rebuild (16.90%)</title> | |
<rect width="199.42004" ry="2" height="15.0" fill="rgb(241,107,10)" y="1155.0" rx="2" x="578.76013"/> | |
<text font-size="12" y="1165.50" font-family="Verdana" x="581.76">Element.rebuild</text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (16.90%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >StatefulElement.performRebuild (16.90%)</title> | |
<rect x="578.76013" y="1139.0" height="15.0" rx="2" fill="rgb(249,225,30)" ry="2" width="199.42004"/> | |
<text font-size="12" x="581.76" font-family="Verdana" y="1149.50">StatefulElement.performReb..</text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.performRebuild (16.90%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.performRebuild (16.90%)</title> | |
<rect ry="2" x="578.76013" width="199.42004" height="15.0" fill="rgb(232,115,12)" y="1123.0" rx="2"/> | |
<text x="581.76" font-family="Verdana" y="1133.50" font-size="12">ComponentElement.performRe..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (12.90%)')" onclick="zoom(this)" class="func_g"><title >Element.updateChild (12.90%)</title> | |
<rect ry="2" width="152.22003" y="1107.0" fill="rgb(212,23,29)" height="15.0" x="578.76013" rx="2"/> | |
<text font-size="12" x="581.76" font-family="Verdana" y="1117.50">Element.updateChild</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('SingleChildRenderObjectElement.update (11.50%)')"><title >SingleChildRenderObjectElement.update (11.50%)</title> | |
<rect height="15.0" fill="rgb(250,151,6)" ry="2" rx="2" y="1091.0" width="135.70001" x="578.76013"/> | |
<text font-family="Verdana" x="581.76" y="1101.50" font-size="12">SingleChildRender..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (7.20%)')"><title >Element.updateChild (7.20%)</title> | |
<rect y="1075.0" fill="rgb(247,168,45)" height="15.0" ry="2" rx="2" x="578.76013" width="84.96002"/> | |
<text y="1085.50" x="581.76" font-size="12" font-family="Verdana">Element.up..</text> | |
</g> | |
<g onmouseover="s('RenderObjectElement.update (5.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObjectElement.update (5.50%)</title> | |
<rect fill="rgb(242,98,18)" x="578.76013" height="15.0" rx="2" ry="2" y="1059.0" width="64.900024"/> | |
<text font-size="12" x="581.76" font-family="Verdana" y="1069.50">RenderO..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObjectElement._performRebuild (5.40%)')" class="func_g"><title >RenderObjectElement._performRebuild (5.40%)</title> | |
<rect x="578.76013" y="1043.0" height="15.0" ry="2" fill="rgb(248,182,16)" width="63.72003" rx="2"/> | |
<text font-family="Verdana" y="1053.50" x="581.76" font-size="12">RenderO..</text> | |
</g> | |
<g onmouseover="s('RawImage.updateRenderObject (5.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RawImage.updateRenderObject (5.40%)</title> | |
<rect fill="rgb(229,163,31)" rx="2" x="578.76013" y="1027.0" height="15.0" ry="2" width="63.72003"/> | |
<text y="1037.50" x="581.76" font-size="12" font-family="Verdana">RawImag..</text> | |
</g> | |
<g onmouseover="s('Image.clone (2.90%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Image.clone (2.90%)</title> | |
<rect rx="2" width="34.22003" height="15.0" fill="rgb(214,194,6)" x="578.76013" y="1011.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="581.76" y="1021.50">Im..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('new Image._ (2.50%)')" onclick="zoom(this)"><title >new Image._ (2.50%)</title> | |
<rect y="995.0" x="578.76013" rx="2" ry="2" width="29.5" fill="rgb(243,58,9)" height="15.0"/> | |
<text font-family="Verdana" y="1005.50" x="581.76" font-size="12">ne..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('LinkedHashSetMixin.add (2.50%)')" onmouseout="c()"><title >LinkedHashSetMixin.add (2.50%)</title> | |
<rect fill="rgb(221,176,9)" height="15.0" ry="2" x="578.76013" rx="2" y="979.0" width="29.5"/> | |
<text font-size="12" y="989.50" x="581.76" font-family="Verdana">Li..</text> | |
</g> | |
<g onmouseover="s('LinkedHashSetMixin._add (1.70%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >LinkedHashSetMixin._add (1.70%)</title> | |
<rect width="20.059998" rx="2" ry="2" fill="rgb(247,176,2)" height="15.0" x="578.76013" y="963.0"/> | |
<text font-family="Verdana" x="581.76" font-size="12" y="973.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('LinkedHashSetMixin._rehash (0.70%)')"><title >LinkedHashSetMixin._rehash (0.70%)</title> | |
<rect ry="2" height="15.0" y="947.0" fill="rgb(251,99,6)" rx="2" x="578.76013" width="8.26001"/> | |
<text font-size="12" x="581.76" y="957.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('LinkedHashSetMixin._init (0.70%)')" class="func_g" onclick="zoom(this)"><title >LinkedHashSetMixin._init (0.70%)</title> | |
<rect fill="rgb(243,196,1)" x="578.76013" y="931.0" height="15.0" rx="2" ry="2" width="8.26001"/> | |
<text font-family="Verdana" y="941.50" x="581.76" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_LinkedHashSetMixin.add (0.50%)')"><title >_LinkedHashSetMixin.add (0.50%)</title> | |
<rect x="578.76013" ry="2" height="15.0" width="5.9000244" fill="rgb(236,25,41)" rx="2" y="915.0"/> | |
<text font-family="Verdana" x="581.76" font-size="12" y="925.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('LinkedHashSetMixin._add (0.40%)')" onmouseout="c()" class="func_g"><title >LinkedHashSetMixin._add (0.40%)</title> | |
<rect ry="2" x="578.76013" y="899.0" width="4.7199707" rx="2" height="15.0" fill="rgb(249,174,48)"/> | |
<text y="909.50" font-family="Verdana" font-size="12" x="581.76"></text> | |
</g> | |
<g onmouseover="s('OperatorEqualsAndHashCode._hashCode (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >OperatorEqualsAndHashCode._hashCode (0.40%)</title> | |
<rect width="4.7199707" rx="2" ry="2" fill="rgb(224,172,29)" height="15.0" x="598.8201" y="963.0"/> | |
<text font-family="Verdana" x="601.82" font-size="12" y="973.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Object.hashCode (0.40%)')" onmouseout="c()"><title >Object.hashCode (0.40%)</title> | |
<rect fill="rgb(234,217,47)" x="598.8201" y="947.0" height="15.0" rx="2" ry="2" width="4.7199707"/> | |
<text font-family="Verdana" y="957.50" x="601.82" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('getHash (0.40%)')"><title >getHash (0.40%)</title> | |
<rect x="598.8201" ry="2" height="15.0" width="4.7199707" fill="rgb(225,157,14)" rx="2" y="931.0"/> | |
<text x="601.82" font-size="12" y="941.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.10%)')"><title >stub _iso_stub_AllocateObjectStub (0.10%)</title> | |
<rect fill="rgb(254,106,29)" x="608.26013" y="995.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text font-family="Verdana" y="1005.50" x="611.26" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderImage.image= (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderImage.image= (1.30%)</title> | |
<rect fill="rgb(230,161,52)" x="612.98016" y="1011.0" height="15.0" rx="2" ry="2" width="15.340027"/> | |
<text font-family="Verdana" y="1021.50" x="615.98" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Image.dispose (1.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Image.dispose (1.20%)</title> | |
<rect rx="2" width="14.159973" height="15.0" fill="rgb(240,216,48)" x="612.98016" y="995.0" ry="2"/> | |
<text x="615.98" font-size="12" y="1005.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('LinkedHashSetMixin.remove (0.70%)')" onmouseout="c()"><title >LinkedHashSetMixin.remove (0.70%)</title> | |
<rect rx="2" ry="2" height="15.0" width="8.26001" x="612.98016" fill="rgb(233,97,34)" y="979.0"/> | |
<text font-family="Verdana" y="989.50" x="615.98" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_HashBase._setDeletedAt (0.10%)')" onmouseout="c()" class="func_g"><title >_HashBase._setDeletedAt (0.10%)</title> | |
<rect ry="2" x="612.98016" y="963.0" width="1.1799927" rx="2" height="15.0" fill="rgb(230,46,41)"/> | |
<text font-size="12" x="615.98" font-family="Verdana" y="973.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderImage.alignment= (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderImage.alignment= (0.50%)</title> | |
<rect fill="rgb(246,160,28)" x="628.3201" y="1011.0" height="15.0" rx="2" ry="2" width="5.9000244"/> | |
<text font-family="Verdana" y="1021.50" x="631.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('AlignmentGeometry.== (0.50%)')" onclick="zoom(this)" onmouseout="c()"><title >AlignmentGeometry.== (0.50%)</title> | |
<rect rx="2" ry="2" height="15.0" width="5.9000244" x="628.3201" fill="rgb(213,15,26)" y="995.0"/> | |
<text x="631.32" font-size="12" y="1005.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Widget.canUpdate (0.40%)')"><title >Widget.canUpdate (0.40%)</title> | |
<rect fill="rgb(252,103,48)" x="643.66016" y="1059.0" height="15.0" rx="2" ry="2" width="4.7199707"/> | |
<text font-size="12" x="646.66" font-family="Verdana" y="1069.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Object._haveSameRuntimeType (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >Object._haveSameRuntimeType (0.20%)</title> | |
<rect height="15.0" ry="2" rx="2" y="1043.0" x="643.66016" width="2.3599854" fill="rgb(236,63,54)"/> | |
<text x="646.66" font-size="12" y="1053.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Element.widget (0.20%)')"><title >Element.widget (0.20%)</title> | |
<rect fill="rgb(218,198,51)" x="648.3801" y="1059.0" height="15.0" rx="2" ry="2" width="2.3599854"/> | |
<text font-size="12" x="651.38" font-family="Verdana" y="1069.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('isProfileBuildsEnabledFor (0.10%)')"><title >isProfileBuildsEnabledFor (0.10%)</title> | |
<rect fill="rgb(251,4,24)" x="650.7401" y="1059.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text font-size="12" x="653.74" font-family="Verdana" y="1069.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObjectElement.update (3.80%)')" class="func_g"><title >RenderObjectElement.update (3.80%)</title> | |
<rect rx="2" width="44.840027" height="15.0" fill="rgb(215,117,27)" x="663.72015" y="1075.0" ry="2"/> | |
<text font-family="Verdana" y="1085.50" x="666.72" font-size="12">Rend..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObjectElement._performRebuild (3.70%)')" onclick="zoom(this)"><title >RenderObjectElement._performRebuild (3.70%)</title> | |
<rect fill="rgb(224,64,46)" x="663.72015" y="1059.0" height="15.0" rx="2" ry="2" width="43.660034"/> | |
<text y="1069.50" font-size="12" x="666.72" font-family="Verdana">Rend..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Semantics.updateRenderObject (3.70%)')" class="func_g" onmouseout="c()"><title >Semantics.updateRenderObject (3.70%)</title> | |
<rect ry="2" fill="rgb(209,198,22)" height="15.0" rx="2" width="43.660034" y="1043.0" x="663.72015"/> | |
<text y="1053.50" x="666.72" font-size="12" font-family="Verdana">Sema..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Semantics._getTextDirection (2.90%)')" onmouseout="c()"><title >Semantics._getTextDirection (2.90%)</title> | |
<rect fill="rgb(229,78,17)" x="663.72015" y="1027.0" rx="2" width="34.22003" height="15.0" ry="2"/> | |
<text font-size="12" x="666.72" y="1037.50" font-family="Verdana">Se..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Directionality.maybeOf (2.90%)')" class="func_g" onclick="zoom(this)"><title >Directionality.maybeOf (2.90%)</title> | |
<rect x="663.72015" ry="2" width="34.22003" rx="2" y="1011.0" height="15.0" fill="rgb(247,44,16)"/> | |
<text font-size="12" y="1021.50" font-family="Verdana" x="666.72">Di..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.dependOnInheritedWidgetOfExactType (2.90%)')" onclick="zoom(this)" class="func_g"><title >Element.dependOnInheritedWidgetOfExactType (2.90%)</title> | |
<rect x="663.72015" height="15.0" rx="2" fill="rgb(220,108,30)" width="34.22003" ry="2" y="995.0"/> | |
<text x="666.72" y="1005.50" font-family="Verdana" font-size="12">El..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.dependOnInheritedElement (1.20%)')" onmouseout="c()"><title >Element.dependOnInheritedElement (1.20%)</title> | |
<rect height="15.0" ry="2" x="663.72015" fill="rgb(224,27,22)" width="14.159973" y="979.0" rx="2"/> | |
<text y="989.50" font-size="12" x="666.72" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('HashSet.add (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >HashSet.add (0.50%)</title> | |
<rect height="15.0" ry="2" y="963.0" rx="2" fill="rgb(217,42,32)" x="663.72015" width="5.9000244"/> | |
<text font-family="Verdana" x="666.72" y="973.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('_HashSet._equals (0.20%)')"><title >_HashSet._equals (0.20%)</title> | |
<rect height="15.0" width="2.3599854" x="663.72015" rx="2" y="947.0" ry="2" fill="rgb(213,165,10)"/> | |
<text font-family="Verdana" font-size="12" x="666.72" y="957.50"></text> | |
</g> | |
<g onmouseover="s('Element.widget (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Element.widget (0.10%)</title> | |
<rect height="15.0" ry="2" y="963.0" rx="2" fill="rgb(230,190,29)" x="669.6202" width="1.1799927"/> | |
<text font-family="Verdana" x="672.62" y="973.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PersistentHashMap.[] (1.00%)')" class="func_g"><title >PersistentHashMap.[] (1.00%)</title> | |
<rect fill="rgb(237,162,50)" x="677.8801" height="15.0" rx="2" y="979.0" ry="2" width="11.799988"/> | |
<text font-size="12" y="989.50" x="680.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_FullNode.get (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_FullNode.get (0.50%)</title> | |
<rect height="15.0" ry="2" y="963.0" rx="2" fill="rgb(255,169,16)" x="677.8801" width="5.9000244"/> | |
<text font-family="Verdana" y="973.50" x="680.88" font-size="12"></text> | |
</g> | |
<g onmouseover="s('CompressedNode.get (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CompressedNode.get (0.40%)</title> | |
<rect height="15.0" width="4.7199707" x="677.8801" rx="2" y="947.0" ry="2" fill="rgb(242,102,43)"/> | |
<text x="680.88" font-family="Verdana" y="957.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_HashCollisionNode.get (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_HashCollisionNode.get (0.10%)</title> | |
<rect height="15.0" ry="2" y="963.0" rx="2" fill="rgb(210,208,41)" x="683.78015" width="1.1799927"/> | |
<text font-family="Verdana" y="973.50" x="686.78" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderSemanticsAnnotations.properties= (0.40%)')" onmouseout="c()"><title >RenderSemanticsAnnotations.properties= (0.40%)</title> | |
<rect fill="rgb(239,1,17)" x="697.9402" height="15.0" rx="2" y="1027.0" ry="2" width="4.7199707"/> | |
<text font-size="12" x="700.94" y="1037.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderSemanticsAnnotations._updateAttributedFields (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderSemanticsAnnotations._updateAttributedFields (0.20%)</title> | |
<rect fill="rgb(228,91,22)" x="697.9402" y="1011.0" rx="2" width="2.3599854" height="15.0" ry="2"/> | |
<text font-size="12" y="1021.50" font-family="Verdana" x="700.94"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderSemanticsAnnotations._effectiveAttributedLabel (0.10%)')"><title >RenderSemanticsAnnotations._effectiveAttributedLabel (0.10%)</title> | |
<rect x="697.9402" rx="2" height="15.0" ry="2" fill="rgb(226,32,48)" y="995.0" width="1.1799927"/> | |
<text x="700.94" y="1005.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('isProfileBuildsEnabledFor (0.80%)')"><title >isProfileBuildsEnabledFor (0.80%)</title> | |
<rect fill="rgb(240,157,25)" x="714.46014" y="1091.0" height="15.0" rx="2" ry="2" width="9.440002"/> | |
<text font-family="Verdana" x="717.46" y="1101.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Widget.canUpdate (0.20%)')"><title >Widget.canUpdate (0.20%)</title> | |
<rect fill="rgb(208,60,55)" x="723.90015" y="1091.0" height="15.0" rx="2" ry="2" width="2.3599854"/> | |
<text font-family="Verdana" x="726.90" y="1101.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('IndexedSlot.== (0.10%)')"><title >IndexedSlot.== (0.10%)</title> | |
<rect fill="rgb(225,34,17)" x="726.26013" y="1091.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text font-family="Verdana" x="729.26" y="1101.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('StatefulElement.build (3.60%)')" class="func_g" onmouseout="c()"><title >StatefulElement.build (3.60%)</title> | |
<rect fill="rgb(248,115,13)" x="730.98016" y="1107.0" height="15.0" rx="2" ry="2" width="42.47998"/> | |
<text font-family="Verdana" y="1117.50" x="733.98" font-size="12">Sta..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ImageState.build (3.60%)')" onmouseout="c()" class="func_g"><title >ImageState.build (3.60%)</title> | |
<rect fill="rgb(222,6,27)" x="730.98016" height="15.0" rx="2" y="1091.0" ry="2" width="42.47998"/> | |
<text x="733.98" font-size="12" y="1101.50" font-family="Verdana">Ima..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('new Semantics (2.20%)')" onmouseout="c()"><title >new Semantics (2.20%)</title> | |
<rect rx="2" width="25.960022" height="15.0" fill="rgb(206,83,10)" x="730.98016" y="1075.0" ry="2"/> | |
<text y="1085.50" x="733.98" font-family="Verdana" font-size="12">n..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('stub AllocateObjectSlow (1.70%)')"><title >stub AllocateObjectSlow (1.70%)</title> | |
<rect width="20.059998" rx="2" x="730.98016" ry="2" fill="rgb(236,80,44)" y="1059.0" height="15.0"/> | |
<text font-size="12" x="733.98" y="1069.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('stub CallToRuntime (1.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub CallToRuntime (1.60%)</title> | |
<rect fill="rgb(250,40,38)" x="730.98016" height="15.0" rx="2" ry="2" y="1043.0" width="18.880005"/> | |
<text font-size="12" y="1053.50" x="733.98" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('dart::DRT_AllocateObject(dart::NativeArguments) (1.40%)')"><title >dart::DRT_AllocateObject(dart::NativeArguments) (1.40%)</title> | |
<rect rx="2" fill="rgb(219,147,4)" ry="2" x="730.98016" width="16.52002" height="15.0" y="1027.0"/> | |
<text font-size="12" x="733.98" font-family="Verdana" y="1037.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.90%)')" onmouseout="c()" class="func_g"><title >dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.90%)</title> | |
<rect fill="rgb(238,207,26)" width="10.619995" rx="2" height="15.0" x="730.98016" ry="2" y="1011.0"/> | |
<text font-family="Verdana" x="733.98" font-size="12" y="1021.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dart::Object::InitializeObject(unsigned long, long, long, bool, unsigned long, unsigned long) (0.70%)')" onclick="zoom(this)"><title >dart::Object::InitializeObject(unsigned long, long, long, bool, unsigned long, unsigned long) (0.70%)</title> | |
<rect ry="2" height="15.0" width="8.26001" x="730.98016" rx="2" fill="rgb(230,34,16)" y="995.0"/> | |
<text font-size="12" y="1005.50" font-family="Verdana" x="733.98"></text> | |
</g> | |
<g onmouseover="s('dart::TransitionGeneratedToVM::TransitionGeneratedToVM(dart::Thread*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dart::TransitionGeneratedToVM::TransitionGeneratedToVM(dart::Thread*) (0.10%)</title> | |
<rect fill="rgb(253,24,8)" height="15.0" width="1.1799927" x="741.60016" y="1011.0" rx="2" ry="2"/> | |
<text y="1021.50" font-size="12" x="744.60" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (0.10%)')" onclick="zoom(this)" class="func_g"><title >dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (0.10%)</title> | |
<rect width="1.1799927" ry="2" x="747.5002" y="1027.0" height="15.0" fill="rgb(217,131,16)" rx="2"/> | |
<text x="750.50" y="1037.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.30%)')" onmouseout="c()"><title >stub _iso_stub_AllocateObjectStub (0.30%)</title> | |
<rect width="3.539978" ry="2" x="756.9402" y="1075.0" height="15.0" fill="rgb(244,162,21)" rx="2"/> | |
<text font-size="12" x="759.94" y="1085.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ImageState.didUpdateWidget (2.80%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >ImageState.didUpdateWidget (2.80%)</title> | |
<rect fill="rgb(227,123,36)" x="778.1802" y="1155.0" height="15.0" rx="2" ry="2" width="33.039978"/> | |
<text font-family="Verdana" y="1165.50" x="781.18" font-size="12">Im..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ExactAssetImage.== (2.50%)')" onmouseout="c()"><title >ExactAssetImage.== (2.50%)</title> | |
<rect fill="rgb(229,159,41)" x="778.1802" height="15.0" rx="2" y="1139.0" ry="2" width="29.5"/> | |
<text x="781.18" font-size="12" y="1149.50" font-family="Verdana">Ex..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Object.runtimeType (2.40%)')"><title >Object.runtimeType (2.40%)</title> | |
<rect width="28.320007" ry="2" x="778.1802" y="1123.0" height="15.0" fill="rgb(248,196,43)" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="781.18" y="1133.50">Ob..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('stub CallBootstrapNative (2.20%)')" class="func_g" onmouseout="c()"><title >stub CallBootstrapNative (2.20%)</title> | |
<rect rx="2" width="25.960022" height="15.0" fill="rgb(244,69,5)" x="778.1802" y="1107.0" ry="2"/> | |
<text font-size="12" x="781.18" y="1117.50" font-family="Verdana">s..</text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::NativeEntry::BootstrapNativeCallWrapper(_Dart_NativeArguments*, void (*)(_Dart_NativeArguments*)) (2.00%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::NativeEntry::BootstrapNativeCallWrapper(_Dart_NativeArguments*, void (*)(_Dart_NativeArguments*)) (2.00%)</title> | |
<rect ry="2" x="778.1802" width="23.599976" height="15.0" fill="rgb(232,79,48)" y="1091.0" rx="2"/> | |
<text font-size="12" y="1101.50" font-family="Verdana" x="781.18">d..</text> | |
</g> | |
<g onmouseover="s('dart::BootstrapNatives::DN_Object_runtimeType(dart::Thread*, dart::Zone*, dart::NativeArguments*) (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::BootstrapNatives::DN_Object_runtimeType(dart::Thread*, dart::Zone*, dart::NativeArguments*) (0.30%)</title> | |
<rect y="1075.0" x="778.1802" rx="2" width="3.539978" height="15.0" fill="rgb(212,25,35)" ry="2"/> | |
<text font-size="12" x="781.18" font-family="Verdana" y="1085.50"></text> | |
</g> | |
<g onmouseover="s('dart::Instance::CheckedHandle(dart::Zone*, dart::ObjectPtr) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dart::Instance::CheckedHandle(dart::Zone*, dart::ObjectPtr) (0.10%)</title> | |
<rect fill="rgb(252,198,23)" x="778.1802" height="15.0" rx="2" ry="2" y="1059.0" width="1.1799927"/> | |
<text x="781.18" font-family="Verdana" y="1069.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::Instance::GetType(dart::Heap::Space) const (0.20%)')" onclick="zoom(this)" class="func_g"><title >dart::Instance::GetType(dart::Heap::Space) const (0.20%)</title> | |
<rect y="1075.0" x="781.72015" rx="2" width="2.3599854" height="15.0" fill="rgb(223,16,29)" ry="2"/> | |
<text y="1085.50" font-size="12" font-family="Verdana" x="784.72"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::Zone::~Zone() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::Zone::~Zone() (0.10%)</title> | |
<rect y="1075.0" x="784.0802" rx="2" width="1.1799927" height="15.0" fill="rgb(250,40,20)" ry="2"/> | |
<text y="1085.50" font-size="12" font-family="Verdana" x="787.08"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::TransitionGeneratedToVM::TransitionGeneratedToVM(dart::Thread*) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::TransitionGeneratedToVM::TransitionGeneratedToVM(dart::Thread*) (0.10%)</title> | |
<rect y="1075.0" x="785.2602" rx="2" width="1.1799927" height="15.0" fill="rgb(240,42,30)" ry="2"/> | |
<text y="1085.50" font-size="12" font-family="Verdana" x="788.26"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::Instance::CheckedHandle(dart::Zone*, dart::ObjectPtr) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::Instance::CheckedHandle(dart::Zone*, dart::ObjectPtr) (0.10%)</title> | |
<rect y="1075.0" x="786.4402" rx="2" width="1.1799927" height="15.0" fill="rgb(253,209,55)" ry="2"/> | |
<text y="1085.50" font-size="12" font-family="Verdana" x="789.44"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('State.didUpdateWidget (0.10%)')" onmouseout="c()"><title >State.didUpdateWidget (0.10%)</title> | |
<rect fill="rgb(208,87,47)" x="807.6802" height="15.0" rx="2" y="1139.0" ry="2" width="1.1799927"/> | |
<text x="810.68" font-size="12" y="1149.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('assert type is Image (#2) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >assert type is Image (#2) (0.10%)</title> | |
<rect width="1.1799927" ry="2" x="807.6802" y="1123.0" height="15.0" fill="rgb(251,171,26)" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="810.68" y="1133.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('isProfileBuildsEnabledFor (0.70%)')"><title >isProfileBuildsEnabledFor (0.70%)</title> | |
<rect fill="rgb(220,215,4)" x="819.48016" y="1171.0" height="15.0" rx="2" ry="2" width="8.26001"/> | |
<text font-family="Verdana" y="1181.50" x="822.48" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('IndexedSlot.== (0.40%)')"><title >IndexedSlot.== (0.40%)</title> | |
<rect fill="rgb(211,161,26)" x="827.7402" y="1171.0" height="15.0" rx="2" ry="2" width="4.7200317"/> | |
<text font-family="Verdana" y="1181.50" x="830.74" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Object._haveSameRuntimeType (0.10%)')" class="func_g"><title >Object._haveSameRuntimeType (0.10%)</title> | |
<rect fill="rgb(211,124,54)" x="827.7402" height="15.0" rx="2" y="1155.0" ry="2" width="1.1799927"/> | |
<text font-size="12" x="830.74" y="1165.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Widget.canUpdate (0.30%)')"><title >Widget.canUpdate (0.30%)</title> | |
<rect fill="rgb(228,161,24)" x="832.46014" y="1171.0" height="15.0" rx="2" ry="2" width="3.539978"/> | |
<text font-family="Verdana" y="1181.50" x="835.46" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Object._haveSameRuntimeType (0.10%)')" class="func_g"><title >Object._haveSameRuntimeType (0.10%)</title> | |
<rect x="832.46014" width="1.1799927" height="15.0" ry="2" y="1155.0" rx="2" fill="rgb(207,195,0)"/> | |
<text font-size="12" x="835.46" y="1165.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('FlutterTimeline.startSync (0.10%)')"><title >FlutterTimeline.startSync (0.10%)</title> | |
<rect fill="rgb(224,38,54)" x="836.0001" y="1171.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text font-family="Verdana" y="1181.50" x="839.00" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ProxyElement.build (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >ProxyElement.build (0.10%)</title> | |
<rect fill="rgb(207,189,35)" x="841.90015" y="1187.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text font-family="Verdana" y="1197.50" x="844.90" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ErrorWidget._defaultErrorWidgetBuilder (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >ErrorWidget._defaultErrorWidgetBuilder (0.10%)</title> | |
<rect fill="rgb(223,25,13)" x="843.0802" y="1187.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text font-family="Verdana" y="1197.50" x="846.08" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ProxyElement.updated (4.50%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >ProxyElement.updated (4.50%)</title> | |
<rect fill="rgb(214,13,51)" x="847.8002" y="1219.0" height="15.0" rx="2" ry="2" width="53.100037"/> | |
<text font-family="Verdana" y="1229.50" x="850.80" font-size="12">Proxy..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ParentDataElement.notifyClients (4.40%)')"><title >ParentDataElement.notifyClients (4.40%)</title> | |
<rect x="847.8002" width="51.919983" height="15.0" ry="2" y="1203.0" rx="2" fill="rgb(225,147,4)"/> | |
<text font-family="Verdana" x="850.80" font-size="12" y="1213.50">Paren..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ParentDataElement._applyParentData (4.20%)')" onmouseout="c()"><title >ParentDataElement._applyParentData (4.20%)</title> | |
<rect fill="rgb(253,230,19)" x="847.8002" height="15.0" rx="2" y="1187.0" ry="2" width="49.559998"/> | |
<text x="850.80" y="1197.50" font-family="Verdana" font-size="12">Pare..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('ParentDataElement._applyParentData.applyParentDataToChild (4.00%)')" class="func_g"><title >ParentDataElement._applyParentData.applyParentDataToChild (4.00%)</title> | |
<rect width="47.200012" ry="2" x="847.8002" y="1171.0" height="15.0" fill="rgb(207,169,6)" rx="2"/> | |
<text x="850.80" font-family="Verdana" font-size="12" y="1181.50">Pare..</text> | |
</g> | |
<g class="func_g" onmouseover="s('ParentDataElement._applyParentData.applyParentDataToChild (3.70%)')" onclick="zoom(this)" onmouseout="c()"><title >ParentDataElement._applyParentData.applyParentDataToChild (3.70%)</title> | |
<rect height="15.0" fill="rgb(223,134,24)" rx="2" y="1155.0" width="43.660034" ry="2" x="847.8002"/> | |
<text x="850.80" font-size="12" font-family="Verdana" y="1165.50">Pare..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObjectElement._updateParentData (3.70%)')" onclick="zoom(this)"><title >RenderObjectElement._updateParentData (3.70%)</title> | |
<rect x="847.8002" ry="2" fill="rgb(214,79,8)" y="1139.0" rx="2" width="43.660034" height="15.0"/> | |
<text y="1149.50" font-size="12" font-family="Verdana" x="850.80">Rend..</text> | |
</g> | |
<g class="func_g" onmouseover="s('Positioned.applyParentData (3.60%)')" onclick="zoom(this)" onmouseout="c()"><title >Positioned.applyParentData (3.60%)</title> | |
<rect width="42.47998" x="847.8002" ry="2" height="15.0" rx="2" y="1123.0" fill="rgb(229,98,46)"/> | |
<text font-size="12" font-family="Verdana" y="1133.50" x="850.80">Pos..</text> | |
</g> | |
<g onmouseover="s('RenderBox.markNeedsLayout (0.70%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderBox.markNeedsLayout (0.70%)</title> | |
<rect height="15.0" rx="2" width="8.26001" fill="rgb(226,68,31)" x="847.8002" ry="2" y="1107.0"/> | |
<text x="850.80" y="1117.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.markNeedsLayout (0.30%)')"><title >RenderObject.markNeedsLayout (0.30%)</title> | |
<rect rx="2" x="847.8002" ry="2" y="1091.0" height="15.0" fill="rgb(248,85,15)" width="3.539978"/> | |
<text font-family="Verdana" x="850.80" font-size="12" y="1101.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('LayoutCacheStorage.clear (0.10%)')"><title >LayoutCacheStorage.clear (0.10%)</title> | |
<rect rx="2" x="851.34015" ry="2" y="1091.0" height="15.0" fill="rgb(242,29,46)" width="1.1799927"/> | |
<text font-family="Verdana" x="854.34" font-size="12" y="1101.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('double.== (0.60%)')" onclick="zoom(this)"><title >double.== (0.60%)</title> | |
<rect height="15.0" rx="2" width="7.080017" fill="rgb(229,115,12)" x="856.0602" ry="2" y="1107.0"/> | |
<text x="859.06" y="1117.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Object.== (0.50%)')" onclick="zoom(this)"><title >Object.== (0.50%)</title> | |
<rect height="15.0" rx="2" width="5.9000244" fill="rgb(245,192,31)" x="863.1402" ry="2" y="1107.0"/> | |
<text x="866.14" y="1117.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('stub _iso_stub_AllocateClosureStub (0.10%)')" class="func_g"><title >stub _iso_stub_AllocateClosureStub (0.10%)</title> | |
<rect height="15.0" rx="2" width="1.1799927" fill="rgb(209,57,44)" x="895.0002" ry="2" y="1171.0"/> | |
<text x="898.00" font-family="Verdana" font-size="12" y="1181.50"></text> | |
</g> | |
<g onmouseover="s('Widget.canUpdate (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Widget.canUpdate (0.60%)</title> | |
<rect fill="rgb(208,60,43)" x="904.4402" y="1235.0" height="15.0" rx="2" ry="2" width="7.080017"/> | |
<text font-family="Verdana" y="1245.50" x="907.44" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Object._haveSameRuntimeType (0.20%)')"><title >Object._haveSameRuntimeType (0.20%)</title> | |
<rect height="15.0" rx="2" width="2.3599854" fill="rgb(250,192,42)" x="904.4402" ry="2" y="1219.0"/> | |
<text font-size="12" x="907.44" font-family="Verdana" y="1229.50"></text> | |
</g> | |
<g onmouseover="s('isProfileBuildsEnabledFor (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >isProfileBuildsEnabledFor (0.60%)</title> | |
<rect fill="rgb(233,91,2)" x="911.52014" y="1235.0" height="15.0" rx="2" ry="2" width="7.080017"/> | |
<text font-family="Verdana" y="1245.50" x="914.52" font-size="12"></text> | |
</g> | |
<g onmouseover="s('IndexedSlot.== (0.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >IndexedSlot.== (0.40%)</title> | |
<rect fill="rgb(208,212,39)" x="918.60016" y="1235.0" height="15.0" rx="2" ry="2" width="4.7199707"/> | |
<text font-family="Verdana" y="1245.50" x="921.60" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.== (0.10%)')"><title >Element.== (0.10%)</title> | |
<rect height="15.0" rx="2" width="1.1799927" fill="rgb(226,186,12)" x="918.60016" ry="2" y="1219.0"/> | |
<text font-size="12" x="921.60" font-family="Verdana" y="1229.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Object._haveSameRuntimeType (0.10%)')"><title >Object._haveSameRuntimeType (0.10%)</title> | |
<rect height="15.0" rx="2" width="1.1799927" fill="rgb(207,115,47)" x="919.78015" ry="2" y="1219.0"/> | |
<text font-size="12" x="922.78" font-family="Verdana" y="1229.50"></text> | |
</g> | |
<g onmouseover="s('MultiChildRenderObjectElement.update (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >MultiChildRenderObjectElement.update (0.30%)</title> | |
<rect fill="rgb(206,141,1)" x="923.3202" y="1235.0" height="15.0" rx="2" ry="2" width="3.539978"/> | |
<text font-family="Verdana" y="1245.50" x="926.32" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.updateChildren (0.30%)')"><title >Element.updateChildren (0.30%)</title> | |
<rect x="923.3202" width="3.539978" height="15.0" ry="2" y="1219.0" rx="2" fill="rgb(236,9,19)"/> | |
<text font-size="12" x="926.32" font-family="Verdana" y="1229.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.updateChild (0.20%)')"><title >Element.updateChild (0.20%)</title> | |
<rect rx="2" x="923.3202" y="1203.0" width="2.3599854" fill="rgb(243,66,20)" height="15.0" ry="2"/> | |
<text font-size="12" y="1213.50" x="926.32" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('MultiChildRenderObjectElement.inflateWidget (0.20%)')" onclick="zoom(this)"><title >MultiChildRenderObjectElement.inflateWidget (0.20%)</title> | |
<rect height="15.0" fill="rgb(247,72,15)" rx="2" y="1187.0" width="2.3599854" ry="2" x="923.3202"/> | |
<text font-size="12" y="1197.50" font-family="Verdana" x="926.32"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Element.inflateWidget (0.20%)')" onclick="zoom(this)"><title >Element.inflateWidget (0.20%)</title> | |
<rect rx="2" width="2.3599854" height="15.0" fill="rgb(225,193,27)" x="923.3202" y="1171.0" ry="2"/> | |
<text font-size="12" x="926.32" y="1181.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.mount (0.20%)')" class="func_g" onmouseout="c()"><title >ComponentElement.mount (0.20%)</title> | |
<rect height="15.0" ry="2" fill="rgb(245,81,52)" x="923.3202" rx="2" width="2.3599854" y="1155.0"/> | |
<text font-size="12" font-family="Verdana" y="1165.50" x="926.32"></text> | |
</g> | |
<g class="func_g" onmouseover="s('StatefulElement._firstBuild (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >StatefulElement._firstBuild (0.20%)</title> | |
<rect fill="rgb(241,163,34)" width="2.3599854" x="923.3202" height="15.0" rx="2" y="1139.0" ry="2"/> | |
<text x="926.32" font-size="12" font-family="Verdana" y="1149.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ComponentElement._firstBuild (0.20%)')" class="func_g" onclick="zoom(this)"><title >ComponentElement._firstBuild (0.20%)</title> | |
<rect rx="2" width="2.3599854" ry="2" fill="rgb(236,170,14)" height="15.0" x="923.3202" y="1123.0"/> | |
<text font-family="Verdana" font-size="12" y="1133.50" x="926.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.rebuild (0.20%)')" class="func_g"><title >Element.rebuild (0.20%)</title> | |
<rect fill="rgb(236,85,40)" ry="2" width="2.3599854" height="15.0" rx="2" y="1107.0" x="923.3202"/> | |
<text font-family="Verdana" font-size="12" x="926.32" y="1117.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('StatefulElement.performRebuild (0.20%)')" onclick="zoom(this)"><title >StatefulElement.performRebuild (0.20%)</title> | |
<rect x="923.3202" ry="2" height="15.0" width="2.3599854" fill="rgb(245,181,14)" rx="2" y="1091.0"/> | |
<text x="926.32" font-size="12" font-family="Verdana" y="1101.50"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.performRebuild (0.20%)</title> | |
<rect rx="2" x="923.3202" fill="rgb(244,97,6)" ry="2" height="15.0" y="1075.0" width="2.3599854"/> | |
<text x="926.32" font-size="12" y="1085.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.updateChild (0.20%)')" class="func_g" onmouseout="c()"><title >Element.updateChild (0.20%)</title> | |
<rect rx="2" y="1059.0" height="15.0" width="2.3599854" fill="rgb(231,37,3)" x="923.3202" ry="2"/> | |
<text x="926.32" y="1069.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.inflateWidget (0.20%)')"><title >Element.inflateWidget (0.20%)</title> | |
<rect y="1043.0" ry="2" x="923.3202" height="15.0" fill="rgb(209,136,47)" rx="2" width="2.3599854"/> | |
<text y="1053.50" font-size="12" font-family="Verdana" x="926.32"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.mount (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >ComponentElement.mount (0.20%)</title> | |
<rect ry="2" x="923.3202" width="2.3599854" height="15.0" rx="2" y="1027.0" fill="rgb(240,3,34)"/> | |
<text font-size="12" font-family="Verdana" x="926.32" y="1037.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('ComponentElement._firstBuild (0.20%)')" class="func_g"><title >ComponentElement._firstBuild (0.20%)</title> | |
<rect x="923.3202" fill="rgb(215,178,20)" height="15.0" y="1011.0" ry="2" rx="2" width="2.3599854"/> | |
<text y="1021.50" font-family="Verdana" font-size="12" x="926.32"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.rebuild (0.20%)</title> | |
<rect x="923.3202" ry="2" fill="rgb(218,18,25)" y="995.0" width="2.3599854" height="15.0" rx="2"/> | |
<text font-size="12" y="1005.50" x="926.32" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (0.20%)')" onclick="zoom(this)"><title >ComponentElement.performRebuild (0.20%)</title> | |
<rect x="923.3202" height="15.0" ry="2" rx="2" fill="rgb(255,206,30)" width="2.3599854" y="979.0"/> | |
<text font-size="12" font-family="Verdana" x="926.32" y="989.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (0.20%)')"><title >Element.updateChild (0.20%)</title> | |
<rect width="2.3599854" rx="2" ry="2" fill="rgb(231,21,16)" y="963.0" height="15.0" x="923.3202"/> | |
<text y="973.50" font-size="12" x="926.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Element.inflateWidget (0.20%)')" onclick="zoom(this)"><title >Element.inflateWidget (0.20%)</title> | |
<rect width="2.3599854" rx="2" y="947.0" height="15.0" ry="2" fill="rgb(222,172,17)" x="923.3202"/> | |
<text font-size="12" font-family="Verdana" x="926.32" y="957.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.mount (0.20%)')"><title >ComponentElement.mount (0.20%)</title> | |
<rect x="923.3202" fill="rgb(218,170,33)" height="15.0" y="931.0" rx="2" ry="2" width="2.3599854"/> | |
<text font-family="Verdana" x="926.32" y="941.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('StatefulElement._firstBuild (0.20%)')"><title >StatefulElement._firstBuild (0.20%)</title> | |
<rect y="915.0" width="2.3599854" x="923.3202" ry="2" rx="2" fill="rgb(212,109,33)" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="926.32" y="925.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ImageState.didChangeDependencies (0.10%)')"><title >ImageState.didChangeDependencies (0.10%)</title> | |
<rect width="1.1799927" height="15.0" x="923.3202" ry="2" y="899.0" fill="rgb(210,0,36)" rx="2"/> | |
<text x="926.32" y="909.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ImageState._resolveImage (0.10%)')" class="func_g" onclick="zoom(this)"><title >ImageState._resolveImage (0.10%)</title> | |
<rect width="1.1799927" rx="2" x="923.3202" ry="2" height="15.0" fill="rgb(217,221,11)" y="883.0"/> | |
<text y="893.50" font-family="Verdana" font-size="12" x="926.32"></text> | |
</g> | |
<g onmouseover="s('ImageProvider.resolve (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ImageProvider.resolve (0.10%)</title> | |
<rect y="867.0" x="923.3202" fill="rgb(205,56,27)" width="1.1799927" ry="2" height="15.0" rx="2"/> | |
<text x="926.32" font-size="12" font-family="Verdana" y="877.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ImageProvider._createErrorHandlerAndKey (0.10%)')" onmouseout="c()"><title >ImageProvider._createErrorHandlerAndKey (0.10%)</title> | |
<rect height="15.0" x="923.3202" fill="rgb(210,169,10)" rx="2" ry="2" y="851.0" width="1.1799927"/> | |
<text y="861.50" font-family="Verdana" font-size="12" x="926.32"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('SynchronousFuture.then (0.10%)')"><title >SynchronousFuture.then (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(254,95,14)" x="923.3202" ry="2" y="835.0" rx="2"/> | |
<text y="845.50" font-family="Verdana" x="926.32" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ImageProvider._createErrorHandlerAndKey.<anonymous closure> (0.10%)')" onclick="zoom(this)"><title >ImageProvider._createErrorHandlerAndKey.<anonymous closure> (0.10%)</title> | |
<rect ry="2" height="15.0" y="819.0" rx="2" fill="rgb(237,17,4)" x="923.3202" width="1.1799927"/> | |
<text font-size="12" x="926.32" y="829.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ImageProvider.resolve.<anonymous closure> (#2) (0.10%)')" onclick="zoom(this)"><title >ImageProvider.resolve.<anonymous closure> (#2) (0.10%)</title> | |
<rect x="923.3202" y="803.0" fill="rgb(212,79,44)" width="1.1799927" ry="2" rx="2" height="15.0"/> | |
<text font-size="12" y="813.50" font-family="Verdana" x="926.32"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ScrollAwareImageProvider.resolveStreamForKey (0.10%)')" onclick="zoom(this)"><title >ScrollAwareImageProvider.resolveStreamForKey (0.10%)</title> | |
<rect width="1.1799927" y="787.0" fill="rgb(205,51,18)" ry="2" height="15.0" rx="2" x="923.3202"/> | |
<text y="797.50" font-size="12" font-family="Verdana" x="926.32"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ImageProvider.resolveStreamForKey (0.10%)')" onclick="zoom(this)"><title >ImageProvider.resolveStreamForKey (0.10%)</title> | |
<rect rx="2" ry="2" y="771.0" x="923.3202" width="1.1799927" height="15.0" fill="rgb(249,41,42)"/> | |
<text font-size="12" y="781.50" font-family="Verdana" x="926.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ImageCache.putIfAbsent (0.10%)')" class="func_g" onmouseout="c()"><title >ImageCache.putIfAbsent (0.10%)</title> | |
<rect fill="rgb(247,44,50)" ry="2" height="15.0" x="923.3202" y="755.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" y="765.50" font-size="12" x="926.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('ComponentElement._firstBuild (0.10%)')" class="func_g"><title >ComponentElement._firstBuild (0.10%)</title> | |
<rect width="1.1799927" height="15.0" x="924.5002" ry="2" y="899.0" fill="rgb(253,211,44)" rx="2"/> | |
<text font-family="Verdana" x="927.50" font-size="12" y="909.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.rebuild (0.10%)')" onmouseout="c()"><title >Element.rebuild (0.10%)</title> | |
<rect width="1.1799927" rx="2" x="924.5002" ry="2" height="15.0" fill="rgb(253,204,47)" y="883.0"/> | |
<text x="927.50" y="893.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >StatefulElement.performRebuild (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(226,32,36)" x="924.5002" ry="2" y="867.0" rx="2"/> | |
<text font-size="12" x="927.50" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.performRebuild (0.10%)')" onclick="zoom(this)"><title >ComponentElement.performRebuild (0.10%)</title> | |
<rect ry="2" height="15.0" y="851.0" rx="2" fill="rgb(232,122,23)" x="924.5002" width="1.1799927"/> | |
<text y="861.50" font-family="Verdana" x="927.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('StatefulElement.build (3.10%)')"><title >StatefulElement.build (3.10%)</title> | |
<rect fill="rgb(242,105,13)" x="939.8402" y="1251.0" height="15.0" rx="2" ry="2" width="36.580017"/> | |
<text font-size="12" y="1261.50" font-family="Verdana" x="942.84">Sta..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('PairedWandererWidgetState.build (2.80%)')" onclick="zoom(this)"><title >PairedWandererWidgetState.build (2.80%)</title> | |
<rect x="939.8402" width="33.039978" height="15.0" ry="2" y="1235.0" rx="2" fill="rgb(230,185,55)"/> | |
<text font-size="12" x="942.84" y="1245.50" font-family="Verdana">Pa..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('new Image.asset (1.90%)')"><title >new Image.asset (1.90%)</title> | |
<rect ry="2" y="1219.0" fill="rgb(249,94,51)" height="15.0" rx="2" width="22.419983" x="939.8402"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="942.84">n..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectParameterizedStub (0.30%)')" onmouseout="c()"><title >stub _iso_stub_AllocateObjectParameterizedStub (0.30%)</title> | |
<rect rx="2" x="939.8402" y="1203.0" width="3.539978" fill="rgb(228,67,20)" height="15.0" ry="2"/> | |
<text x="942.84" font-family="Verdana" font-size="12" y="1213.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('stub _iso_stub_AllocateObjectStub (0.30%)')"><title >stub _iso_stub_AllocateObjectStub (0.30%)</title> | |
<rect ry="2" y="1219.0" fill="rgb(253,34,12)" height="15.0" rx="2" width="3.539978" x="962.2602"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="965.26"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('stub _iso_stub_AllocateObjectParameterizedStub (0.10%)')"><title >stub _iso_stub_AllocateObjectParameterizedStub (0.10%)</title> | |
<rect ry="2" y="1219.0" fill="rgb(227,194,44)" height="15.0" rx="2" width="1.1799927" x="965.80023"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="968.80"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('AnimatedState.build (0.10%)')" onclick="zoom(this)"><title >AnimatedState.build (0.10%)</title> | |
<rect x="972.8802" width="1.1799927" height="15.0" ry="2" y="1235.0" rx="2" fill="rgb(209,201,9)"/> | |
<text font-size="12" x="975.88" y="1245.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('MatrixTransition.build (0.10%)')"><title >MatrixTransition.build (0.10%)</title> | |
<rect rx="2" x="972.8802" y="1219.0" width="1.1799927" fill="rgb(241,17,14)" height="15.0" ry="2"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="975.88"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('CurvedAnimation.value (0.10%)')" class="func_g"><title >CurvedAnimation.value (0.10%)</title> | |
<rect height="15.0" fill="rgb(224,144,16)" rx="2" y="1203.0" width="1.1799927" ry="2" x="972.8802"/> | |
<text x="975.88" font-family="Verdana" font-size="12" y="1213.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('ListBase.sort (0.30%)')"><title >ListBase.sort (0.30%)</title> | |
<rect ry="2" fill="rgb(219,46,14)" rx="2" x="984.6802" width="3.539978" y="1315.0" height="15.0"/> | |
<text font-size="12" x="987.68" font-family="Verdana" y="1325.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Sort.sort (0.30%)')"><title >Sort.sort (0.30%)</title> | |
<rect rx="2" fill="rgb(216,32,21)" x="984.6802" ry="2" y="1299.0" width="3.539978" height="15.0"/> | |
<text y="1309.50" font-family="Verdana" font-size="12" x="987.68"></text> | |
</g> | |
<g onmouseover="s('Sort._doSort (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Sort._doSort (0.20%)</title> | |
<rect ry="2" x="984.6802" height="15.0" width="2.3599854" fill="rgb(253,208,29)" rx="2" y="1283.0"/> | |
<text font-size="12" y="1293.50" x="987.68" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Sort._dualPivotQuicksort (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Sort._dualPivotQuicksort (0.20%)</title> | |
<rect width="2.3599854" height="15.0" y="1267.0" rx="2" x="984.6802" fill="rgb(208,151,20)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="987.68" y="1277.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('List.iterator (0.10%)')"><title >List.iterator (0.10%)</title> | |
<rect ry="2" fill="rgb(248,1,46)" rx="2" x="988.2202" width="1.1799927" y="1315.0" height="15.0"/> | |
<text font-size="12" x="991.22" font-family="Verdana" y="1325.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('paintImage.<anonymous closure> (1.30%)')" onclick="zoom(this)"><title >paintImage.<anonymous closure> (1.30%)</title> | |
<rect fill="rgb(206,105,4)" rx="2" ry="2" x="992.94025" width="15.340027" y="1395.0" height="15.0"/> | |
<text x="995.94" font-size="12" font-family="Verdana" y="1405.50"></text> | |
</g> | |
<g onmouseover="s('Iterable.toSet (1.00%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Iterable.toSet (1.00%)</title> | |
<rect y="1379.0" ry="2" width="11.799988" x="992.94025" rx="2" height="15.0" fill="rgb(241,19,12)"/> | |
<text y="1389.50" font-family="Verdana" font-size="12" x="995.94"></text> | |
</g> | |
<g onmouseover="s('new LinkedHashSet.of (0.90%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >new LinkedHashSet.of (0.90%)</title> | |
<rect ry="2" fill="rgb(218,5,6)" rx="2" x="992.94025" width="10.619995" y="1363.0" height="15.0"/> | |
<text font-family="Verdana" x="995.94" font-size="12" y="1373.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Set.addAll (0.60%)')"><title >Set.addAll (0.60%)</title> | |
<rect rx="2" fill="rgb(209,219,54)" x="992.94025" ry="2" y="1347.0" width="7.080017" height="15.0"/> | |
<text y="1357.50" font-size="12" x="995.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('SetBase.addAll (0.50%)')"><title >SetBase.addAll (0.50%)</title> | |
<rect ry="2" x="992.94025" height="15.0" width="5.9000244" fill="rgb(220,70,46)" rx="2" y="1331.0"/> | |
<text font-size="12" y="1341.50" x="995.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('CompactIterable.iterator (0.30%)')" onmouseout="c()" class="func_g"><title >CompactIterable.iterator (0.30%)</title> | |
<rect fill="rgb(222,62,4)" x="992.94025" y="1315.0" height="15.0" rx="2" ry="2" width="3.539978"/> | |
<text y="1325.50" font-size="12" x="995.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('new _CompactIterator (0.10%)')"><title >new _CompactIterator (0.10%)</title> | |
<rect rx="2" x="992.94025" y="1299.0" width="1.1799927" fill="rgb(250,151,29)" height="15.0" ry="2"/> | |
<text x="995.94" y="1309.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('stub _iso_stub_AllocateObjectParameterizedStub (0.10%)')"><title >stub _iso_stub_AllocateObjectParameterizedStub (0.10%)</title> | |
<rect rx="2" x="994.12024" y="1299.0" width="1.1799927" fill="rgb(215,188,8)" height="15.0" ry="2"/> | |
<text x="997.12" y="1309.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('CompactIterator.moveNext (0.10%)')" onmouseout="c()" class="func_g"><title >CompactIterator.moveNext (0.10%)</title> | |
<rect fill="rgb(246,198,36)" x="996.4802" y="1315.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text y="1325.50" font-size="12" x="999.48" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub _iso_stub_AllocateObjectParameterizedStub (0.10%)')"><title >stub _iso_stub_AllocateObjectParameterizedStub (0.10%)</title> | |
<rect rx="2" fill="rgb(235,144,53)" x="1000.02026" ry="2" y="1347.0" width="1.1799927" height="15.0"/> | |
<text y="1357.50" font-size="12" x="1003.02" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ImageSizeInfo.toJson (#2) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ImageSizeInfo.toJson (#2) (0.10%)</title> | |
<rect y="1379.0" ry="2" width="1.1799927" x="1004.74023" rx="2" height="15.0" fill="rgb(222,139,18)"/> | |
<text y="1389.50" font-family="Verdana" font-size="12" x="1007.74"></text> | |
</g> | |
<g onmouseover="s('new Map._fromLiteral (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >new Map._fromLiteral (0.10%)</title> | |
<rect ry="2" fill="rgb(237,210,49)" rx="2" x="1004.74023" width="1.1799927" y="1363.0" height="15.0"/> | |
<text font-family="Verdana" x="1007.74" font-size="12" y="1373.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_LinkedHashMapMixin.[]= (0.10%)')"><title >_LinkedHashMapMixin.[]= (0.10%)</title> | |
<rect rx="2" fill="rgb(234,129,7)" x="1004.74023" ry="2" y="1347.0" width="1.1799927" height="15.0"/> | |
<text y="1357.50" font-size="12" x="1007.74" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('new List.of (0.20%)')" onclick="zoom(this)"><title >new List.of (0.20%)</title> | |
<rect fill="rgb(206,171,9)" rx="2" ry="2" x="1010.64026" width="2.3599854" y="1411.0" height="15.0"/> | |
<text x="1013.64" font-size="12" font-family="Verdana" y="1421.50"></text> | |
</g> | |
<g onmouseover="s('new _GrowableList.of (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >new _GrowableList.of (0.20%)</title> | |
<rect y="1395.0" ry="2" width="2.3599854" x="1010.64026" rx="2" height="15.0" fill="rgb(209,77,34)"/> | |
<text y="1405.50" font-family="Verdana" font-size="12" x="1013.64"></text> | |
</g> | |
<g onmouseover="s('new _GrowableList._ofGrowableList (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >new _GrowableList._ofGrowableList (0.20%)</title> | |
<rect rx="2" fill="rgb(247,163,46)" x="1010.64026" ry="2" y="1379.0" width="2.3599854" height="15.0"/> | |
<text font-family="Verdana" x="1013.64" font-size="12" y="1389.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('beginFrame (#2) (3.30%)')" onclick="zoom(this)"><title >beginFrame (#2) (3.30%)</title> | |
<rect ry="2" y="1523.0" x="1016.5402" width="38.940002" height="15.0" fill="rgb(220,25,28)" rx="2"/> | |
<text x="1019.54" font-size="12" font-family="Verdana" y="1533.50">beg..</text> | |
</g> | |
<g onmouseover="s('beginFrame (3.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >beginFrame (3.30%)</title> | |
<rect fill="rgb(240,97,39)" rx="2" ry="2" x="1016.5402" width="38.940002" y="1507.0" height="15.0"/> | |
<text y="1517.50" font-family="Verdana" font-size="12" x="1019.54">beg..</text> | |
</g> | |
<g onmouseover="s('PlatformDispatcher._beginFrame (3.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PlatformDispatcher._beginFrame (3.30%)</title> | |
<rect y="1491.0" ry="2" width="38.940002" x="1016.5402" rx="2" height="15.0" fill="rgb(235,5,15)"/> | |
<text font-family="Verdana" x="1019.54" font-size="12" y="1501.50">Pla..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('invoke1 (3.30%)')"><title >invoke1 (3.30%)</title> | |
<rect rx="2" fill="rgb(231,88,1)" x="1016.5402" ry="2" y="1475.0" width="38.940002" height="15.0"/> | |
<text y="1485.50" font-size="12" x="1019.54" font-family="Verdana">inv..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('SchedulerBinding._handleBeginFrame (3.30%)')"><title >SchedulerBinding._handleBeginFrame (3.30%)</title> | |
<rect fill="rgb(241,105,27)" x="1016.5402" y="1459.0" height="15.0" rx="2" ry="2" width="38.940002"/> | |
<text y="1469.50" font-family="Verdana" font-size="12" x="1019.54">Sch..</text> | |
</g> | |
<g onmouseover="s('SchedulerBinding._handleBeginFrame (#2) (3.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >SchedulerBinding._handleBeginFrame (#2) (3.30%)</title> | |
<rect rx="2" x="1016.5402" y="1443.0" width="38.940002" fill="rgb(221,226,47)" height="15.0" ry="2"/> | |
<text y="1453.50" font-size="12" x="1019.54" font-family="Verdana">Sch..</text> | |
</g> | |
<g onmouseover="s('SchedulerBinding.handleBeginFrame (3.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >SchedulerBinding.handleBeginFrame (3.30%)</title> | |
<rect width="38.940002" ry="2" x="1016.5402" fill="rgb(210,129,39)" y="1427.0" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1019.54" y="1437.50">Sch..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('LinkedHashMapMixin.forEach (#2) (3.20%)')"><title >LinkedHashMapMixin.forEach (#2) (3.20%)</title> | |
<rect height="15.0" x="1016.5402" width="37.76007" fill="rgb(227,179,47)" rx="2" ry="2" y="1411.0"/> | |
<text font-size="12" y="1421.50" font-family="Verdana" x="1019.54">Lin..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('SchedulerBinding.handleBeginFrame.<anonymous closure> (3.10%)')" onclick="zoom(this)"><title >SchedulerBinding.handleBeginFrame.<anonymous closure> (3.10%)</title> | |
<rect width="36.580017" fill="rgb(223,223,36)" rx="2" x="1016.5402" y="1395.0" height="15.0" ry="2"/> | |
<text font-size="12" x="1019.54" y="1405.50" font-family="Verdana">Sch..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('SchedulerBinding._invokeFrameCallback (3.00%)')" onclick="zoom(this)"><title >SchedulerBinding._invokeFrameCallback (3.00%)</title> | |
<rect fill="rgb(253,193,31)" width="35.399963" x="1016.5402" height="15.0" rx="2" y="1379.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1019.54" y="1389.50">Sc..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Ticker._tick (2.90%)')" class="func_g" onclick="zoom(this)"><title >Ticker._tick (2.90%)</title> | |
<rect rx="2" ry="2" x="1016.5402" width="34.22003" height="15.0" fill="rgb(250,82,24)" y="1363.0"/> | |
<text font-family="Verdana" font-size="12" x="1019.54" y="1373.50">Ti..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Ticker._tick (#2) (2.90%)')" onclick="zoom(this)"><title >Ticker._tick (#2) (2.90%)</title> | |
<rect x="1016.5402" ry="2" height="15.0" width="34.22003" fill="rgb(236,192,11)" rx="2" y="1347.0"/> | |
<text font-size="12" x="1019.54" font-family="Verdana" y="1357.50">Ti..</text> | |
</g> | |
<g class="func_g" onmouseover="s('PairedWandererWidgetState._onTick (#2) (1.70%)')" onmouseout="c()" onclick="zoom(this)"><title >PairedWandererWidgetState._onTick (#2) (1.70%)</title> | |
<rect y="1331.0" x="1016.5402" fill="rgb(230,114,4)" height="15.0" rx="2" width="20.059998" ry="2"/> | |
<text y="1341.50" x="1019.54" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('PairedWandererWidgetState._onTick (1.60%)')"><title >PairedWandererWidgetState._onTick (1.60%)</title> | |
<rect width="18.879944" rx="2" ry="2" height="15.0" fill="rgb(224,181,10)" x="1016.5402" y="1315.0"/> | |
<text x="1019.54" y="1325.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('PairedWanderer.update (1.10%)')" onclick="zoom(this)"><title >PairedWanderer.update (1.10%)</title> | |
<rect rx="2" y="1299.0" x="1016.5402" width="12.9800415" height="15.0" fill="rgb(219,163,20)" ry="2"/> | |
<text y="1309.50" x="1019.54" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Vector2.addScaled (1.00%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Vector2.addScaled (1.00%)</title> | |
<rect x="1016.5402" ry="2" fill="rgb(215,20,18)" y="1283.0" width="11.799988" height="15.0" rx="2"/> | |
<text font-size="12" x="1019.54" y="1293.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('State.setState (0.20%)')"><title >State.setState (0.20%)</title> | |
<rect rx="2" y="1299.0" x="1029.5203" width="2.3599854" height="15.0" fill="rgb(238,167,47)" ry="2"/> | |
<text x="1032.52" font-family="Verdana" font-size="12" y="1309.50"></text> | |
</g> | |
<g onmouseover="s('Element.markNeedsBuild (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.markNeedsBuild (0.20%)</title> | |
<rect x="1029.5203" ry="2" fill="rgb(245,187,22)" y="1283.0" width="2.3599854" height="15.0" rx="2"/> | |
<text x="1032.52" font-size="12" y="1293.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('BuildOwner.scheduleBuildFor (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >BuildOwner.scheduleBuildFor (0.20%)</title> | |
<rect width="2.3599854" rx="2" y="1267.0" height="15.0" ry="2" fill="rgb(242,85,45)" x="1029.5203"/> | |
<text font-size="12" font-family="Verdana" x="1032.52" y="1277.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('BuildScope._scheduleBuildFor (0.10%)')"><title >BuildScope._scheduleBuildFor (0.10%)</title> | |
<rect x="1029.5203" fill="rgb(232,79,37)" height="15.0" y="1251.0" rx="2" ry="2" width="1.1800537"/> | |
<text y="1261.50" font-family="Verdana" font-size="12" x="1032.52"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('List.add (0.10%)')" onmouseout="c()" class="func_g"><title >List.add (0.10%)</title> | |
<rect height="15.0" fill="rgb(217,28,28)" y="1235.0" ry="2" width="1.1800537" rx="2" x="1029.5203"/> | |
<text font-size="12" font-family="Verdana" x="1032.52" y="1245.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Ticker.scheduleTick (0.90%)')"><title >Ticker.scheduleTick (0.90%)</title> | |
<rect width="10.619995" rx="2" y="1331.0" height="15.0" ry="2" fill="rgb(250,71,8)" x="1036.6002"/> | |
<text x="1039.60" font-size="12" y="1341.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('SchedulerBinding.scheduleFrameCallback (0.70%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >SchedulerBinding.scheduleFrameCallback (0.70%)</title> | |
<rect width="8.26001" ry="2" y="1315.0" rx="2" height="15.0" x="1036.6002" fill="rgb(205,213,7)"/> | |
<text x="1039.60" font-size="12" y="1325.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_LinkedHashMapMixin.[]= (0.60%)')"><title >_LinkedHashMapMixin.[]= (0.60%)</title> | |
<rect height="15.0" fill="rgb(225,30,4)" y="1299.0" ry="2" width="7.079956" rx="2" x="1036.6002"/> | |
<text y="1309.50" x="1039.60" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('LinkedHashMapMixin._set (0.60%)')" onclick="zoom(this)" onmouseout="c()"><title >LinkedHashMapMixin._set (0.60%)</title> | |
<rect y="1283.0" ry="2" x="1036.6002" height="15.0" fill="rgb(205,141,2)" rx="2" width="7.079956"/> | |
<text font-size="12" font-family="Verdana" x="1039.60" y="1293.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('LinkedHashMapMixin._insert (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >LinkedHashMapMixin._insert (0.50%)</title> | |
<rect rx="2" ry="2" x="1036.6002" height="15.0" width="5.9000244" fill="rgb(241,183,11)" y="1267.0"/> | |
<text x="1039.60" y="1277.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('LinkedHashMapMixin._rehash (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >LinkedHashMapMixin._rehash (0.20%)</title> | |
<rect width="2.3599854" rx="2" x="1036.6002" ry="2" height="15.0" fill="rgb(231,93,13)" y="1251.0"/> | |
<text y="1261.50" font-size="12" x="1039.60" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('LinkedHashMapMixin._init (0.20%)')" class="func_g" onmouseout="c()"><title >LinkedHashMapMixin._init (0.20%)</title> | |
<rect height="15.0" ry="2" y="1235.0" fill="rgb(245,122,10)" x="1036.6002" rx="2" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" x="1039.60" y="1245.50"></text> | |
</g> | |
<g onmouseover="s('_LinkedHashMapMixin.[]= (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_LinkedHashMapMixin.[]= (0.10%)</title> | |
<rect rx="2" ry="2" y="1219.0" x="1036.6002" width="1.1800537" height="15.0" fill="rgb(208,144,52)"/> | |
<text x="1039.60" y="1229.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('LinkedHashMapMixin._set (0.10%)')" class="func_g"><title >LinkedHashMapMixin._set (0.10%)</title> | |
<rect fill="rgb(236,217,42)" ry="2" height="15.0" x="1036.6002" y="1203.0" width="1.1800537" rx="2"/> | |
<text x="1039.60" font-size="12" y="1213.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('LinkedHashMapMixin._insert (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >LinkedHashMapMixin._insert (0.10%)</title> | |
<rect width="1.1800537" y="1187.0" height="15.0" fill="rgb(230,206,1)" x="1036.6002" rx="2" ry="2"/> | |
<text x="1039.60" font-size="12" font-family="Verdana" y="1197.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Ticker.shouldScheduleTick (0.10%)')" onclick="zoom(this)"><title >Ticker.shouldScheduleTick (0.10%)</title> | |
<rect width="1.1800537" rx="2" y="1331.0" height="15.0" ry="2" fill="rgb(255,48,36)" x="1047.2202"/> | |
<text y="1341.50" font-size="12" font-family="Verdana" x="1050.22"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('tonic::DartMicrotaskQueue::RunMicrotasks() (0.60%)')" onclick="zoom(this)"><title >tonic::DartMicrotaskQueue::RunMicrotasks() (0.60%)</title> | |
<rect ry="2" y="1571.0" x="1057.8402" width="7.079956" height="15.0" fill="rgb(223,51,23)" rx="2"/> | |
<text x="1060.84" font-size="12" font-family="Verdana" y="1581.50"></text> | |
</g> | |
<g onmouseover="s('Dart_InvokeClosure (0.50%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Dart_InvokeClosure (0.50%)</title> | |
<rect y="1555.0" ry="2" width="5.9000244" x="1057.8402" rx="2" height="15.0" fill="rgb(216,140,10)"/> | |
<text y="1565.50" font-family="Verdana" font-size="12" x="1060.84"></text> | |
</g> | |
<g onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.50%)</title> | |
<rect fill="rgb(227,31,42)" rx="2" ry="2" x="1057.8402" width="5.9000244" y="1539.0" height="15.0"/> | |
<text font-family="Verdana" x="1060.84" font-size="12" y="1549.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('stub InvokeDartCode (0.50%)')" class="func_g" onmouseout="c()"><title >stub InvokeDartCode (0.50%)</title> | |
<rect rx="2" fill="rgb(255,183,38)" x="1057.8402" ry="2" y="1523.0" width="5.9000244" height="15.0"/> | |
<text y="1533.50" font-size="12" x="1060.84" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('startMicrotaskLoop (#2) (0.50%)')"><title >startMicrotaskLoop (#2) (0.50%)</title> | |
<rect fill="rgb(233,134,26)" x="1057.8402" y="1507.0" height="15.0" rx="2" ry="2" width="5.9000244"/> | |
<text y="1517.50" font-family="Verdana" font-size="12" x="1060.84"></text> | |
</g> | |
<g onmouseover="s('startMicrotaskLoop (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >startMicrotaskLoop (0.50%)</title> | |
<rect width="5.9000244" ry="2" x="1057.8402" fill="rgb(226,10,31)" y="1491.0" rx="2" height="15.0"/> | |
<text y="1501.50" font-size="12" x="1060.84" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('microtaskLoop (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >microtaskLoop (0.50%)</title> | |
<rect height="15.0" x="1057.8402" width="5.9000244" fill="rgb(246,35,19)" rx="2" ry="2" y="1475.0"/> | |
<text font-size="12" font-family="Verdana" x="1060.84" y="1485.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('SuspendState._awaitCompletedFuture.run (0.50%)')"><title >SuspendState._awaitCompletedFuture.run (0.50%)</title> | |
<rect width="5.9000244" fill="rgb(229,52,12)" rx="2" x="1057.8402" y="1459.0" height="15.0" ry="2"/> | |
<text font-size="12" y="1469.50" font-family="Verdana" x="1060.84"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RootZone.runUnary (0.50%)')" onclick="zoom(this)"><title >RootZone.runUnary (0.50%)</title> | |
<rect width="5.9000244" rx="2" y="1443.0" height="15.0" ry="2" fill="rgb(249,203,13)" x="1057.8402"/> | |
<text font-size="12" x="1060.84" y="1453.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('SuspendState._createAsyncCallbacks.thenCallback (0.50%)')"><title >SuspendState._createAsyncCallbacks.thenCallback (0.50%)</title> | |
<rect rx="2" x="1057.8402" y="1427.0" width="5.9000244" fill="rgb(234,2,39)" height="15.0" ry="2"/> | |
<text x="1060.84" font-size="12" y="1437.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('AudioPlayer.getCurrentPosition (#2) (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >AudioPlayer.getCurrentPosition (#2) (0.50%)</title> | |
<rect width="5.9000244" ry="2" y="1411.0" rx="2" height="15.0" x="1057.8402" fill="rgb(233,55,55)"/> | |
<text y="1421.50" x="1060.84" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('MethodChannelAudioplayersPlatform.getCurrentPosition (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >MethodChannelAudioplayersPlatform.getCurrentPosition (0.40%)</title> | |
<rect y="1395.0" rx="2" ry="2" height="15.0" fill="rgb(234,105,25)" width="4.7199707" x="1057.8402"/> | |
<text y="1405.50" x="1060.84" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('MethodChannelAudioplayersPlatform._compute (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >MethodChannelAudioplayersPlatform._compute (0.40%)</title> | |
<rect fill="rgb(216,228,1)" ry="2" width="4.7199707" height="15.0" rx="2" y="1379.0" x="1057.8402"/> | |
<text x="1060.84" y="1389.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('StandardMethodChannel.compute (0.40%)')" onmouseout="c()"><title >StandardMethodChannel.compute (0.40%)</title> | |
<rect fill="rgb(240,221,5)" height="15.0" ry="2" width="4.7199707" y="1363.0" x="1057.8402" rx="2"/> | |
<text font-family="Verdana" y="1373.50" font-size="12" x="1060.84"></text> | |
</g> | |
<g onmouseover="s('MethodChannel.invokeMethod (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >MethodChannel.invokeMethod (0.40%)</title> | |
<rect y="1347.0" ry="2" x="1057.8402" height="15.0" fill="rgb(223,170,40)" rx="2" width="4.7199707"/> | |
<text x="1060.84" font-family="Verdana" font-size="12" y="1357.50"></text> | |
</g> | |
<g onmouseover="s('MethodChannel._invokeMethod (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >MethodChannel._invokeMethod (0.40%)</title> | |
<rect rx="2" ry="2" x="1057.8402" height="15.0" width="4.7199707" fill="rgb(215,141,8)" y="1331.0"/> | |
<text y="1341.50" font-family="Verdana" x="1060.84" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('DefaultBinaryMessenger.send (0.30%)')"><title >DefaultBinaryMessenger.send (0.30%)</title> | |
<rect fill="rgb(226,151,30)" ry="2" height="15.0" x="1057.8402" y="1315.0" width="3.540039" rx="2"/> | |
<text font-family="Verdana" x="1060.84" y="1325.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PlatformDispatcher.sendPlatformMessage (0.30%)')" onmouseout="c()"><title >PlatformDispatcher.sendPlatformMessage (0.30%)</title> | |
<rect x="1057.8402" width="3.540039" height="15.0" y="1299.0" ry="2" fill="rgb(241,204,5)" rx="2"/> | |
<text y="1309.50" font-family="Verdana" font-size="12" x="1060.84"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PlatformDispatcher._sendPlatformMessage (0.30%)')"><title >PlatformDispatcher._sendPlatformMessage (0.30%)</title> | |
<rect ry="2" x="1057.8402" y="1283.0" width="3.540039" height="15.0" fill="rgb(250,36,1)" rx="2"/> | |
<text font-family="Verdana" y="1293.50" x="1060.84" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('PlatformDispatcher.__sendPlatformMessage (0.30%)')" onclick="zoom(this)"><title >PlatformDispatcher.__sendPlatformMessage (0.30%)</title> | |
<rect ry="2" fill="rgb(247,226,9)" y="1267.0" height="15.0" rx="2" x="1057.8402" width="3.540039"/> | |
<text font-size="12" y="1277.50" x="1060.84" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PlatformDispatcher.___sendPlatformMessage$Method$FfiNative (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >PlatformDispatcher.___sendPlatformMessage$Method$FfiNative (0.20%)</title> | |
<rect height="15.0" ry="2" width="2.3599854" rx="2" fill="rgb(252,127,10)" x="1057.8402" y="1251.0"/> | |
<text font-family="Verdana" x="1060.84" font-size="12" y="1261.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('stub CallNativeThroughSafepoint (0.20%)')"><title >stub CallNativeThroughSafepoint (0.20%)</title> | |
<rect rx="2" y="1235.0" x="1057.8402" height="15.0" fill="rgb(255,49,21)" width="2.3599854" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1060.84" y="1245.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('tonic::FfiDispatcher<void, _Dart_Handle* (*)(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, _Dart_Handle*, _Dart_Handle*), &flutter::PlatformConfigurationNativeApi::SendPlatformMessage(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, _Dart_Handle*, _Dart_Handle*)>::Call(_Dart_Handle*, _Dart_Handle*, _Dart_Handle*) (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >tonic::FfiDispatcher<void, _Dart_Handle* (*)(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, _Dart_Handle*, _Dart_Handle*), &flutter::PlatformConfigurationNativeApi::SendPlatformMessage(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, _Dart_Handle*, _Dart_Handle*)>::Call(_Dart_Handle*, _Dart_Handle*, _Dart_Handle*) (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(252,40,33)" rx="2" y="1219.0" height="15.0" x="1057.8402" ry="2"/> | |
<text font-family="Verdana" y="1229.50" x="1060.84" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::(anonymous namespace)::HandlePlatformMessage(flutter::UIDartState*, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, _Dart_Handle*, fml::RefPtr<flutter::PlatformMessageResponse> const&) (0.20%)')" onmouseout="c()"><title >flutter::(anonymous namespace)::HandlePlatformMessage(flutter::UIDartState*, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, _Dart_Handle*, fml::RefPtr<flutter::PlatformMessageResponse> const&) (0.20%)</title> | |
<rect x="1057.8402" y="1203.0" width="2.3599854" rx="2" height="15.0" fill="rgb(236,82,15)" ry="2"/> | |
<text y="1213.50" font-size="12" x="1060.84" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::UIDartState::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)')"><title >flutter::UIDartState::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)</title> | |
<rect x="1057.8402" y="1187.0" height="15.0" rx="2" ry="2" fill="rgb(254,214,32)" width="1.1800537"/> | |
<text font-size="12" x="1060.84" y="1197.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::RuntimeController::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)')"><title >flutter::RuntimeController::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)</title> | |
<rect rx="2" y="1171.0" height="15.0" x="1057.8402" width="1.1800537" fill="rgb(224,96,6)" ry="2"/> | |
<text y="1181.50" font-size="12" x="1060.84" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::Engine::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)')"><title >flutter::Engine::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)</title> | |
<rect ry="2" rx="2" x="1057.8402" height="15.0" y="1155.0" fill="rgb(211,228,16)" width="1.1800537"/> | |
<text font-size="12" x="1060.84" y="1165.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::Shell::OnEngineHandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)')"><title >flutter::Shell::OnEngineHandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)</title> | |
<rect y="1139.0" x="1057.8402" fill="rgb(209,120,46)" ry="2" height="15.0" width="1.1800537" rx="2"/> | |
<text y="1149.50" x="1060.84" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.10%)</title> | |
<rect ry="2" y="1123.0" height="15.0" x="1057.8402" rx="2" width="1.1800537" fill="rgb(254,129,52)"/> | |
<text y="1133.50" x="1060.84" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__function::__func<flutter::Animator::RequestFrame(bool)::$_0, std::_fl::allocator<flutter::Animator::RequestFrame(bool)::$_0>, void ()>::operator()() (4.80%)')" onclick="zoom(this)"><title >std::_fl::__function::__func<flutter::Animator::RequestFrame(bool)::$_0, std::_fl::allocator<flutter::Animator::RequestFrame(bool)::$_0>, void ()>::operator()() (4.80%)</title> | |
<rect ry="2" y="1619.0" x="1068.4601" width="56.640015" height="15.0" fill="rgb(254,179,15)" rx="2"/> | |
<text x="1071.46" font-size="12" font-family="Verdana" y="1629.50">std::_..</text> | |
</g> | |
<g onmouseover="s('flutter::Shell::OnAnimatorNotifyIdle(fml::TimeDelta) (4.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::Shell::OnAnimatorNotifyIdle(fml::TimeDelta) (4.60%)</title> | |
<rect y="1603.0" ry="2" width="54.28003" x="1068.4601" rx="2" height="15.0" fill="rgb(205,213,48)"/> | |
<text y="1613.50" font-family="Verdana" font-size="12" x="1071.46">flutt..</text> | |
</g> | |
<g onmouseover="s('flutter::RuntimeController::NotifyIdle(fml::TimeDelta) (4.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::RuntimeController::NotifyIdle(fml::TimeDelta) (4.60%)</title> | |
<rect fill="rgb(241,118,15)" rx="2" ry="2" x="1068.4601" width="54.28003" y="1587.0" height="15.0"/> | |
<text font-family="Verdana" x="1071.46" font-size="12" y="1597.50">flutt..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::Heap::NotifyIdle(long long) (4.60%)')" class="func_g" onmouseout="c()"><title >dart::Heap::NotifyIdle(long long) (4.60%)</title> | |
<rect rx="2" fill="rgb(209,175,47)" x="1068.4601" ry="2" y="1571.0" width="54.28003" height="15.0"/> | |
<text y="1581.50" font-size="12" x="1071.46" font-family="Verdana">dart:..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (4.50%)')"><title >dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (4.50%)</title> | |
<rect fill="rgb(205,52,52)" x="1068.4601" y="1555.0" height="15.0" rx="2" ry="2" width="53.099976"/> | |
<text x="1071.46" font-size="12" y="1565.50" font-family="Verdana">dart:..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (4.50%)')"><title >dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (4.50%)</title> | |
<rect width="53.099976" ry="2" x="1068.4601" fill="rgb(249,204,18)" y="1539.0" rx="2" height="15.0"/> | |
<text font-size="12" y="1549.50" x="1071.46" font-family="Verdana">dart:..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::ParallelScavengerTask::RunMain() (4.40%)')" onmouseout="c()" class="func_g"><title >dart::ParallelScavengerTask::RunMain() (4.40%)</title> | |
<rect height="15.0" x="1068.4601" width="51.920044" fill="rgb(209,227,29)" rx="2" ry="2" y="1523.0"/> | |
<text y="1533.50" font-size="12" x="1071.46" font-family="Verdana">dart:..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('dart::ParallelScavengerTask::RunEnteredIsolateGroup() (4.40%)')"><title >dart::ParallelScavengerTask::RunEnteredIsolateGroup() (4.40%)</title> | |
<rect width="51.920044" fill="rgb(227,93,23)" rx="2" x="1068.4601" y="1507.0" height="15.0" ry="2"/> | |
<text x="1071.46" y="1517.50" font-size="12" font-family="Verdana">dart:..</text> | |
</g> | |
<g onmouseover="s('dart::ScavengerVisitorBase<true>::ProcessRoots() (2.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dart::ScavengerVisitorBase<true>::ProcessRoots() (2.30%)</title> | |
<rect width="27.140015" rx="2" y="1491.0" height="15.0" ry="2" fill="rgb(253,194,53)" x="1068.4601"/> | |
<text font-family="Verdana" y="1501.50" x="1071.46" font-size="12">d..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (1.60%)')" onclick="zoom(this)"><title >dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (1.60%)</title> | |
<rect rx="2" x="1068.4601" y="1475.0" width="18.880005" fill="rgb(233,175,11)" height="15.0" ry="2"/> | |
<text font-size="12" x="1071.46" y="1485.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dart::IsolateGroup::VisitObjectPointers(dart::ObjectPointerVisitor*, dart::ValidationPolicy) (0.20%)')" onclick="zoom(this)"><title >dart::IsolateGroup::VisitObjectPointers(dart::ObjectPointerVisitor*, dart::ValidationPolicy) (0.20%)</title> | |
<rect rx="2" x="1087.3401" y="1475.0" width="2.3599854" fill="rgb(251,121,27)" height="15.0" ry="2"/> | |
<text font-size="12" x="1090.34" y="1485.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dart::IsolateGroup::VisitSharedPointers(dart::ObjectPointerVisitor*) (0.20%)')"><title >dart::IsolateGroup::VisitSharedPointers(dart::ObjectPointerVisitor*) (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="1459.0" rx="2" height="15.0" x="1087.3401" fill="rgb(224,44,40)"/> | |
<text y="1469.50" x="1090.34" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.20%)</title> | |
<rect fill="rgb(223,153,28)" ry="2" width="2.3599854" height="15.0" rx="2" y="1443.0" x="1087.3401"/> | |
<text x="1090.34" font-family="Verdana" font-size="12" y="1453.50"></text> | |
</g> | |
<g onmouseover="s('dart::ScavengerVisitorBase<true>::ProcessSurvivors() (1.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dart::ScavengerVisitorBase<true>::ProcessSurvivors() (1.40%)</title> | |
<rect width="16.52002" rx="2" y="1491.0" height="15.0" ry="2" fill="rgb(247,102,27)" x="1095.6001"/> | |
<text font-family="Verdana" y="1501.50" x="1098.60" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.70%)')" onclick="zoom(this)"><title >dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.70%)</title> | |
<rect rx="2" x="1095.6001" y="1475.0" width="8.26001" fill="rgb(229,136,44)" height="15.0" ry="2"/> | |
<text font-size="12" x="1098.60" y="1485.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dart::UntaggedObject::VisitPointersPredefined(dart::ObjectPointerVisitor*, long) (0.20%)')" onclick="zoom(this)"><title >dart::UntaggedObject::VisitPointersPredefined(dart::ObjectPointerVisitor*, long) (0.20%)</title> | |
<rect rx="2" x="1103.8601" y="1475.0" width="2.3599854" fill="rgb(214,105,4)" height="15.0" ry="2"/> | |
<text font-size="12" x="1106.86" y="1485.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.20%)')"><title >dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="1459.0" rx="2" height="15.0" x="1103.8601" fill="rgb(215,23,36)"/> | |
<text y="1469.50" x="1106.86" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.60%)</title> | |
<rect width="7.079956" rx="2" y="1491.0" height="15.0" ry="2" fill="rgb(215,81,52)" x="1112.1201"/> | |
<text font-family="Verdana" y="1501.50" x="1115.12" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::VsyncWaiterIOS::AwaitVSync() (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::VsyncWaiterIOS::AwaitVSync() (0.10%)</title> | |
<rect y="1603.0" ry="2" width="1.1800537" x="1122.7401" rx="2" height="15.0" fill="rgb(214,171,27)"/> | |
<text y="1613.50" font-family="Verdana" font-size="12" x="1125.74"></text> | |
</g> | |
<g onmouseover="s('+[DisplayLinkManager displayRefreshRate] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >+[DisplayLinkManager displayRefreshRate] (0.10%)</title> | |
<rect fill="rgb(223,51,7)" rx="2" ry="2" x="1122.7401" width="1.1800537" y="1587.0" height="15.0"/> | |
<text font-family="Verdana" x="1125.74" font-size="12" y="1597.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<void flutter::(anonymous namespace)::PostCompletion<tonic::DartPersistentValue, fml::RefPtr<fml::TaskRunner>, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0>(tonic::DartPersistentValue&&, fml::RefPtr<fml::TaskRunner> const&, bool*, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0&&)::'lambda'()>, std::_fl::allocator<fml::internal::CopyableLambda<void flutter::(anonymous namespace)::PostCompletion<tonic::DartPersistentValue, fml::RefPtr<fml::TaskRunner>, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0>(tonic::DartPersistentValue&&, fml::RefPtr<fml::TaskRunner> const&, bool*, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0&&)::'lambda'()>>, void ()>::operator()() (0.10%)')" onclick="zoom(this)"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<void flutter::(anonymous namespace)::PostCompletion<tonic::DartPersistentValue, fml::RefPtr<fml::TaskRunner>, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0>(tonic::DartPersistentValue&&, fml::RefPtr<fml::TaskRunner> const&, bool*, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0&&)::'lambda'()>, std::_fl::allocator<fml::internal::CopyableLambda<void flutter::(anonymous namespace)::PostCompletion<tonic::DartPersistentValue, fml::RefPtr<fml::TaskRunner>, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0>(tonic::DartPersistentValue&&, fml::RefPtr<fml::TaskRunner> const&, bool*, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, flutter::PlatformMessageResponseDart::Complete(std::_fl::unique_ptr<fml::Mapping, std::_fl::default_delete<fml::Mapping>>)::$_0&&)::'lambda'()>>, void ()>::operator()() (0.10%)</title> | |
<rect ry="2" y="1619.0" x="1125.1001" width="1.1800537" height="15.0" fill="rgb(242,66,11)" rx="2"/> | |
<text x="1128.10" font-size="12" font-family="Verdana" y="1629.50"></text> | |
</g> | |
<g onmouseover="s('Dart_InvokeClosure (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Dart_InvokeClosure (0.10%)</title> | |
<rect y="1603.0" ry="2" width="1.1800537" x="1125.1001" rx="2" height="15.0" fill="rgb(254,16,38)"/> | |
<text y="1613.50" font-family="Verdana" font-size="12" x="1128.10"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('CFRunLoopTimerSetNextFireDate (0.10%)')" onclick="zoom(this)"><title >CFRunLoopTimerSetNextFireDate (0.10%)</title> | |
<rect ry="2" y="1619.0" x="1126.2802" width="1.1800537" height="15.0" fill="rgb(246,125,43)" rx="2"/> | |
<text x="1129.28" font-size="12" font-family="Verdana" y="1629.50"></text> | |
</g> | |
<g onmouseover="s('__CFRunLoopCopyMode (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__CFRunLoopCopyMode (0.10%)</title> | |
<rect y="1603.0" ry="2" width="1.1800537" x="1126.2802" rx="2" height="15.0" fill="rgb(233,37,33)"/> | |
<text y="1613.50" font-family="Verdana" font-size="12" x="1129.28"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('tonic::DartMicrotaskQueue::RunMicrotasks() (0.20%)')" onclick="zoom(this)"><title >tonic::DartMicrotaskQueue::RunMicrotasks() (0.20%)</title> | |
<rect ry="2" y="1619.0" x="1127.4602" width="2.3599854" height="15.0" fill="rgb(209,4,32)" rx="2"/> | |
<text x="1130.46" font-size="12" font-family="Verdana" y="1629.50"></text> | |
</g> | |
<g onmouseover="s('Dart_InvokeClosure (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Dart_InvokeClosure (0.20%)</title> | |
<rect y="1603.0" ry="2" width="2.3599854" x="1127.4602" rx="2" height="15.0" fill="rgb(212,52,35)"/> | |
<text y="1613.50" font-family="Verdana" font-size="12" x="1130.46"></text> | |
</g> | |
<g onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.20%)</title> | |
<rect fill="rgb(216,179,53)" rx="2" ry="2" x="1127.4602" width="2.3599854" y="1587.0" height="15.0"/> | |
<text font-family="Verdana" x="1130.46" font-size="12" y="1597.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('stub InvokeDartCode (0.10%)')" class="func_g" onmouseout="c()"><title >stub InvokeDartCode (0.10%)</title> | |
<rect fill="rgb(255,14,42)" x="1127.4602" y="1571.0" height="15.0" rx="2" ry="2" width="1.1800537"/> | |
<text y="1581.50" font-size="12" x="1130.46" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('startMicrotaskLoop (#2) (0.10%)')"><title >startMicrotaskLoop (#2) (0.10%)</title> | |
<rect height="15.0" x="1127.4602" width="1.1800537" fill="rgb(236,109,20)" rx="2" ry="2" y="1555.0"/> | |
<text x="1130.46" font-size="12" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('startMicrotaskLoop (0.10%)')"><title >startMicrotaskLoop (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(220,105,39)" rx="2" x="1127.4602" y="1539.0" height="15.0" ry="2"/> | |
<text font-size="12" y="1549.50" x="1130.46" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('microtaskLoop (0.10%)')" onmouseout="c()" class="func_g"><title >microtaskLoop (0.10%)</title> | |
<rect width="1.1800537" rx="2" y="1523.0" height="15.0" ry="2" fill="rgb(242,161,2)" x="1127.4602"/> | |
<text y="1533.50" font-size="12" x="1130.46" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Future._asyncCompleteWithValue.<anonymous closure> (0.10%)')"><title >Future._asyncCompleteWithValue.<anonymous closure> (0.10%)</title> | |
<rect fill="rgb(220,143,38)" x="1127.4602" width="1.1800537" y="1507.0" height="15.0" ry="2" rx="2"/> | |
<text x="1130.46" y="1517.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Future._completeWithValue (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Future._completeWithValue (0.10%)</title> | |
<rect rx="2" x="1127.4602" y="1491.0" width="1.1800537" fill="rgb(233,14,19)" height="15.0" ry="2"/> | |
<text font-family="Verdana" y="1501.50" x="1130.46" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Future._propagateToListeners (0.10%)')" onclick="zoom(this)"><title >Future._propagateToListeners (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="1475.0" rx="2" height="15.0" x="1127.4602" fill="rgb(250,185,6)"/> | |
<text font-size="12" x="1130.46" y="1485.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Future._propagateToListeners.handleValueCallback (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Future._propagateToListeners.handleValueCallback (0.10%)</title> | |
<rect fill="rgb(235,127,54)" ry="2" width="1.1800537" height="15.0" rx="2" y="1459.0" x="1127.4602"/> | |
<text font-size="12" font-family="Verdana" x="1130.46" y="1469.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('FutureListener.handleValue (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >FutureListener.handleValue (0.10%)</title> | |
<rect ry="2" y="1443.0" height="15.0" x="1127.4602" rx="2" width="1.1800537" fill="rgb(206,37,14)"/> | |
<text font-family="Verdana" x="1130.46" y="1453.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RootZone.runUnary (0.10%)')"><title >RootZone.runUnary (0.10%)</title> | |
<rect y="1427.0" width="1.1800537" fill="rgb(212,80,26)" rx="2" ry="2" x="1127.4602" height="15.0"/> | |
<text font-family="Verdana" x="1130.46" y="1437.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('SuspendState._createAsyncCallbacks.thenCallback (0.10%)')" onmouseout="c()"><title >SuspendState._createAsyncCallbacks.thenCallback (0.10%)</title> | |
<rect x="1127.4602" rx="2" y="1411.0" height="15.0" width="1.1800537" fill="rgb(222,178,44)" ry="2"/> | |
<text x="1130.46" y="1421.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('stub _iso_stub_ReturnAsyncStub (0.10%)')"><title >stub _iso_stub_ReturnAsyncStub (0.10%)</title> | |
<rect ry="2" y="1395.0" x="1127.4602" width="1.1800537" height="15.0" fill="rgb(232,111,54)" rx="2"/> | |
<text font-family="Verdana" x="1130.46" y="1405.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SuspendState._returnAsync (0.10%)')" class="func_g" onclick="zoom(this)"><title >SuspendState._returnAsync (0.10%)</title> | |
<rect fill="rgb(251,185,9)" rx="2" ry="2" width="1.1800537" height="15.0" x="1127.4602" y="1379.0"/> | |
<text font-family="Verdana" y="1389.50" font-size="12" x="1130.46"></text> | |
</g> | |
<g onmouseover="s('Future._completeWithValue (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Future._completeWithValue (0.10%)</title> | |
<rect x="1127.4602" width="1.1800537" y="1363.0" height="15.0" ry="2" rx="2" fill="rgb(226,217,5)"/> | |
<text font-family="Verdana" y="1373.50" x="1130.46" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Future._propagateToListeners (0.10%)')"><title >Future._propagateToListeners (0.10%)</title> | |
<rect height="15.0" ry="2" y="1347.0" width="1.1800537" fill="rgb(250,86,18)" rx="2" x="1127.4602"/> | |
<text x="1130.46" y="1357.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__function::__func<flutter::DartIsolate::SetMessageHandlingTaskRunner(fml::RefPtr<fml::TaskRunner> const&, bool)::$_1::operator()(std::_fl::function<void ()>) const::'lambda'(), std::_fl::allocator<flutter::DartIsolate::SetMessageHandlingTaskRunner(fml::RefPtr<fml::TaskRunner> const&, bool)::$_1::operator()(std::_fl::function<void ()>) const::'lambda'()>, void ()>::operator()() (0.20%)')" onclick="zoom(this)"><title >std::_fl::__function::__func<flutter::DartIsolate::SetMessageHandlingTaskRunner(fml::RefPtr<fml::TaskRunner> const&, bool)::$_1::operator()(std::_fl::function<void ()>) const::'lambda'(), std::_fl::allocator<flutter::DartIsolate::SetMessageHandlingTaskRunner(fml::RefPtr<fml::TaskRunner> const&, bool)::$_1::operator()(std::_fl::function<void ()>) const::'lambda'()>, void ()>::operator()() (0.20%)</title> | |
<rect ry="2" y="1619.0" x="1129.8202" width="2.3599854" height="15.0" fill="rgb(229,177,31)" rx="2"/> | |
<text x="1132.82" font-size="12" font-family="Verdana" y="1629.50"></text> | |
</g> | |
<g onmouseover="s('std::_fl::__function::__func<tonic::DartMessageHandler::OnMessage(tonic::DartState*)::$_0, std::_fl::allocator<tonic::DartMessageHandler::OnMessage(tonic::DartState*)::$_0>, void ()>::operator()() (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >std::_fl::__function::__func<tonic::DartMessageHandler::OnMessage(tonic::DartState*)::$_0, std::_fl::allocator<tonic::DartMessageHandler::OnMessage(tonic::DartState*)::$_0>, void ()>::operator()() (0.20%)</title> | |
<rect fill="rgb(252,109,13)" x="1129.8202" y="1603.0" height="15.0" rx="2" ry="2" width="2.3599854"/> | |
<text y="1613.50" font-family="Verdana" font-size="12" x="1132.82"></text> | |
</g> | |
<g onmouseover="s('Dart_HandleMessage (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Dart_HandleMessage (0.20%)</title> | |
<rect height="15.0" x="1129.8202" width="2.3599854" fill="rgb(220,12,52)" rx="2" ry="2" y="1587.0"/> | |
<text font-family="Verdana" x="1132.82" font-size="12" y="1597.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool) (0.20%)')" class="func_g" onmouseout="c()"><title >dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool) (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(248,27,16)" rx="2" x="1129.8202" y="1571.0" height="15.0" ry="2"/> | |
<text y="1581.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::IsolateMessageHandler::HandleMessage(std::_fl::unique_ptr<dart::Message, std::_fl::default_delete<dart::Message>>) (0.20%)')"><title >dart::IsolateMessageHandler::HandleMessage(std::_fl::unique_ptr<dart::Message, std::_fl::default_delete<dart::Message>>) (0.20%)</title> | |
<rect fill="rgb(229,96,13)" x="1129.8202" width="2.3599854" y="1555.0" height="15.0" ry="2" rx="2"/> | |
<text y="1565.50" font-family="Verdana" font-size="12" x="1132.82"></text> | |
</g> | |
<g onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.10%)</title> | |
<rect rx="2" x="1129.8202" y="1539.0" width="1.1800537" fill="rgb(246,78,5)" height="15.0" ry="2"/> | |
<text y="1549.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('stub InvokeDartCode (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub InvokeDartCode (0.10%)</title> | |
<rect fill="rgb(210,189,50)" ry="2" width="1.1800537" height="15.0" rx="2" y="1523.0" x="1129.8202"/> | |
<text font-size="12" font-family="Verdana" x="1132.82" y="1533.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RawReceivePort._handleMessage (0.10%)')"><title >RawReceivePort._handleMessage (0.10%)</title> | |
<rect width="1.1800537" ry="2" height="15.0" y="1507.0" x="1129.8202" rx="2" fill="rgb(247,51,3)"/> | |
<text font-size="12" y="1517.50" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Closure.call (#2) (0.10%)')" onclick="zoom(this)"><title >Closure.call (#2) (0.10%)</title> | |
<rect ry="2" x="1129.8202" rx="2" fill="rgb(214,229,7)" y="1491.0" width="1.1800537" height="15.0"/> | |
<text font-size="12" x="1132.82" y="1501.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Timer._handleMessage (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Timer._handleMessage (0.10%)</title> | |
<rect x="1129.8202" ry="2" y="1475.0" rx="2" fill="rgb(207,96,15)" height="15.0" width="1.1800537"/> | |
<text x="1132.82" font-size="12" y="1485.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Timer._handleMessage (#2) (0.10%)')"><title >Timer._handleMessage (#2) (0.10%)</title> | |
<rect ry="2" y="1459.0" height="15.0" x="1129.8202" rx="2" width="1.1800537" fill="rgb(246,163,42)"/> | |
<text x="1132.82" font-family="Verdana" font-size="12" y="1469.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Timer._runTimers (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >Timer._runTimers (0.10%)</title> | |
<rect x="1129.8202" y="1443.0" height="15.0" fill="rgb(242,203,11)" ry="2" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" x="1132.82" y="1453.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Timer._createTimer.<anonymous closure> (0.10%)')" onclick="zoom(this)"><title >Timer._createTimer.<anonymous closure> (0.10%)</title> | |
<rect y="1427.0" rx="2" fill="rgb(210,94,18)" width="1.1800537" ry="2" height="15.0" x="1129.8202"/> | |
<text font-family="Verdana" y="1437.50" x="1132.82" font-size="12"></text> | |
</g> | |
<g onmouseover="s('PlatformDispatcher.scheduleWarmUpFrame.<anonymous closure> (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PlatformDispatcher.scheduleWarmUpFrame.<anonymous closure> (0.10%)</title> | |
<rect x="1129.8202" y="1411.0" width="1.1800537" ry="2" height="15.0" fill="rgb(215,50,4)" rx="2"/> | |
<text font-family="Verdana" x="1132.82" y="1421.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('SchedulerBinding.scheduleWarmUpFrame.<anonymous closure> (#2) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >SchedulerBinding.scheduleWarmUpFrame.<anonymous closure> (#2) (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="1395.0" rx="2" height="15.0" x="1129.8202" fill="rgb(246,53,28)"/> | |
<text x="1132.82" y="1405.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('SchedulerBinding.handleDrawFrame (0.10%)')"><title >SchedulerBinding.handleDrawFrame (0.10%)</title> | |
<rect x="1129.8202" width="1.1800537" y="1379.0" rx="2" fill="rgb(218,17,48)" height="15.0" ry="2"/> | |
<text y="1389.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('SchedulerBinding._invokeFrameCallback (0.10%)')" class="func_g"><title >SchedulerBinding._invokeFrameCallback (0.10%)</title> | |
<rect x="1129.8202" rx="2" ry="2" height="15.0" fill="rgb(231,99,13)" y="1363.0" width="1.1800537"/> | |
<text y="1373.50" x="1132.82" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RendererBinding._handlePersistentFrameCallback (#2) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RendererBinding._handlePersistentFrameCallback (#2) (0.10%)</title> | |
<rect x="1129.8202" rx="2" y="1347.0" height="15.0" ry="2" fill="rgb(210,64,33)" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" x="1132.82" y="1357.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RendererBinding._handlePersistentFrameCallback (0.10%)')" onmouseout="c()"><title >RendererBinding._handlePersistentFrameCallback (0.10%)</title> | |
<rect rx="2" y="1331.0" x="1129.8202" fill="rgb(253,60,23)" height="15.0" width="1.1800537" ry="2"/> | |
<text x="1132.82" y="1341.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('WidgetsBinding.drawFrame (0.10%)')" class="func_g" onmouseout="c()"><title >WidgetsBinding.drawFrame (0.10%)</title> | |
<rect x="1129.8202" ry="2" width="1.1800537" y="1315.0" fill="rgb(252,120,19)" height="15.0" rx="2"/> | |
<text y="1325.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RendererBinding.drawFrame (0.10%)')"><title >RendererBinding.drawFrame (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="1299.0" height="15.0" fill="rgb(217,171,16)" x="1129.8202" rx="2"/> | |
<text y="1309.50" font-family="Verdana" x="1132.82" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('PipelineOwner.flushLayout (0.10%)')" class="func_g"><title >PipelineOwner.flushLayout (0.10%)</title> | |
<rect x="1129.8202" width="1.1800537" y="1283.0" height="15.0" rx="2" fill="rgb(242,56,48)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1132.82" y="1293.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('PipelineOwner.flushLayout (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >PipelineOwner.flushLayout (0.10%)</title> | |
<rect width="1.1800537" x="1129.8202" y="1267.0" fill="rgb(245,70,9)" height="15.0" rx="2" ry="2"/> | |
<text y="1277.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject._layoutWithoutResize (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject._layoutWithoutResize (0.10%)</title> | |
<rect x="1129.8202" rx="2" fill="rgb(214,193,18)" y="1251.0" height="15.0" width="1.1800537" ry="2"/> | |
<text font-family="Verdana" x="1132.82" y="1261.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderView.performLayout (0.10%)')"><title >RenderView.performLayout (0.10%)</title> | |
<rect y="1235.0" width="1.1800537" height="15.0" fill="rgb(226,0,17)" ry="2" x="1129.8202" rx="2"/> | |
<text font-size="12" x="1132.82" y="1245.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect fill="rgb(235,190,49)" rx="2" width="1.1800537" height="15.0" ry="2" y="1219.0" x="1129.8202"/> | |
<text font-family="Verdana" y="1229.50" font-size="12" x="1132.82"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect x="1129.8202" y="1203.0" fill="rgb(221,36,29)" width="1.1800537" ry="2" rx="2" height="15.0"/> | |
<text x="1132.82" y="1213.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect fill="rgb(250,1,19)" height="15.0" y="1187.0" ry="2" width="1.1800537" rx="2" x="1129.8202"/> | |
<text y="1197.50" font-size="12" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect x="1129.8202" fill="rgb(245,119,19)" ry="2" width="1.1800537" height="15.0" rx="2" y="1171.0"/> | |
<text y="1181.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(233,172,36)" y="1155.0" ry="2" height="15.0" x="1129.8202" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="1132.82" y="1165.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect height="15.0" rx="2" ry="2" x="1129.8202" fill="rgb(246,91,18)" y="1139.0" width="1.1800537"/> | |
<text font-size="12" font-family="Verdana" y="1149.50" x="1132.82"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect height="15.0" x="1129.8202" ry="2" rx="2" fill="rgb(227,133,9)" y="1123.0" width="1.1800537"/> | |
<text y="1133.50" font-family="Verdana" x="1132.82" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect x="1129.8202" fill="rgb(217,173,20)" rx="2" height="15.0" ry="2" width="1.1800537" y="1107.0"/> | |
<text font-size="12" font-family="Verdana" x="1132.82" y="1117.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.10%)</title> | |
<rect ry="2" rx="2" fill="rgb(224,145,29)" height="15.0" width="1.1800537" x="1129.8202" y="1091.0"/> | |
<text y="1101.50" x="1132.82" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" width="1.1800537" fill="rgb(210,102,54)" x="1129.8202" y="1075.0" height="15.0" ry="2"/> | |
<text x="1132.82" y="1085.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" width="1.1800537" height="15.0" y="1059.0" ry="2" rx="2" fill="rgb(220,145,40)"/> | |
<text font-family="Verdana" font-size="12" y="1069.50" x="1132.82"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect ry="2" height="15.0" fill="rgb(227,185,54)" x="1129.8202" y="1043.0" rx="2" width="1.1800537"/> | |
<text font-size="12" y="1053.50" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" height="15.0" y="1027.0" fill="rgb(247,43,6)" width="1.1800537" rx="2" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1132.82" y="1037.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" width="1.1800537" y="1011.0" x="1129.8202" height="15.0" fill="rgb(235,208,31)" ry="2"/> | |
<text x="1132.82" font-size="12" font-family="Verdana" y="1021.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect y="995.0" fill="rgb(230,143,54)" width="1.1800537" x="1129.8202" rx="2" ry="2" height="15.0"/> | |
<text x="1132.82" y="1005.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800537" fill="rgb(234,219,30)" x="1129.8202" height="15.0" y="979.0"/> | |
<text x="1132.82" font-family="Verdana" font-size="12" y="989.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" class="func_g"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" y="963.0" ry="2" height="15.0" fill="rgb(226,41,1)" width="1.1800537" rx="2"/> | |
<text font-family="Verdana" x="1132.82" y="973.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect height="15.0" rx="2" x="1129.8202" fill="rgb(218,211,20)" y="947.0" ry="2" width="1.1800537"/> | |
<text y="957.50" x="1132.82" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect y="931.0" height="15.0" width="1.1800537" rx="2" x="1129.8202" fill="rgb(219,25,42)" ry="2"/> | |
<text font-size="12" y="941.50" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" ry="2" height="15.0" width="1.1800537" y="915.0" x="1129.8202" fill="rgb(243,22,25)"/> | |
<text x="1132.82" font-size="12" font-family="Verdana" y="925.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObject.layout (0.10%)')" class="func_g"><title >RenderObject.layout (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(251,122,16)" x="1129.8202" y="899.0" height="15.0" rx="2" ry="2"/> | |
<text y="909.50" font-family="Verdana" font-size="12" x="1132.82"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderTheater.performLayout (0.10%)')" onclick="zoom(this)"><title >RenderTheater.performLayout (0.10%)</title> | |
<rect width="1.1800537" height="15.0" x="1129.8202" ry="2" fill="rgb(214,170,1)" y="883.0" rx="2"/> | |
<text x="1132.82" font-family="Verdana" y="893.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderTheaterMixin.layoutChild (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderTheaterMixin.layoutChild (0.10%)</title> | |
<rect x="1129.8202" height="15.0" ry="2" fill="rgb(255,202,32)" y="867.0" width="1.1800537" rx="2"/> | |
<text y="877.50" font-size="12" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect height="15.0" rx="2" x="1129.8202" y="851.0" width="1.1800537" ry="2" fill="rgb(230,21,25)"/> | |
<text x="1132.82" y="861.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect fill="rgb(227,18,17)" ry="2" y="835.0" rx="2" width="1.1800537" height="15.0" x="1129.8202"/> | |
<text y="845.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.10%)')" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" rx="2" y="819.0" width="1.1800537" height="15.0" ry="2" fill="rgb(251,44,4)"/> | |
<text y="829.50" font-size="12" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g onmouseover="s('RenderOffstage.performLayout (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderOffstage.performLayout (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(250,108,7)" x="1129.8202" height="15.0" ry="2" rx="2" y="803.0"/> | |
<text x="1132.82" font-size="12" y="813.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect x="1129.8202" width="1.1800537" height="15.0" fill="rgb(208,78,39)" y="787.0" rx="2" ry="2"/> | |
<text font-size="12" y="797.50" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" height="15.0" width="1.1800537" fill="rgb(243,197,46)" ry="2" rx="2" y="771.0"/> | |
<text font-family="Verdana" y="781.50" x="1132.82" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect height="15.0" width="1.1800537" ry="2" x="1129.8202" fill="rgb(231,226,45)" rx="2" y="755.0"/> | |
<text font-family="Verdana" font-size="12" x="1132.82" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect y="739.0" x="1129.8202" rx="2" width="1.1800537" ry="2" fill="rgb(245,136,47)" height="15.0"/> | |
<text font-family="Verdana" x="1132.82" y="749.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" height="15.0" x="1129.8202" y="723.0" width="1.1800537" fill="rgb(250,105,55)" ry="2"/> | |
<text font-family="Verdana" y="733.50" font-size="12" x="1132.82"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect width="1.1800537" y="707.0" height="15.0" fill="rgb(210,114,0)" x="1129.8202" rx="2" ry="2"/> | |
<text y="717.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect height="15.0" width="1.1800537" fill="rgb(211,186,29)" rx="2" y="691.0" x="1129.8202" ry="2"/> | |
<text font-size="12" x="1132.82" font-family="Verdana" y="701.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect ry="2" height="15.0" rx="2" y="675.0" width="1.1800537" x="1129.8202" fill="rgb(244,2,17)"/> | |
<text x="1132.82" y="685.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect x="1129.8202" height="15.0" rx="2" fill="rgb(205,136,50)" width="1.1800537" ry="2" y="659.0"/> | |
<text y="669.50" font-family="Verdana" font-size="12" x="1132.82"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect height="15.0" width="1.1800537" rx="2" ry="2" x="1129.8202" fill="rgb(238,186,15)" y="643.0"/> | |
<text y="653.50" font-family="Verdana" x="1132.82" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect width="1.1800537" x="1129.8202" rx="2" ry="2" height="15.0" fill="rgb(239,98,16)" y="627.0"/> | |
<text font-family="Verdana" y="637.50" x="1132.82" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(236,29,20)" width="1.1800537" x="1129.8202" y="611.0"/> | |
<text font-size="12" x="1132.82" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderStack.performLayout (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderStack.performLayout (0.10%)</title> | |
<rect height="15.0" fill="rgb(252,144,23)" rx="2" x="1129.8202" width="1.1800537" ry="2" y="595.0"/> | |
<text x="1132.82" font-family="Verdana" font-size="12" y="605.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderStack._computeSize (0.10%)')"><title >RenderStack._computeSize (0.10%)</title> | |
<rect y="579.0" rx="2" x="1129.8202" height="15.0" fill="rgb(252,133,7)" ry="2" width="1.1800537"/> | |
<text x="1132.82" y="589.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ChildLayoutHelper.layoutChild (#2) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >ChildLayoutHelper.layoutChild (#2) (0.10%)</title> | |
<rect rx="2" width="1.1800537" y="563.0" fill="rgb(229,116,29)" x="1129.8202" height="15.0" ry="2"/> | |
<text font-family="Verdana" y="573.50" x="1132.82" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ChildLayoutHelper.layoutChild (0.10%)')" onmouseout="c()"><title >ChildLayoutHelper.layoutChild (0.10%)</title> | |
<rect width="1.1800537" rx="2" ry="2" fill="rgb(216,137,47)" x="1129.8202" y="547.0" height="15.0"/> | |
<text x="1132.82" y="557.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" rx="2" ry="2" width="1.1800537" fill="rgb(235,106,48)" y="531.0" height="15.0"/> | |
<text font-family="Verdana" y="541.50" font-size="12" x="1132.82"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect height="15.0" rx="2" y="515.0" fill="rgb(220,97,52)" x="1129.8202" ry="2" width="1.1800537"/> | |
<text y="525.50" font-size="12" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.10%)</title> | |
<rect ry="2" fill="rgb(210,21,39)" y="499.0" rx="2" width="1.1800537" height="15.0" x="1129.8202"/> | |
<text font-family="Verdana" x="1132.82" y="509.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect width="1.1800537" x="1129.8202" height="15.0" rx="2" ry="2" fill="rgb(248,197,9)" y="483.0"/> | |
<text font-size="12" x="1132.82" font-family="Verdana" y="493.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800537" y="467.0" fill="rgb(223,189,36)" height="15.0" x="1129.8202"/> | |
<text y="477.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" fill="rgb(225,58,51)" x="1129.8202" width="1.1800537" y="451.0"/> | |
<text x="1132.82" font-size="12" y="461.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect ry="2" x="1129.8202" rx="2" width="1.1800537" fill="rgb(246,48,36)" height="15.0" y="435.0"/> | |
<text font-size="12" x="1132.82" y="445.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderCustomClip.performLayout (0.10%)')"><title >RenderCustomClip.performLayout (0.10%)</title> | |
<rect rx="2" height="15.0" fill="rgb(233,129,38)" y="419.0" ry="2" width="1.1800537" x="1129.8202"/> | |
<text y="429.50" font-family="Verdana" font-size="12" x="1132.82"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect y="403.0" rx="2" height="15.0" fill="rgb(217,163,43)" ry="2" x="1129.8202" width="1.1800537"/> | |
<text x="1132.82" y="413.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" height="15.0" rx="2" fill="rgb(255,39,48)" ry="2" y="387.0" width="1.1800537"/> | |
<text x="1132.82" font-size="12" y="397.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect ry="2" x="1129.8202" y="371.0" height="15.0" rx="2" fill="rgb(226,128,17)" width="1.1800537"/> | |
<text font-family="Verdana" y="381.50" x="1132.82" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect fill="rgb(230,16,53)" y="355.0" height="15.0" width="1.1800537" rx="2" ry="2" x="1129.8202"/> | |
<text x="1132.82" y="365.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderCustomMultiChildLayoutBox.performLayout (0.10%)')"><title >RenderCustomMultiChildLayoutBox.performLayout (0.10%)</title> | |
<rect width="1.1800537" rx="2" fill="rgb(239,221,36)" height="15.0" x="1129.8202" y="339.0" ry="2"/> | |
<text x="1132.82" font-family="Verdana" font-size="12" y="349.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('MultiChildLayoutDelegate._callPerformLayout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >MultiChildLayoutDelegate._callPerformLayout (0.10%)</title> | |
<rect x="1129.8202" height="15.0" ry="2" fill="rgb(208,159,48)" width="1.1800537" rx="2" y="323.0"/> | |
<text x="1132.82" font-size="12" y="333.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ScaffoldLayout.performLayout (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >ScaffoldLayout.performLayout (0.10%)</title> | |
<rect ry="2" x="1129.8202" rx="2" width="1.1800537" fill="rgb(230,193,51)" y="307.0" height="15.0"/> | |
<text font-family="Verdana" x="1132.82" font-size="12" y="317.50"></text> | |
</g> | |
<g onmouseover="s('MultiChildLayoutDelegate.layoutChild (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >MultiChildLayoutDelegate.layoutChild (0.10%)</title> | |
<rect y="291.0" ry="2" width="1.1800537" height="15.0" rx="2" x="1129.8202" fill="rgb(232,134,42)"/> | |
<text x="1132.82" font-size="12" font-family="Verdana" y="301.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(210,143,32)" height="15.0" rx="2" x="1129.8202" y="275.0" ry="2"/> | |
<text x="1132.82" y="285.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderStack.performLayout (0.10%)')" onmouseout="c()"><title >RenderStack.performLayout (0.10%)</title> | |
<rect rx="2" width="1.1800537" height="15.0" fill="rgb(213,141,35)" y="259.0" x="1129.8202" ry="2"/> | |
<text x="1132.82" y="269.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderStack._computeSize (0.10%)')" class="func_g" onclick="zoom(this)"><title >RenderStack._computeSize (0.10%)</title> | |
<rect ry="2" rx="2" fill="rgb(207,160,11)" x="1129.8202" width="1.1800537" y="243.0" height="15.0"/> | |
<text y="253.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ChildLayoutHelper.layoutChild (#2) (0.10%)')" onclick="zoom(this)"><title >ChildLayoutHelper.layoutChild (#2) (0.10%)</title> | |
<rect height="15.0" fill="rgb(250,5,49)" width="1.1800537" y="227.0" x="1129.8202" ry="2" rx="2"/> | |
<text y="237.50" font-size="12" font-family="Verdana" x="1132.82"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ChildLayoutHelper.layoutChild (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >ChildLayoutHelper.layoutChild (0.10%)</title> | |
<rect x="1129.8202" rx="2" width="1.1800537" y="211.0" height="15.0" ry="2" fill="rgb(233,80,55)"/> | |
<text y="221.50" x="1132.82" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect height="15.0" fill="rgb(227,168,52)" rx="2" x="1129.8202" width="1.1800537" ry="2" y="195.0"/> | |
<text y="205.50" x="1132.82" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderStack.performLayout (0.10%)')"><title >RenderStack.performLayout (0.10%)</title> | |
<rect height="15.0" x="1129.8202" y="179.0" fill="rgb(240,22,25)" width="1.1800537" rx="2" ry="2"/> | |
<text font-family="Verdana" x="1132.82" font-size="12" y="189.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderStack.layoutPositionedChild (0.10%)')"><title >RenderStack.layoutPositionedChild (0.10%)</title> | |
<rect y="163.0" width="1.1800537" x="1129.8202" fill="rgb(206,6,14)" ry="2" rx="2" height="15.0"/> | |
<text y="173.50" font-size="12" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect height="15.0" ry="2" width="1.1800537" x="1129.8202" y="147.0" rx="2" fill="rgb(225,71,15)"/> | |
<text font-size="12" x="1132.82" font-family="Verdana" y="157.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect width="1.1800537" rx="2" fill="rgb(212,66,0)" ry="2" height="15.0" x="1129.8202" y="131.0"/> | |
<text x="1132.82" font-family="Verdana" y="141.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect x="1129.8202" height="15.0" width="1.1800537" ry="2" y="115.0" rx="2" fill="rgb(206,195,2)"/> | |
<text x="1132.82" y="125.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" height="15.0" ry="2" x="1129.8202" y="99.0" fill="rgb(205,83,45)" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" y="109.50" x="1132.82"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect fill="rgb(207,35,37)" y="83.0" x="1129.8202" width="1.1800537" height="15.0" ry="2" rx="2"/> | |
<text y="93.50" font-family="Verdana" font-size="12" x="1132.82"></text> | |
</g> | |
<g onmouseover="s('RenderParagraph.performLayout (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderParagraph.performLayout (0.10%)</title> | |
<rect width="1.1800537" y="67.0" height="15.0" rx="2" ry="2" fill="rgb(238,210,22)" x="1129.8202"/> | |
<text y="77.50" x="1132.82" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderParagraph._layoutTextWithConstraints (0.10%)')" onclick="zoom(this)" class="func_g"><title >RenderParagraph._layoutTextWithConstraints (0.10%)</title> | |
<rect width="1.1800537" y="51.0" height="15.0" x="1129.8202" fill="rgb(251,107,44)" rx="2" ry="2"/> | |
<text x="1132.82" y="61.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_NativeParagraph._layout (0.10%)')"><title >_NativeParagraph._layout (0.10%)</title> | |
<rect fill="rgb(247,16,49)" height="15.0" rx="2" x="1129.8202" ry="2" y="35.0" width="1.1800537"/> | |
<text font-size="12" y="45.50" x="1132.82" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('NativeParagraph.__layout$Method$FfiNative (0.10%)')" onmouseout="c()"><title >NativeParagraph.__layout$Method$FfiNative (0.10%)</title> | |
<rect y="19.0" width="1.1800537" height="15.0" fill="rgb(210,86,18)" x="1129.8202" rx="2" ry="2"/> | |
<text font-family="Verdana" y="29.50" x="1132.82" font-size="12"></text> | |
</g> | |
<g onmouseover="s('skia::textlayout::ParagraphImpl::layout(float) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >skia::textlayout::ParagraphImpl::layout(float) (0.10%)</title> | |
<rect height="15.0" x="1129.8202" width="1.1800537" ry="2" rx="2" y="3.0" fill="rgb(227,180,32)"/> | |
<text font-family="Verdana" y="13.50" font-size="12" x="1132.82"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__CFRunLoopDoSources0 (1.90%)')" onclick="zoom(this)"><title >__CFRunLoopDoSources0 (1.90%)</title> | |
<rect ry="2" y="1699.0" x="1139.26" width="22.420044" height="15.0" fill="rgb(209,82,44)" rx="2"/> | |
<text x="1142.26" font-size="12" font-family="Verdana" y="1709.50">_..</text> | |
</g> | |
<g onmouseover="s('__CFRunLoopDoSource0 (1.80%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__CFRunLoopDoSource0 (1.80%)</title> | |
<rect fill="rgb(230,133,19)" rx="2" ry="2" x="1139.26" width="21.23999" y="1683.0" height="15.0"/> | |
<text y="1693.50" font-family="Verdana" font-size="12" x="1142.26"></text> | |
</g> | |
<g onmouseover="s('__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ (1.80%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ (1.80%)</title> | |
<rect y="1667.0" ry="2" width="21.23999" x="1139.26" rx="2" height="15.0" fill="rgb(219,46,28)"/> | |
<text font-family="Verdana" x="1142.26" font-size="12" y="1677.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('runloopSourceCallback (0.90%)')" class="func_g" onmouseout="c()"><title >runloopSourceCallback (0.90%)</title> | |
<rect fill="rgb(234,6,18)" x="1139.26" y="1651.0" height="15.0" rx="2" ry="2" width="10.619995"/> | |
<text y="1661.50" font-size="12" x="1142.26" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('schedulerStepScheduledMainSection (0.90%)')"><title >schedulerStepScheduledMainSection (0.90%)</title> | |
<rect height="15.0" x="1139.26" width="10.619995" fill="rgb(217,137,36)" rx="2" ry="2" y="1635.0"/> | |
<text y="1645.50" font-family="Verdana" font-size="12" x="1142.26"></text> | |
</g> | |
<g onmouseover="s('_UIUpdateSequenceRun (0.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_UIUpdateSequenceRun (0.90%)</title> | |
<rect width="10.619995" fill="rgb(254,4,32)" rx="2" x="1139.26" y="1619.0" height="15.0" ry="2"/> | |
<text y="1629.50" font-size="12" x="1142.26" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_UIApplicationFlushCATransaction (0.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_UIApplicationFlushCATransaction (0.60%)</title> | |
<rect x="1139.26" y="1603.0" height="15.0" fill="rgb(235,76,51)" ry="2" rx="2" width="7.079956"/> | |
<text font-size="12" font-family="Verdana" x="1142.26" y="1613.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('CA::Transaction::flush_as_runloop_observer(bool) (0.40%)')"><title >CA::Transaction::flush_as_runloop_observer(bool) (0.40%)</title> | |
<rect fill="rgb(208,39,39)" x="1139.26" width="4.7199707" y="1587.0" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" y="1597.50" font-family="Verdana" x="1142.26"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('CA::Transaction::commit() (0.40%)')" onclick="zoom(this)"><title >CA::Transaction::commit() (0.40%)</title> | |
<rect rx="2" x="1139.26" y="1571.0" width="4.7199707" fill="rgb(222,149,55)" height="15.0" ry="2"/> | |
<text font-size="12" x="1142.26" y="1581.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_os_signpost_emit_unreliably_with_name_impl (0.20%)')"><title >_os_signpost_emit_unreliably_with_name_impl (0.20%)</title> | |
<rect fill="rgb(207,74,30)" ry="2" width="2.3599854" height="15.0" rx="2" y="1555.0" x="1139.26"/> | |
<text x="1142.26" font-size="12" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('__os_signpost_emit_impl (0.20%)')" onclick="zoom(this)" class="func_g"><title >__os_signpost_emit_impl (0.20%)</title> | |
<rect x="1139.26" y="1539.0" width="2.3599854" height="15.0" fill="rgb(226,170,43)" ry="2" rx="2"/> | |
<text x="1142.26" font-family="Verdana" font-size="12" y="1549.50"></text> | |
</g> | |
<g onmouseover="s('_os_log_impl_flatten_and_send (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_os_log_impl_flatten_and_send (0.20%)</title> | |
<rect rx="2" height="15.0" fill="rgb(249,170,46)" ry="2" y="1523.0" x="1139.26" width="2.3599854"/> | |
<text y="1533.50" x="1142.26" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_log_impl_stream (0.20%)')" onmouseout="c()"><title >_os_log_impl_stream (0.20%)</title> | |
<rect height="15.0" ry="2" rx="2" x="1139.26" width="2.3599854" fill="rgb(224,199,16)" y="1507.0"/> | |
<text y="1517.50" font-size="12" font-family="Verdana" x="1142.26"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (0.20%)')" onmouseout="c()" class="func_g"><title >_os_activity_stream_reflect (0.20%)</title> | |
<rect x="1139.26" fill="rgb(225,169,0)" height="15.0" ry="2" rx="2" width="2.3599854" y="1491.0"/> | |
<text y="1501.50" x="1142.26" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('CA::Context::commit_transaction(CA::Transaction*, double, double*) (0.10%)')" class="func_g"><title >CA::Context::commit_transaction(CA::Transaction*, double, double*) (0.10%)</title> | |
<rect fill="rgb(231,34,53)" ry="2" y="1555.0" width="1.1800537" x="1141.62" rx="2" height="15.0"/> | |
<text x="1144.62" font-size="12" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_cleanUpAfterCAFlushAndRunDeferredBlocks (0.20%)')"><title >_cleanUpAfterCAFlushAndRunDeferredBlocks (0.20%)</title> | |
<rect fill="rgb(251,225,50)" ry="2" y="1587.0" width="2.3599854" x="1143.98" rx="2" height="15.0"/> | |
<text font-size="12" y="1597.50" font-family="Verdana" x="1146.98"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_runAfterCACommitDeferredBlocks (0.10%)')" onclick="zoom(this)"><title >_runAfterCACommitDeferredBlocks (0.10%)</title> | |
<rect fill="rgb(249,3,52)" x="1143.98" width="1.1800537" y="1571.0" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" x="1146.98" y="1581.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[_UIAfterCACommitQueue flush] (0.10%)')" class="func_g"><title >-[_UIAfterCACommitQueue flush] (0.10%)</title> | |
<rect rx="2" x="1143.98" y="1555.0" width="1.1800537" fill="rgb(233,164,38)" height="15.0" ry="2"/> | |
<text x="1146.98" font-size="12" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[_UIAfterCACommitBlock run] (0.10%)')" class="func_g"><title >-[_UIAfterCACommitBlock run] (0.10%)</title> | |
<rect fill="rgb(222,77,15)" ry="2" width="1.1800537" height="15.0" rx="2" y="1539.0" x="1143.98"/> | |
<text font-size="12" font-family="Verdana" x="1146.98" y="1549.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__72-[UIWindowScene _performIOSGeometryRequestWithPreferences:errorHandler:]_block_invoke.133 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >__72-[UIWindowScene _performIOSGeometryRequestWithPreferences:errorHandler:]_block_invoke.133 (0.10%)</title> | |
<rect x="1143.98" y="1523.0" height="15.0" width="1.1800537" fill="rgb(238,178,32)" ry="2" rx="2"/> | |
<text x="1146.98" font-family="Verdana" font-size="12" y="1533.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[UIScene _updateUIClientSettingsWithUITransitionBlock:] (0.10%)')" onclick="zoom(this)"><title >-[UIScene _updateUIClientSettingsWithUITransitionBlock:] (0.10%)</title> | |
<rect width="1.1800537" ry="2" height="15.0" y="1507.0" x="1143.98" rx="2" fill="rgb(227,217,12)"/> | |
<text font-size="12" font-family="Verdana" x="1146.98" y="1517.50"></text> | |
</g> | |
<g onmouseover="s('-[FBSScene(UIApp) updateUIClientSettingsWithTransitionBlock:] (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[FBSScene(UIApp) updateUIClientSettingsWithTransitionBlock:] (0.10%)</title> | |
<rect ry="2" y="1491.0" height="15.0" x="1143.98" rx="2" width="1.1800537" fill="rgb(222,37,36)"/> | |
<text y="1501.50" font-family="Verdana" font-size="12" x="1146.98"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[FBSScene updateClientSettingsWithTransitionBlock:] (0.10%)')" onmouseout="c()"><title >-[FBSScene updateClientSettingsWithTransitionBlock:] (0.10%)</title> | |
<rect x="1143.98" y="1475.0" width="1.1800537" fill="rgb(207,222,38)" height="15.0" rx="2" ry="2"/> | |
<text x="1146.98" font-size="12" y="1485.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[FBSScene _updateClientSettings:withTransitionContext:] (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[FBSScene _updateClientSettings:withTransitionContext:] (0.10%)</title> | |
<rect y="1459.0" width="1.1800537" rx="2" fill="rgb(251,119,35)" x="1143.98" height="15.0" ry="2"/> | |
<text font-family="Verdana" y="1469.50" font-size="12" x="1146.98"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[FBSBasicSceneAgent scene:reviewEvent:withCompletion:] (0.10%)')"><title >-[FBSBasicSceneAgent scene:reviewEvent:withCompletion:] (0.10%)</title> | |
<rect y="1443.0" ry="2" fill="rgb(228,195,40)" width="1.1800537" x="1143.98" height="15.0" rx="2"/> | |
<text font-size="12" y="1453.50" font-family="Verdana" x="1146.98"></text> | |
</g> | |
<g onmouseover="s('__56-[FBSScene _updateClientSettings:withTransitionContext:]_block_invoke (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >__56-[FBSScene _updateClientSettings:withTransitionContext:]_block_invoke (0.10%)</title> | |
<rect ry="2" width="1.1800537" x="1143.98" fill="rgb(222,28,17)" height="15.0" y="1427.0" rx="2"/> | |
<text y="1437.50" font-family="Verdana" font-size="12" x="1146.98"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[FBSWorkspaceScenesClient scene:didUpdateClientSettings:withDiff:transitionContext:] (0.10%)')" class="func_g" onclick="zoom(this)"><title >-[FBSWorkspaceScenesClient scene:didUpdateClientSettings:withDiff:transitionContext:] (0.10%)</title> | |
<rect rx="2" width="1.1800537" ry="2" fill="rgb(222,133,9)" y="1411.0" x="1143.98" height="15.0"/> | |
<text y="1421.50" font-family="Verdana" x="1146.98" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_dispatch_lane_barrier_sync_invoke_and_complete (0.10%)')"><title >_dispatch_lane_barrier_sync_invoke_and_complete (0.10%)</title> | |
<rect y="1395.0" rx="2" x="1143.98" height="15.0" width="1.1800537" fill="rgb(206,66,43)" ry="2"/> | |
<text font-family="Verdana" x="1146.98" font-size="12" y="1405.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_dispatch_client_callout (0.10%)')" onclick="zoom(this)"><title >_dispatch_client_callout (0.10%)</title> | |
<rect ry="2" x="1143.98" y="1379.0" height="15.0" width="1.1800537" fill="rgb(255,128,39)" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="1146.98" y="1389.50"></text> | |
</g> | |
<g onmouseover="s('__85-[FBSWorkspaceScenesClient scene:didUpdateClientSettings:withDiff:transitionContext:]_block_invoke (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__85-[FBSWorkspaceScenesClient scene:didUpdateClientSettings:withDiff:transitionContext:]_block_invoke (0.10%)</title> | |
<rect height="15.0" x="1143.98" y="1363.0" width="1.1800537" fill="rgb(215,136,14)" rx="2" ry="2"/> | |
<text y="1373.50" font-size="12" font-family="Verdana" x="1146.98"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('__80+[BSXPCServiceConnectionProxy createImplementationOfProtocol:forClass:withName:]_block_invoke (0.10%)')" onmouseout="c()"><title >__80+[BSXPCServiceConnectionProxy createImplementationOfProtocol:forClass:withName:]_block_invoke (0.10%)</title> | |
<rect y="1347.0" rx="2" height="15.0" ry="2" x="1143.98" width="1.1800537" fill="rgb(219,228,20)"/> | |
<text x="1146.98" y="1357.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('+[BSXPCServiceConnectionProxy encodeArguments:inArgs:toMessage:forConnection:] (0.10%)')"><title >+[BSXPCServiceConnectionProxy encodeArguments:inArgs:toMessage:forConnection:] (0.10%)</title> | |
<rect width="1.1800537" x="1143.98" rx="2" height="15.0" ry="2" fill="rgb(213,59,9)" y="1331.0"/> | |
<text font-size="12" x="1146.98" font-family="Verdana" y="1341.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_BSXPCEncodeObjectForKey (0.10%)')" onmouseout="c()"><title >_BSXPCEncodeObjectForKey (0.10%)</title> | |
<rect height="15.0" width="1.1800537" rx="2" ry="2" fill="rgb(255,102,50)" x="1143.98" y="1315.0"/> | |
<text font-family="Verdana" x="1146.98" y="1325.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_BSXPCEncodeDictionaryWithKey (0.10%)')"><title >_BSXPCEncodeDictionaryWithKey (0.10%)</title> | |
<rect height="15.0" rx="2" ry="2" x="1143.98" fill="rgb(212,191,4)" y="1299.0" width="1.1800537"/> | |
<text y="1309.50" font-family="Verdana" x="1146.98" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('___BSXPCEncodeObjectForKey_block_invoke_2 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >___BSXPCEncodeObjectForKey_block_invoke_2 (0.10%)</title> | |
<rect fill="rgb(245,189,10)" width="1.1800537" x="1143.98" rx="2" height="15.0" ry="2" y="1283.0"/> | |
<text font-family="Verdana" y="1293.50" font-size="12" x="1146.98"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[FBSSettings encodeWithBSXPCCoder:] (0.10%)')" onmouseout="c()"><title >-[FBSSettings encodeWithBSXPCCoder:] (0.10%)</title> | |
<rect width="1.1800537" height="15.0" rx="2" fill="rgb(225,133,25)" y="1267.0" x="1143.98" ry="2"/> | |
<text font-size="12" x="1146.98" font-family="Verdana" y="1277.50"></text> | |
</g> | |
<g onmouseover="s('_BSXPCEncodeObjectForKey (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_BSXPCEncodeObjectForKey (0.10%)</title> | |
<rect y="1251.0" width="1.1800537" rx="2" fill="rgb(207,21,53)" ry="2" x="1143.98" height="15.0"/> | |
<text y="1261.50" x="1146.98" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_BSXPCEncodeDictionaryWithKey (0.10%)')"><title >_BSXPCEncodeDictionaryWithKey (0.10%)</title> | |
<rect x="1143.98" width="1.1800537" height="15.0" fill="rgb(232,155,14)" y="1235.0" ry="2" rx="2"/> | |
<text font-family="Verdana" x="1146.98" y="1245.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('___BSXPCEncodeObjectForKey_block_invoke_3 (0.10%)')"><title >___BSXPCEncodeObjectForKey_block_invoke_3 (0.10%)</title> | |
<rect rx="2" width="1.1800537" y="1219.0" x="1143.98" height="15.0" fill="rgb(218,179,49)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1146.98" y="1229.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('BSSerializeBSXPCEncodableObjectToXPCDictionary (0.10%)')"><title >BSSerializeBSXPCEncodableObjectToXPCDictionary (0.10%)</title> | |
<rect y="1203.0" fill="rgb(226,95,53)" width="1.1800537" x="1143.98" rx="2" ry="2" height="15.0"/> | |
<text y="1213.50" font-family="Verdana" x="1146.98" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[BSKeyedSettings encodeWithXPCDictionary:] (0.10%)')" onclick="zoom(this)"><title >-[BSKeyedSettings encodeWithXPCDictionary:] (0.10%)</title> | |
<rect y="1187.0" ry="2" fill="rgb(239,5,35)" rx="2" width="1.1800537" height="15.0" x="1143.98"/> | |
<text x="1146.98" y="1197.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[BSSettings encodeWithXPCDictionary:] (0.10%)')" class="func_g"><title >-[BSSettings encodeWithXPCDictionary:] (0.10%)</title> | |
<rect width="1.1800537" y="1171.0" fill="rgb(208,3,25)" rx="2" x="1143.98" ry="2" height="15.0"/> | |
<text font-family="Verdana" x="1146.98" y="1181.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('__38-[BSSettings encodeWithXPCDictionary:]_block_invoke (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__38-[BSSettings encodeWithXPCDictionary:]_block_invoke (0.10%)</title> | |
<rect rx="2" ry="2" height="15.0" width="1.1800537" y="1155.0" x="1143.98" fill="rgb(217,73,43)"/> | |
<text y="1165.50" font-size="12" x="1146.98" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[BSSettings _enumerateSettingsInMap:withBlock:] (0.10%)')" onmouseout="c()"><title >-[BSSettings _enumerateSettingsInMap:withBlock:] (0.10%)</title> | |
<rect width="1.1800537" height="15.0" x="1143.98" ry="2" fill="rgb(232,133,8)" y="1139.0" rx="2"/> | |
<text x="1146.98" font-size="12" y="1149.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('BSIntegerMapEnumerateKeysWithBlock (0.10%)')" class="func_g" onclick="zoom(this)"><title >BSIntegerMapEnumerateKeysWithBlock (0.10%)</title> | |
<rect y="1123.0" rx="2" width="1.1800537" ry="2" height="15.0" fill="rgb(228,74,10)" x="1143.98"/> | |
<text font-size="12" font-family="Verdana" y="1133.50" x="1146.98"></text> | |
</g> | |
<g onmouseover="s('__38-[BSSettings encodeWithXPCDictionary:]_block_invoke_2 (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >__38-[BSSettings encodeWithXPCDictionary:]_block_invoke_2 (0.10%)</title> | |
<rect height="15.0" rx="2" y="1107.0" x="1143.98" width="1.1800537" ry="2" fill="rgb(207,119,1)"/> | |
<text y="1117.50" font-family="Verdana" x="1146.98" font-size="12"></text> | |
</g> | |
<g onmouseover="s('BSSettingsEncodeAppendSettingArrayEntry (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >BSSettingsEncodeAppendSettingArrayEntry (0.10%)</title> | |
<rect rx="2" x="1143.98" height="15.0" ry="2" width="1.1800537" fill="rgb(206,230,18)" y="1091.0"/> | |
<text y="1101.50" font-size="12" x="1146.98" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__38-[BSSettings encodeWithXPCDictionary:]_block_invoke_4 (0.10%)')"><title >__38-[BSSettings encodeWithXPCDictionary:]_block_invoke_4 (0.10%)</title> | |
<rect x="1143.98" width="1.1800537" height="15.0" fill="rgb(219,31,35)" y="1075.0" rx="2" ry="2"/> | |
<text x="1146.98" font-size="12" font-family="Verdana" y="1085.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('BSSettingsEncodeSettingObject (0.10%)')"><title >BSSettingsEncodeSettingObject (0.10%)</title> | |
<rect x="1143.98" height="15.0" width="1.1800537" fill="rgb(251,174,45)" ry="2" rx="2" y="1059.0"/> | |
<text y="1069.50" font-family="Verdana" font-size="12" x="1146.98"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('BSCreateSerializedBSXPCEncodableObject (0.10%)')"><title >BSCreateSerializedBSXPCEncodableObject (0.10%)</title> | |
<rect height="15.0" width="1.1800537" ry="2" x="1143.98" fill="rgb(240,227,28)" rx="2" y="1043.0"/> | |
<text font-family="Verdana" y="1053.50" x="1146.98" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('BSSerializeBSXPCEncodableObjectToXPCDictionary (0.10%)')"><title >BSSerializeBSXPCEncodableObjectToXPCDictionary (0.10%)</title> | |
<rect height="15.0" x="1143.98" ry="2" y="1027.0" fill="rgb(208,226,40)" width="1.1800537" rx="2"/> | |
<text x="1146.98" y="1037.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('BSSerializeArrayToXPCDictionaryWithKey (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >BSSerializeArrayToXPCDictionaryWithKey (0.10%)</title> | |
<rect x="1143.98" width="1.1800537" rx="2" ry="2" fill="rgb(223,12,34)" y="1011.0" height="15.0"/> | |
<text font-family="Verdana" y="1021.50" font-size="12" x="1146.98"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('__BSSerializeArrayOfBSXPCEncodableObjectsToXPCDictionaryWithKey_block_invoke (0.10%)')" class="func_g" onmouseout="c()"><title >__BSSerializeArrayOfBSXPCEncodableObjectsToXPCDictionaryWithKey_block_invoke (0.10%)</title> | |
<rect ry="2" y="995.0" rx="2" height="15.0" width="1.1800537" fill="rgb(250,174,33)" x="1143.98"/> | |
<text x="1146.98" y="1005.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('BSCreateSerializedBSXPCEncodableObject (0.10%)')" class="func_g"><title >BSCreateSerializedBSXPCEncodableObject (0.10%)</title> | |
<rect y="979.0" fill="rgb(218,14,24)" rx="2" x="1143.98" ry="2" width="1.1800537" height="15.0"/> | |
<text font-family="Verdana" y="989.50" font-size="12" x="1146.98"></text> | |
</g> | |
<g onmouseover="s('BSSerializeBSXPCEncodableObjectToXPCDictionary (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >BSSerializeBSXPCEncodableObjectToXPCDictionary (0.10%)</title> | |
<rect width="1.1800537" x="1143.98" y="963.0" ry="2" fill="rgb(214,26,2)" height="15.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1146.98" y="973.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[BSAction encodeWithXPCDictionary:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[BSAction encodeWithXPCDictionary:] (0.10%)</title> | |
<rect y="947.0" x="1143.98" width="1.1800537" height="15.0" fill="rgb(238,163,39)" rx="2" ry="2"/> | |
<text font-size="12" x="1146.98" y="957.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[_BSActionResponder action_encode:] (0.10%)')"><title >-[_BSActionResponder action_encode:] (0.10%)</title> | |
<rect height="15.0" width="1.1800537" fill="rgb(238,200,16)" rx="2" y="931.0" ry="2" x="1143.98"/> | |
<text x="1146.98" font-family="Verdana" font-size="12" y="941.50"></text> | |
</g> | |
<g onmouseover="s('updateCycleEntry (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >updateCycleEntry (0.10%)</title> | |
<rect x="1146.34" y="1603.0" height="15.0" fill="rgb(238,166,21)" ry="2" rx="2" width="1.1800537"/> | |
<text font-size="12" y="1613.50" font-family="Verdana" x="1149.34"></text> | |
</g> | |
<g onmouseover="s('__processEventQueue (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >__processEventQueue (0.10%)</title> | |
<rect y="1587.0" ry="2" fill="rgb(234,60,34)" rx="2" width="1.1800537" height="15.0" x="1146.34"/> | |
<text font-size="12" font-family="Verdana" x="1149.34" y="1597.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__dispatchPreprocessedEventFromEventQueue (0.10%)')"><title >__dispatchPreprocessedEventFromEventQueue (0.10%)</title> | |
<rect y="1571.0" width="1.1800537" rx="2" fill="rgb(226,139,17)" ry="2" x="1146.34" height="15.0"/> | |
<text font-size="12" y="1581.50" font-family="Verdana" x="1149.34"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[FBSMainRunLoopSerialQueue _performNextFromRunLoopSource] (0.90%)')" class="func_g" onmouseout="c()"><title >-[FBSMainRunLoopSerialQueue _performNextFromRunLoopSource] (0.90%)</title> | |
<rect fill="rgb(252,26,20)" x="1149.88" y="1651.0" height="15.0" rx="2" ry="2" width="10.619995"/> | |
<text y="1661.50" font-size="12" x="1152.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[FBSMainRunLoopSerialQueue _targetQueue_performNextIfPossible] (0.90%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[FBSMainRunLoopSerialQueue _targetQueue_performNextIfPossible] (0.90%)</title> | |
<rect height="15.0" x="1149.88" width="10.619995" fill="rgb(228,19,37)" rx="2" ry="2" y="1635.0"/> | |
<text font-size="12" y="1645.50" font-family="Verdana" x="1152.88"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ (0.90%)')"><title >__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ (0.90%)</title> | |
<rect width="10.619995" fill="rgb(244,19,40)" rx="2" x="1149.88" y="1619.0" height="15.0" ry="2"/> | |
<text y="1629.50" font-family="Verdana" font-size="12" x="1152.88"></text> | |
</g> | |
<g onmouseover="s('_dispatch_block_invoke_direct (0.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_dispatch_block_invoke_direct (0.90%)</title> | |
<rect x="1149.88" y="1603.0" height="15.0" fill="rgb(211,175,10)" ry="2" rx="2" width="10.619995"/> | |
<text y="1613.50" font-size="12" x="1152.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_dispatch_client_callout (0.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_dispatch_client_callout (0.90%)</title> | |
<rect y="1587.0" ry="2" fill="rgb(234,62,12)" rx="2" width="10.619995" height="15.0" x="1149.88"/> | |
<text font-size="12" font-family="Verdana" x="1152.88" y="1597.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke (0.80%)')"><title >__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke (0.80%)</title> | |
<rect y="1571.0" width="9.439941" rx="2" fill="rgb(206,166,20)" ry="2" x="1149.88" height="15.0"/> | |
<text font-size="12" y="1581.50" font-family="Verdana" x="1152.88"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (0.80%)')" onclick="zoom(this)"><title >-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (0.80%)</title> | |
<rect ry="2" y="1555.0" rx="2" height="15.0" width="9.439941" fill="rgb(218,53,15)" x="1149.88"/> | |
<text font-size="12" x="1152.88" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.108 (0.80%)')" class="func_g"><title >__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.108 (0.80%)</title> | |
<rect width="9.439941" x="1149.88" y="1539.0" ry="2" fill="rgb(236,29,25)" height="15.0" rx="2"/> | |
<text x="1152.88" font-size="12" y="1549.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[FBSScene _callOutQueue_didCreateWithTransitionContext:completion:] (0.80%)')" onmouseout="c()"><title >-[FBSScene _callOutQueue_didCreateWithTransitionContext:completion:] (0.80%)</title> | |
<rect y="1523.0" x="1149.88" width="9.439941" height="15.0" fill="rgb(229,191,35)" rx="2" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1152.88" y="1533.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] (0.80%)')" onclick="zoom(this)"><title >-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] (0.80%)</title> | |
<rect fill="rgb(247,11,12)" ry="2" y="1507.0" width="9.439941" x="1149.88" rx="2" height="15.0"/> | |
<text x="1152.88" font-size="12" y="1517.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIApplication workspace:didCreateScene:withTransitionContext:completion:] (0.80%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIApplication workspace:didCreateScene:withTransitionContext:completion:] (0.80%)</title> | |
<rect fill="rgb(239,126,24)" x="1149.88" width="9.439941" y="1491.0" height="15.0" ry="2" rx="2"/> | |
<text font-family="Verdana" y="1501.50" x="1152.88" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (0.70%)')"><title >-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (0.70%)</title> | |
<rect rx="2" x="1149.88" y="1475.0" width="8.26001" fill="rgb(219,157,26)" height="15.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1152.88" y="1485.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (0.70%)')" onclick="zoom(this)"><title >-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (0.70%)</title> | |
<rect y="1459.0" rx="2" height="15.0" ry="2" x="1149.88" width="8.26001" fill="rgb(226,44,49)"/> | |
<text x="1152.88" y="1469.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226 (0.70%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226 (0.70%)</title> | |
<rect rx="2" ry="2" width="8.26001" fill="rgb(213,162,36)" x="1149.88" height="15.0" y="1443.0"/> | |
<text y="1453.50" x="1152.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (0.70%)')" onmouseout="c()" class="func_g"><title >-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (0.70%)</title> | |
<rect height="15.0" rx="2" x="1149.88" y="1427.0" fill="rgb(208,186,54)" ry="2" width="8.26001"/> | |
<text y="1437.50" font-size="12" x="1152.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (0.70%)')" onclick="zoom(this)"><title >_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (0.70%)</title> | |
<rect rx="2" fill="rgb(206,19,50)" ry="2" height="15.0" y="1411.0" x="1149.88" width="8.26001"/> | |
<text font-size="12" y="1421.50" x="1152.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (0.70%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (0.70%)</title> | |
<rect x="1149.88" width="8.26001" height="15.0" fill="rgb(215,32,47)" y="1395.0" ry="2" rx="2"/> | |
<text x="1152.88" y="1405.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke (0.70%)')" onmouseout="c()" onclick="zoom(this)"><title >__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke (0.70%)</title> | |
<rect height="15.0" ry="2" rx="2" x="1149.88" width="8.26001" fill="rgb(217,97,33)" y="1379.0"/> | |
<text y="1389.50" x="1152.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] (0.70%)')" class="func_g"><title >-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] (0.70%)</title> | |
<rect y="1363.0" ry="2" fill="rgb(233,124,8)" width="8.26001" x="1149.88" height="15.0" rx="2"/> | |
<text y="1373.50" x="1152.88" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] (0.70%)')" onmouseout="c()" onclick="zoom(this)"><title >-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] (0.70%)</title> | |
<rect y="1347.0" rx="2" width="8.26001" ry="2" x="1149.88" height="15.0" fill="rgb(235,83,19)"/> | |
<text x="1152.88" font-size="12" y="1357.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] (0.70%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] (0.70%)</title> | |
<rect height="15.0" x="1149.88" y="1331.0" width="8.26001" fill="rgb(213,204,51)" rx="2" ry="2"/> | |
<text y="1341.50" x="1152.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke (0.70%)')" onmouseout="c()" onclick="zoom(this)"><title >__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke (0.70%)</title> | |
<rect rx="2" ry="2" height="15.0" y="1315.0" fill="rgb(227,138,42)" width="8.26001" x="1149.88"/> | |
<text y="1325.50" x="1152.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_UIScenePerformActionsWithLifecycleActionMask (0.70%)')"><title >_UIScenePerformActionsWithLifecycleActionMask (0.70%)</title> | |
<rect height="15.0" width="8.26001" rx="2" ry="2" fill="rgb(211,227,5)" x="1149.88" y="1299.0"/> | |
<text font-family="Verdana" x="1152.88" y="1309.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] (0.70%)')" onclick="zoom(this)" class="func_g"><title >-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] (0.70%)</title> | |
<rect x="1149.88" ry="2" width="8.26001" fill="rgb(255,218,37)" y="1283.0" rx="2" height="15.0"/> | |
<text y="1293.50" x="1152.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIApplication _runWithMainScene:transitionContext:completion:] (0.70%)')" onclick="zoom(this)" class="func_g"><title >-[UIApplication _runWithMainScene:transitionContext:completion:] (0.70%)</title> | |
<rect fill="rgb(218,125,3)" height="15.0" x="1149.88" width="8.26001" ry="2" y="1267.0" rx="2"/> | |
<text x="1152.88" y="1277.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] (0.40%)')" class="func_g" onmouseout="c()"><title >-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] (0.40%)</title> | |
<rect y="1251.0" height="15.0" rx="2" width="4.7199707" x="1149.88" fill="rgb(247,125,30)" ry="2"/> | |
<text x="1152.88" y="1261.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIWindow _mainQueue_makeKeyAndVisible] (0.40%)')" onclick="zoom(this)"><title >-[UIWindow _mainQueue_makeKeyAndVisible] (0.40%)</title> | |
<rect ry="2" y="1235.0" rx="2" width="4.7199707" x="1149.88" height="15.0" fill="rgb(241,168,17)"/> | |
<text font-family="Verdana" x="1152.88" font-size="12" y="1245.50"></text> | |
</g> | |
<g onmouseover="s('-[UIWindow _setHidden:forced:] (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIWindow _setHidden:forced:] (0.40%)</title> | |
<rect y="1219.0" rx="2" width="4.7199707" ry="2" height="15.0" fill="rgb(233,78,41)" x="1149.88"/> | |
<text y="1229.50" font-size="12" font-family="Verdana" x="1152.88"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIWindow _updateLayerOrderingAndSetLayerHidden:actionBlock:] (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIWindow _updateLayerOrderingAndSetLayerHidden:actionBlock:] (0.40%)</title> | |
<rect width="4.7199707" height="15.0" x="1149.88" fill="rgb(221,146,24)" y="1203.0" ry="2" rx="2"/> | |
<text font-family="Verdana" y="1213.50" x="1152.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIWindow addRootViewControllerViewIfPossible] (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIWindow addRootViewControllerViewIfPossible] (0.30%)</title> | |
<rect x="1149.88" width="3.540039" rx="2" ry="2" fill="rgb(246,39,54)" y="1187.0" height="15.0"/> | |
<text font-family="Verdana" x="1152.88" y="1197.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[UIViewController view] (0.20%)')" onclick="zoom(this)"><title >-[UIViewController view] (0.20%)</title> | |
<rect rx="2" height="15.0" fill="rgb(206,145,2)" x="1149.88" width="2.3599854" ry="2" y="1171.0"/> | |
<text font-family="Verdana" y="1181.50" font-size="12" x="1152.88"></text> | |
</g> | |
<g onmouseover="s('-[UIViewController loadViewIfRequired] (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[UIViewController loadViewIfRequired] (0.20%)</title> | |
<rect y="1155.0" height="15.0" rx="2" ry="2" x="1149.88" width="2.3599854" fill="rgb(211,188,1)"/> | |
<text font-size="12" x="1152.88" y="1165.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] (0.20%)</title> | |
<rect y="1139.0" height="15.0" rx="2" ry="2" x="1149.88" fill="rgb(229,208,26)" width="2.3599854"/> | |
<text x="1152.88" font-size="12" y="1149.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[FlutterViewController viewDidLoad] (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[FlutterViewController viewDidLoad] (0.20%)</title> | |
<rect x="1149.88" rx="2" ry="2" width="2.3599854" fill="rgb(234,148,15)" y="1123.0" height="15.0"/> | |
<text x="1152.88" y="1133.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[FlutterEngine launchEngine:libraryURI:entrypointArgs:] (0.20%)')" onmouseout="c()" class="func_g"><title >-[FlutterEngine launchEngine:libraryURI:entrypointArgs:] (0.20%)</title> | |
<rect fill="rgb(221,9,38)" height="15.0" width="2.3599854" x="1149.88" y="1107.0" rx="2" ry="2"/> | |
<text y="1117.50" font-size="12" font-family="Verdana" x="1152.88"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::Shell::RunEngine(flutter::RunConfiguration) (0.20%)')"><title >flutter::Shell::RunEngine(flutter::RunConfiguration) (0.20%)</title> | |
<rect width="2.3599854" x="1149.88" height="15.0" rx="2" ry="2" fill="rgb(242,204,35)" y="1091.0"/> | |
<text font-family="Verdana" x="1152.88" y="1101.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::RunEngine(flutter::RunConfiguration, std::_fl::function<void (flutter::Engine::RunStatus)> const&)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::RunEngine(flutter::RunConfiguration, std::_fl::function<void (flutter::Engine::RunStatus)> const&)::$_0>>, void ()>::operator()() (0.20%)')"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::RunEngine(flutter::RunConfiguration, std::_fl::function<void (flutter::Engine::RunStatus)> const&)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::RunEngine(flutter::RunConfiguration, std::_fl::function<void (flutter::Engine::RunStatus)> const&)::$_0>>, void ()>::operator()() (0.20%)</title> | |
<rect rx="2" ry="2" width="2.3599854" y="1075.0" fill="rgb(247,159,21)" height="15.0" x="1149.88"/> | |
<text y="1085.50" font-size="12" x="1152.88" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('flutter::Engine::Run(flutter::RunConfiguration) (0.20%)')"><title >flutter::Engine::Run(flutter::RunConfiguration) (0.20%)</title> | |
<rect rx="2" height="15.0" fill="rgb(248,37,11)" y="1059.0" ry="2" width="2.3599854" x="1149.88"/> | |
<text font-size="12" font-family="Verdana" x="1152.88" y="1069.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DartIsolate::CreateRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, flutter::UIDartState::Context const&, flutter::DartIsolate const*) (0.10%)')" onmouseout="c()"><title >flutter::DartIsolate::CreateRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, flutter::UIDartState::Context const&, flutter::DartIsolate const*) (0.10%)</title> | |
<rect ry="2" fill="rgb(253,155,23)" rx="2" height="15.0" x="1149.88" y="1043.0" width="1.1800537"/> | |
<text y="1053.50" font-size="12" font-family="Verdana" x="1152.88"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DartIsolate::CreateDartIsolateGroup(std::_fl::unique_ptr<std::_fl::shared_ptr<flutter::DartIsolateGroupData>, std::_fl::default_delete<std::_fl::shared_ptr<flutter::DartIsolateGroupData>>>, std::_fl::unique_ptr<std::_fl::shared_ptr<flutter::DartIsolate>, std::_fl::default_delete<std::_fl::shared_ptr<flutter::DartIsolate>>>, Dart_IsolateFlags*, char**, std::_fl::function<_Dart_Isolate* (std::_fl::shared_ptr<flutter::DartIsolateGroupData>*, std::_fl::shared_ptr<flutter::DartIsolate>*, Dart_IsolateFlags*, char**)> const&) (0.10%)')" onmouseout="c()"><title >flutter::DartIsolate::CreateDartIsolateGroup(std::_fl::unique_ptr<std::_fl::shared_ptr<flutter::DartIsolateGroupData>, std::_fl::default_delete<std::_fl::shared_ptr<flutter::DartIsolateGroupData>>>, std::_fl::unique_ptr<std::_fl::shared_ptr<flutter::DartIsolate>, std::_fl::default_delete<std::_fl::shared_ptr<flutter::DartIsolate>>>, Dart_IsolateFlags*, char**, std::_fl::function<_Dart_Isolate* (std::_fl::shared_ptr<flutter::DartIsolateGroupData>*, std::_fl::shared_ptr<flutter::DartIsolate>*, Dart_IsolateFlags*, char**)> const&) (0.10%)</title> | |
<rect width="1.1800537" rx="2" x="1149.88" fill="rgb(228,107,9)" ry="2" y="1027.0" height="15.0"/> | |
<text x="1152.88" font-family="Verdana" font-size="12" y="1037.50"></text> | |
</g> | |
<g onmouseover="s('std::_fl::__function::__func<flutter::DartIsolate::CreateRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, flutter::UIDartState::Context const&, flutter::DartIsolate const*)::$_1, std::_fl::allocator<flutter::DartIsolate::CreateRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, flutter::UIDartState::Context const&, flutter::DartIsolate const*)::$_1>, _Dart_Isolate* (std::_fl::shared_ptr<flutter::DartIsolateGroupData>*, std::_fl::shared_ptr<flutter::DartIsolate>*, Dart_IsolateFlags*, char**)>::operator()(std::_fl::shared_ptr<flutter::DartIsolateGroupData>*&&, std::_fl::shared_ptr<flutter::DartIsolate>*&&, Dart_IsolateFlags*&&, char**&&) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >std::_fl::__function::__func<flutter::DartIsolate::CreateRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, flutter::UIDartState::Context const&, flutter::DartIsolate const*)::$_1, std::_fl::allocator<flutter::DartIsolate::CreateRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, flutter::UIDartState::Context const&, flutter::DartIsolate const*)::$_1>, _Dart_Isolate* (std::_fl::shared_ptr<flutter::DartIsolateGroupData>*, std::_fl::shared_ptr<flutter::DartIsolate>*, Dart_IsolateFlags*, char**)>::operator()(std::_fl::shared_ptr<flutter::DartIsolateGroupData>*&&, std::_fl::shared_ptr<flutter::DartIsolate>*&&, Dart_IsolateFlags*&&, char**&&) (0.10%)</title> | |
<rect ry="2" x="1149.88" rx="2" width="1.1800537" fill="rgb(240,11,1)" y="1011.0" height="15.0"/> | |
<text font-family="Verdana" x="1152.88" font-size="12" y="1021.50"></text> | |
</g> | |
<g onmouseover="s('Dart_CreateIsolateGroup (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Dart_CreateIsolateGroup (0.10%)</title> | |
<rect y="995.0" ry="2" width="1.1800537" height="15.0" rx="2" x="1149.88" fill="rgb(241,100,37)"/> | |
<text x="1152.88" font-size="12" font-family="Verdana" y="1005.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::CreateIsolate(dart::IsolateGroup*, bool, char const*, void*, char**) (0.10%)')"><title >dart::CreateIsolate(dart::IsolateGroup*, bool, char const*, void*, char**) (0.10%)</title> | |
<rect x="1149.88" fill="rgb(231,87,14)" y="979.0" ry="2" height="15.0" rx="2" width="1.1800537"/> | |
<text x="1152.88" y="989.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::Deserializer::Deserialize(dart::DeserializationRoots*) (0.10%)')" onmouseout="c()" class="func_g"><title >dart::Deserializer::Deserialize(dart::DeserializationRoots*) (0.10%)</title> | |
<rect ry="2" x="1149.88" width="1.1800537" height="15.0" fill="rgb(233,120,52)" rx="2" y="963.0"/> | |
<text font-family="Verdana" y="973.50" x="1152.88" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIPresentationController _presentWithAnimationController:inWindow:interactionController:target:didFinish:] (0.10%)')" onmouseout="c()" class="func_g"><title >-[UIPresentationController _presentWithAnimationController:inWindow:interactionController:target:didFinish:] (0.10%)</title> | |
<rect y="1171.0" height="15.0" rx="2" ry="2" x="1152.24" width="1.1800537" fill="rgb(219,135,39)"/> | |
<text font-family="Verdana" y="1181.50" font-size="12" x="1155.24"></text> | |
</g> | |
<g onmouseover="s('-[UIPresentationController runTransitionForCurrentState] (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIPresentationController runTransitionForCurrentState] (0.10%)</title> | |
<rect rx="2" height="15.0" fill="rgb(239,195,42)" x="1152.24" width="1.1800537" ry="2" y="1155.0"/> | |
<text font-family="Verdana" x="1155.24" y="1165.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('+[UIPresentationController _scheduleTransition:] (0.10%)')" onmouseout="c()"><title >+[UIPresentationController _scheduleTransition:] (0.10%)</title> | |
<rect fill="rgb(205,76,2)" height="15.0" width="1.1800537" x="1152.24" y="1139.0" rx="2" ry="2"/> | |
<text font-family="Verdana" y="1149.50" x="1155.24" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('__56-[UIPresentationController runTransitionForCurrentState]_block_invoke_3 (0.10%)')" onclick="zoom(this)"><title >__56-[UIPresentationController runTransitionForCurrentState]_block_invoke_3 (0.10%)</title> | |
<rect y="1123.0" height="15.0" rx="2" ry="2" x="1152.24" fill="rgb(249,116,53)" width="1.1800537"/> | |
<text x="1155.24" y="1133.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIApplication _loadMainInterfaceFile] (0.30%)')" onmouseout="c()" class="func_g"><title >-[UIApplication _loadMainInterfaceFile] (0.30%)</title> | |
<rect y="1251.0" height="15.0" rx="2" ry="2" x="1154.6" width="3.540039" fill="rgb(226,227,6)"/> | |
<text x="1157.60" y="1261.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIApplication _loadMainStoryboardFileNamed:bundle:] (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[UIApplication _loadMainStoryboardFileNamed:bundle:] (0.30%)</title> | |
<rect rx="2" height="15.0" fill="rgb(232,14,17)" x="1154.6" width="3.540039" ry="2" y="1235.0"/> | |
<text font-family="Verdana" x="1157.60" y="1245.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIStoryboard _instantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIStoryboard _instantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)</title> | |
<rect fill="rgb(248,142,35)" height="15.0" width="2.3599854" x="1154.6" y="1219.0" rx="2" ry="2"/> | |
<text font-family="Verdana" x="1157.60" y="1229.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[UIStoryboard __reallyInstantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)')"><title >-[UIStoryboard __reallyInstantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)</title> | |
<rect width="2.3599854" height="15.0" x="1154.6" fill="rgb(227,32,10)" y="1203.0" ry="2" rx="2"/> | |
<text font-family="Verdana" y="1213.50" x="1157.60" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[UINib instantiateWithOwner:options:] (0.20%)')"><title >-[UINib instantiateWithOwner:options:] (0.20%)</title> | |
<rect y="1187.0" width="2.3599854" x="1154.6" height="15.0" ry="2" rx="2" fill="rgb(254,156,13)"/> | |
<text x="1157.60" y="1197.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[FlutterViewController awakeFromNib] (0.20%)')" onmouseout="c()" class="func_g"><title >-[FlutterViewController awakeFromNib] (0.20%)</title> | |
<rect y="1171.0" rx="2" width="2.3599854" ry="2" height="15.0" fill="rgb(207,66,8)" x="1154.6"/> | |
<text y="1181.50" font-size="12" font-family="Verdana" x="1157.60"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[FlutterViewController sharedSetupWithProject:initialRoute:] (0.20%)')" onclick="zoom(this)"><title >-[FlutterViewController sharedSetupWithProject:initialRoute:] (0.20%)</title> | |
<rect y="1155.0" height="15.0" rx="2" ry="2" x="1154.6" fill="rgb(253,76,36)" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" x="1157.60" y="1165.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__94-[FBSWorkspaceScenesClient _queue_updateScene:withSettings:diff:transitionContext:completion:]_block_invoke (0.10%)')"><title >__94-[FBSWorkspaceScenesClient _queue_updateScene:withSettings:diff:transitionContext:completion:]_block_invoke (0.10%)</title> | |
<rect x="1159.32" ry="2" width="1.1800537" fill="rgb(251,124,32)" y="1571.0" rx="2" height="15.0"/> | |
<text font-size="12" y="1581.50" font-family="Verdana" x="1162.32"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (0.10%)')" onclick="zoom(this)"><title >-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (0.10%)</title> | |
<rect y="1555.0" width="1.1800537" x="1159.32" height="15.0" ry="2" rx="2" fill="rgb(233,52,23)"/> | |
<text font-size="12" x="1162.32" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('__94-[FBSWorkspaceScenesClient _queue_updateScene:withSettings:diff:transitionContext:completion:]_block_invoke_2 (0.10%)')" class="func_g"><title >__94-[FBSWorkspaceScenesClient _queue_updateScene:withSettings:diff:transitionContext:completion:]_block_invoke_2 (0.10%)</title> | |
<rect y="1539.0" width="1.1800537" rx="2" fill="rgb(215,140,0)" ry="2" x="1159.32" height="15.0"/> | |
<text x="1162.32" font-size="12" y="1549.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[FBSScene updater:didUpdateSettings:withDiff:transitionContext:completion:] (0.10%)')" onmouseout="c()"><title >-[FBSScene updater:didUpdateSettings:withDiff:transitionContext:completion:] (0.10%)</title> | |
<rect ry="2" y="1523.0" rx="2" height="15.0" width="1.1800537" fill="rgb(218,100,24)" x="1159.32"/> | |
<text font-size="12" font-family="Verdana" x="1162.32" y="1533.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIApplicationSceneClientAgent scene:handleEvent:withCompletion:] (0.10%)')" class="func_g"><title >-[UIApplicationSceneClientAgent scene:handleEvent:withCompletion:] (0.10%)</title> | |
<rect width="1.1800537" x="1159.32" y="1507.0" ry="2" fill="rgb(245,216,41)" height="15.0" rx="2"/> | |
<text x="1162.32" y="1517.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (0.10%)</title> | |
<rect y="1491.0" x="1159.32" width="1.1800537" height="15.0" fill="rgb(236,53,48)" rx="2" ry="2"/> | |
<text x="1162.32" y="1501.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (0.10%)</title> | |
<rect fill="rgb(225,228,23)" ry="2" y="1475.0" width="1.1800537" x="1159.32" rx="2" height="15.0"/> | |
<text font-size="12" x="1162.32" font-family="Verdana" y="1485.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226 (0.10%)')" onclick="zoom(this)"><title >__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226 (0.10%)</title> | |
<rect y="1459.0" rx="2" width="1.1800537" ry="2" x="1159.32" height="15.0" fill="rgb(249,143,48)"/> | |
<text font-size="12" x="1162.32" y="1469.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UIWindowSceneGeometrySettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[_UIWindowSceneGeometrySettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (0.10%)</title> | |
<rect fill="rgb(227,60,1)" x="1159.32" width="1.1800537" y="1443.0" height="15.0" ry="2" rx="2"/> | |
<text y="1453.50" font-family="Verdana" x="1162.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[_UIWindowSceneGeometrySettingsDiffAction _updateSceneGeometryWithSettingObserverContext:windowScene:transitionContext:] (0.10%)')" onmouseout="c()"><title >-[_UIWindowSceneGeometrySettingsDiffAction _updateSceneGeometryWithSettingObserverContext:windowScene:transitionContext:] (0.10%)</title> | |
<rect y="1427.0" height="15.0" rx="2" ry="2" x="1159.32" width="1.1800537" fill="rgb(243,71,45)"/> | |
<text y="1437.50" x="1162.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (0.10%)')"><title >_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (0.10%)</title> | |
<rect rx="2" x="1159.32" y="1411.0" width="1.1800537" fill="rgb(247,18,54)" height="15.0" ry="2"/> | |
<text font-family="Verdana" x="1162.32" y="1421.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (0.10%)')" onmouseout="c()"><title >+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (0.10%)</title> | |
<rect y="1395.0" rx="2" height="15.0" ry="2" x="1159.32" width="1.1800537" fill="rgb(238,0,35)"/> | |
<text font-family="Verdana" font-size="12" x="1162.32" y="1405.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('+[UIView _setupAnimationWithDuration:delay:view:options:factory:animations:start:animationStateGenerator:completion:] (0.10%)')" onclick="zoom(this)" class="func_g"><title >+[UIView _setupAnimationWithDuration:delay:view:options:factory:animations:start:animationStateGenerator:completion:] (0.10%)</title> | |
<rect fill="rgb(238,46,6)" height="15.0" x="1159.32" width="1.1800537" ry="2" y="1379.0" rx="2"/> | |
<text x="1162.32" y="1389.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIWindowScene _computeMetricsAndCrossFadeInLiveResize:withTransitionContext:] (0.10%)')" onmouseout="c()" class="func_g"><title >-[UIWindowScene _computeMetricsAndCrossFadeInLiveResize:withTransitionContext:] (0.10%)</title> | |
<rect fill="rgb(254,84,29)" ry="2" width="1.1800537" height="15.0" rx="2" y="1363.0" x="1159.32"/> | |
<text font-size="12" x="1162.32" font-family="Verdana" y="1373.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[UIWindowScene _computeMetrics:withTransitionContext:] (0.10%)')"><title >-[UIWindowScene _computeMetrics:withTransitionContext:] (0.10%)</title> | |
<rect rx="2" height="15.0" fill="rgb(215,204,52)" x="1159.32" width="1.1800537" ry="2" y="1347.0"/> | |
<text font-size="12" font-family="Verdana" x="1162.32" y="1357.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIWindowScene _computeTraitCollectionAndCoordinateSpaceForcingDelegateCallback:withAction:] (0.10%)')" class="func_g"><title >-[UIWindowScene _computeTraitCollectionAndCoordinateSpaceForcingDelegateCallback:withAction:] (0.10%)</title> | |
<rect width="1.1800537" height="15.0" x="1159.32" ry="2" fill="rgb(238,192,49)" y="1331.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="1341.50" x="1162.32"></text> | |
</g> | |
<g onmouseover="s('__55-[UIWindowScene _computeMetrics:withTransitionContext:]_block_invoke (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >__55-[UIWindowScene _computeMetrics:withTransitionContext:]_block_invoke (0.10%)</title> | |
<rect height="15.0" x="1159.32" y="1315.0" fill="rgb(223,19,17)" width="1.1800537" rx="2" ry="2"/> | |
<text x="1162.32" font-size="12" y="1325.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[UIWindowScene _computeMetricsForWindows:animated:] (0.10%)')" class="func_g"><title >-[UIWindowScene _computeMetricsForWindows:animated:] (0.10%)</title> | |
<rect y="1299.0" x="1159.32" rx="2" height="15.0" width="1.1800537" fill="rgb(214,117,22)" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="1309.50" x="1162.32"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[_UIScenefbsSceneBasedMetricsCalculator _updateMetricsOnWindows:animated:] (0.10%)')"><title >-[_UIScenefbsSceneBasedMetricsCalculator _updateMetricsOnWindows:animated:] (0.10%)</title> | |
<rect rx="2" ry="2" height="15.0" y="1283.0" fill="rgb(242,50,47)" width="1.1800537" x="1159.32"/> | |
<text x="1162.32" font-size="12" y="1293.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIWindow _updateToInterfaceOrientation:duration:force:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIWindow _updateToInterfaceOrientation:duration:force:] (0.10%)</title> | |
<rect height="15.0" width="1.1800537" rx="2" ry="2" fill="rgb(239,132,1)" x="1159.32" y="1267.0"/> | |
<text font-family="Verdana" x="1162.32" y="1277.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('__57-[UIWindow _updateToInterfaceOrientation:duration:force:]_block_invoke (0.10%)')" onclick="zoom(this)"><title >__57-[UIWindow _updateToInterfaceOrientation:duration:force:]_block_invoke (0.10%)</title> | |
<rect width="1.1800537" ry="2" fill="rgb(218,134,36)" rx="2" height="15.0" y="1251.0" x="1159.32"/> | |
<text font-family="Verdana" y="1261.50" x="1162.32" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIWindow _internal_setRotatableViewOrientation:updateStatusBar:duration:force:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIWindow _internal_setRotatableViewOrientation:updateStatusBar:duration:force:] (0.10%)</title> | |
<rect y="1235.0" height="15.0" rx="2" ry="2" x="1159.32" fill="rgb(233,98,3)" width="1.1800537"/> | |
<text x="1162.32" font-size="12" y="1245.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:isRotating:] (0.10%)')"><title >-[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:isRotating:] (0.10%)</title> | |
<rect rx="2" height="15.0" fill="rgb(215,29,33)" y="1219.0" ry="2" width="1.1800537" x="1159.32"/> | |
<text font-size="12" font-family="Verdana" x="1162.32" y="1229.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ (1.10%)')" onclick="zoom(this)"><title >__CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ (1.10%)</title> | |
<rect ry="2" y="1699.0" x="1161.68" width="12.97998" height="15.0" fill="rgb(205,163,46)" rx="2"/> | |
<text x="1164.68" font-size="12" font-family="Verdana" y="1709.50"></text> | |
</g> | |
<g onmouseover="s('_dispatch_main_queue_callback_4CF (1.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_dispatch_main_queue_callback_4CF (1.10%)</title> | |
<rect fill="rgb(248,210,30)" rx="2" ry="2" x="1161.68" width="12.97998" y="1683.0" height="15.0"/> | |
<text y="1693.50" font-family="Verdana" font-size="12" x="1164.68"></text> | |
</g> | |
<g onmouseover="s('_dispatch_main_queue_drain (1.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_dispatch_main_queue_drain (1.10%)</title> | |
<rect y="1667.0" ry="2" width="12.97998" x="1161.68" rx="2" height="15.0" fill="rgb(226,170,7)"/> | |
<text font-family="Verdana" x="1164.68" font-size="12" y="1677.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_dispatch_client_callout (1.10%)')" class="func_g" onmouseout="c()"><title >_dispatch_client_callout (1.10%)</title> | |
<rect fill="rgb(236,157,40)" x="1161.68" y="1651.0" height="15.0" rx="2" ry="2" width="12.97998"/> | |
<text y="1661.50" font-size="12" x="1164.68" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_dispatch_call_block_and_release (1.00%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_dispatch_call_block_and_release (1.00%)</title> | |
<rect height="15.0" x="1161.68" width="11.800049" fill="rgb(223,1,17)" rx="2" ry="2" y="1635.0"/> | |
<text font-size="12" y="1645.50" font-family="Verdana" x="1164.68"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (1.00%)')"><title >invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (1.00%)</title> | |
<rect width="11.800049" fill="rgb(212,46,55)" rx="2" x="1161.68" y="1619.0" height="15.0" ry="2"/> | |
<text y="1629.50" font-family="Verdana" font-size="12" x="1164.68"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('__45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke (1.00%)')"><title >__45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke (1.00%)</title> | |
<rect x="1161.68" y="1603.0" height="15.0" fill="rgb(236,99,45)" ry="2" rx="2" width="11.800049"/> | |
<text y="1613.50" font-size="12" x="1164.68" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('specialized SwiftAudioplayersDarwinPlugin.handle(_:result:) (0.70%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >specialized SwiftAudioplayersDarwinPlugin.handle(_:result:) (0.70%)</title> | |
<rect x="1161.68" ry="2" width="8.26001" fill="rgb(243,67,41)" y="1587.0" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1164.68" y="1597.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('specialized SwiftAudioplayersDarwinPlugin.handle(_:result:) (0.60%)')"><title >specialized SwiftAudioplayersDarwinPlugin.handle(_:result:) (0.60%)</title> | |
<rect y="1571.0" width="7.079956" x="1161.68" height="15.0" ry="2" rx="2" fill="rgb(236,56,15)"/> | |
<text font-size="12" y="1581.50" font-family="Verdana" x="1164.68"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('swift_dynamicCast (0.20%)')" onclick="zoom(this)"><title >swift_dynamicCast (0.20%)</title> | |
<rect y="1555.0" ry="2" fill="rgb(225,98,16)" rx="2" width="2.3599854" height="15.0" x="1161.68"/> | |
<text font-size="12" x="1164.68" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('tryCast(swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::TargetMetadata<swift::InProcess> const*&, swift::TargetMetadata<swift::InProcess> const*&, bool, bool) (0.20%)')" onmouseout="c()" class="func_g"><title >tryCast(swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::TargetMetadata<swift::InProcess> const*&, swift::TargetMetadata<swift::InProcess> const*&, bool, bool) (0.20%)</title> | |
<rect y="1539.0" width="2.3599854" rx="2" fill="rgb(217,17,16)" ry="2" x="1161.68" height="15.0"/> | |
<text y="1549.50" x="1164.68" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('tryCast(swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::TargetMetadata<swift::InProcess> const*&, swift::TargetMetadata<swift::InProcess> const*&, bool, bool) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >tryCast(swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::TargetMetadata<swift::InProcess> const*&, swift::TargetMetadata<swift::InProcess> const*&, bool, bool) (0.20%)</title> | |
<rect ry="2" y="1523.0" rx="2" height="15.0" width="2.3599854" fill="rgb(244,197,20)" x="1161.68"/> | |
<text x="1164.68" y="1533.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_tryCastFromClassToObjCBridgeable(swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, void*, swift::TargetMetadata<swift::InProcess> const*&, swift::TargetMetadata<swift::InProcess> const*&, bool, bool, _ObjectiveCBridgeableWitnessTable const*, swift::TargetMetadata<swift::InProcess> const*) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_tryCastFromClassToObjCBridgeable(swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, swift::OpaqueValue*, swift::TargetMetadata<swift::InProcess> const*, void*, swift::TargetMetadata<swift::InProcess> const*&, swift::TargetMetadata<swift::InProcess> const*&, bool, bool, _ObjectiveCBridgeableWitnessTable const*, swift::TargetMetadata<swift::InProcess> const*) (0.10%)</title> | |
<rect width="1.1800537" x="1161.68" y="1507.0" ry="2" fill="rgb(254,222,34)" height="15.0" rx="2"/> | |
<text x="1164.68" font-size="12" y="1517.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('static Dictionary._conditionallyBridgeFromObjectiveC(_:result:) (0.10%)')" onclick="zoom(this)"><title >static Dictionary._conditionallyBridgeFromObjectiveC(_:result:) (0.10%)</title> | |
<rect y="1491.0" x="1161.68" width="1.1800537" height="15.0" fill="rgb(213,218,12)" rx="2" ry="2"/> | |
<text font-size="12" x="1164.68" y="1501.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('WrappedMediaPlayer.getCurrentPosition() (0.10%)')" onclick="zoom(this)"><title >WrappedMediaPlayer.getCurrentPosition() (0.10%)</title> | |
<rect y="1555.0" ry="2" fill="rgb(221,103,55)" rx="2" width="1.1800537" height="15.0" x="1164.04"/> | |
<text font-size="12" x="1167.04" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('WrappedMediaPlayer.getCurrentCMTime() (0.10%)')" class="func_g"><title >WrappedMediaPlayer.getCurrentCMTime() (0.10%)</title> | |
<rect y="1539.0" width="1.1800537" rx="2" fill="rgb(218,44,52)" ry="2" x="1164.04" height="15.0"/> | |
<text x="1167.04" font-size="12" y="1549.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[AVPlayerItem currentTime] (0.10%)')" onclick="zoom(this)"><title >-[AVPlayerItem currentTime] (0.10%)</title> | |
<rect ry="2" y="1523.0" rx="2" height="15.0" width="1.1800537" fill="rgb(244,222,44)" x="1164.04"/> | |
<text font-size="12" font-family="Verdana" x="1167.04" y="1533.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[AVPlayerItem _currentTimeWithOptionalFoldedTimebase:] (0.10%)')" onclick="zoom(this)"><title >-[AVPlayerItem _currentTimeWithOptionalFoldedTimebase:] (0.10%)</title> | |
<rect width="1.1800537" x="1164.04" y="1507.0" ry="2" fill="rgb(214,16,52)" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="1167.04" y="1517.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('itemasync_GetCurrentTime (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >itemasync_GetCurrentTime (0.10%)</title> | |
<rect y="1491.0" x="1164.04" width="1.1800537" height="15.0" fill="rgb(255,58,19)" rx="2" ry="2"/> | |
<text x="1167.04" font-size="12" y="1501.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('remoteXPCItem_GetCurrentTime (0.10%)')" onclick="zoom(this)"><title >remoteXPCItem_GetCurrentTime (0.10%)</title> | |
<rect fill="rgb(207,165,35)" ry="2" y="1475.0" width="1.1800537" x="1164.04" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1167.04" y="1485.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CMTimebaseGetTimeClampedAboveAnchorTime (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >CMTimebaseGetTimeClampedAboveAnchorTime (0.10%)</title> | |
<rect y="1459.0" rx="2" width="1.1800537" ry="2" x="1164.04" height="15.0" fill="rgb(255,52,23)"/> | |
<text y="1469.50" font-family="Verdana" x="1167.04" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('__45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke_2 (0.10%)')" onclick="zoom(this)"><title >__45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke_2 (0.10%)</title> | |
<rect y="1555.0" ry="2" fill="rgb(213,153,49)" rx="2" width="1.1800537" height="15.0" x="1165.2201"/> | |
<text font-size="12" x="1168.22" y="1565.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[FlutterStandardMethodCodec decodeMethodCall:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[FlutterStandardMethodCodec decodeMethodCall:] (0.10%)</title> | |
<rect x="1169.9401" ry="2" width="1.1800537" fill="rgb(214,149,34)" y="1587.0" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1172.94" y="1597.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ReadValue(void const*) (0.10%)')"><title >ReadValue(void const*) (0.10%)</title> | |
<rect y="1571.0" width="1.1800537" x="1169.9401" height="15.0" ry="2" rx="2" fill="rgb(216,75,51)"/> | |
<text font-size="12" y="1581.50" font-family="Verdana" x="1172.94"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__CFRunLoopDoObservers (0.10%)')" onclick="zoom(this)"><title >__CFRunLoopDoObservers (0.10%)</title> | |
<rect ry="2" y="1699.0" x="1174.66" width="1.1800537" height="15.0" fill="rgb(226,117,16)" rx="2"/> | |
<text x="1177.66" font-size="12" font-family="Verdana" y="1709.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__CFRunLoopPerCalloutARPEnd (0.10%)')" onclick="zoom(this)"><title >__CFRunLoopPerCalloutARPEnd (0.10%)</title> | |
<rect ry="2" y="1699.0" x="1175.8401" width="1.1800537" height="15.0" fill="rgb(217,175,55)" rx="2"/> | |
<text x="1178.84" font-size="12" font-family="Verdana" y="1709.50"></text> | |
</g> | |
<g onmouseover="s('_CFAutoreleasePoolPop (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_CFAutoreleasePoolPop (0.10%)</title> | |
<rect fill="rgb(241,20,30)" rx="2" ry="2" x="1175.8401" width="1.1800537" y="1683.0" height="15.0"/> | |
<text y="1693.50" font-family="Verdana" font-size="12" x="1178.84"></text> | |
</g> | |
<g onmouseover="s('objc_autoreleasePoolPop (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >objc_autoreleasePoolPop (0.10%)</title> | |
<rect y="1667.0" ry="2" width="1.1800537" x="1175.8401" rx="2" height="15.0" fill="rgb(211,88,0)"/> | |
<text font-family="Verdana" x="1178.84" font-size="12" y="1677.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('AutoreleasePoolPage::releaseUntil(objc_object**) (0.10%)')" class="func_g" onmouseout="c()"><title >AutoreleasePoolPage::releaseUntil(objc_object**) (0.10%)</title> | |
<rect fill="rgb(210,228,13)" x="1175.8401" y="1651.0" height="15.0" rx="2" ry="2" width="1.1800537"/> | |
<text y="1661.50" font-size="12" x="1178.84" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*) (0.60%)')" class="func_g" onclick="zoom(this)"><title >dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*) (0.60%)</title> | |
<rect ry="2" y="1843.0" x="1181.74" width="7.079956" height="15.0" fill="rgb(239,149,31)" rx="2"/> | |
<text x="1184.74" font-family="Verdana" font-size="12" y="1853.50"></text> | |
</g> | |
<g onmouseover="s('dyld4::PrebuiltLoaderSet::makeLaunchSet(Diagnostics&, dyld4::RuntimeState&, dyld4::MissingPaths const&) (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dyld4::PrebuiltLoaderSet::makeLaunchSet(Diagnostics&, dyld4::RuntimeState&, dyld4::MissingPaths const&) (0.20%)</title> | |
<rect fill="rgb(242,118,37)" rx="2" ry="2" x="1181.74" width="2.3599854" y="1827.0" height="15.0"/> | |
<text x="1184.74" y="1837.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('dyld4::PrebuiltObjC::make(Diagnostics&, dyld4::RuntimeState&) (0.10%)')"><title >dyld4::PrebuiltObjC::make(Diagnostics&, dyld4::RuntimeState&) (0.10%)</title> | |
<rect y="1811.0" ry="2" width="1.1800537" x="1181.74" rx="2" height="15.0" fill="rgb(251,140,1)"/> | |
<text font-size="12" y="1821.50" x="1184.74" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('dyld4::PrebuiltLoader::serialize(Diagnostics&, dyld4::RuntimeState&, dyld4::JustInTimeLoader const&, dyld4::Loader::LoaderRef, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, dyld4::PrebuiltObjC const&, dyld4::PrebuiltSwift const&, dyld4::BumpAllocator&) (0.10%)')"><title >dyld4::PrebuiltLoader::serialize(Diagnostics&, dyld4::RuntimeState&, dyld4::JustInTimeLoader const&, dyld4::Loader::LoaderRef, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, dyld4::PrebuiltObjC const&, dyld4::PrebuiltSwift const&, dyld4::BumpAllocator&) (0.10%)</title> | |
<rect y="1811.0" ry="2" width="1.1800537" x="1182.92" rx="2" height="15.0" fill="rgb(212,130,42)"/> | |
<text font-size="12" y="1821.50" x="1185.92" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)')"><title >dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)</title> | |
<rect fill="rgb(222,162,50)" x="1182.92" y="1795.0" height="15.0" rx="2" ry="2" width="1.1800537"/> | |
<text font-size="12" x="1185.92" font-family="Verdana" y="1805.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)')" class="func_g"><title >dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)</title> | |
<rect height="15.0" x="1182.92" width="1.1800537" fill="rgb(223,52,46)" rx="2" ry="2" y="1779.0"/> | |
<text y="1789.50" font-size="12" font-family="Verdana" x="1185.92"></text> | |
</g> | |
<g class="func_g" onmouseover="s('invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)</title> | |
<rect x="1182.92" y="1763.0" height="15.0" fill="rgb(244,36,38)" ry="2" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" x="1185.92" font-size="12" y="1773.50"></text> | |
</g> | |
<g onmouseover="s('mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&, bool, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&, bool, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)</title> | |
<rect y="1747.0" width="1.1800537" x="1182.92" height="15.0" ry="2" rx="2" fill="rgb(214,17,9)"/> | |
<text y="1757.50" font-family="Verdana" font-size="12" x="1185.92"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_o::Fixups::forEachBindUnified_Opcodes(Diagnostics&, bool, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)')" onmouseout="c()" class="func_g"><title >mach_o::Fixups::forEachBindUnified_Opcodes(Diagnostics&, bool, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)</title> | |
<rect y="1731.0" ry="2" fill="rgb(227,202,1)" rx="2" width="1.1800537" height="15.0" x="1182.92"/> | |
<text font-size="12" y="1741.50" x="1185.92" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dyld4::APIs::runAllInitializersForMain() (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dyld4::APIs::runAllInitializersForMain() (0.10%)</title> | |
<rect fill="rgb(230,147,15)" rx="2" ry="2" x="1184.1" width="1.1800537" y="1827.0" height="15.0"/> | |
<text x="1187.10" y="1837.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dyld4::JustInTimeLoader::applyFixups(Diagnostics&, dyld4::RuntimeState&, dyld4::DyldCacheDataConstLazyScopedWriter&, bool) const (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dyld4::JustInTimeLoader::applyFixups(Diagnostics&, dyld4::RuntimeState&, dyld4::DyldCacheDataConstLazyScopedWriter&, bool) const (0.10%)</title> | |
<rect fill="rgb(241,90,25)" rx="2" ry="2" x="1185.28" width="1.1800537" y="1827.0" height="15.0"/> | |
<text x="1188.28" y="1837.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)')"><title >dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)</title> | |
<rect y="1811.0" ry="2" width="1.1800537" x="1185.28" rx="2" height="15.0" fill="rgb(249,25,38)"/> | |
<text font-size="12" y="1821.50" x="1188.28" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)')"><title >dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)</title> | |
<rect fill="rgb(234,71,17)" x="1185.28" y="1795.0" height="15.0" rx="2" ry="2" width="1.1800537"/> | |
<text font-size="12" x="1188.28" font-family="Verdana" y="1805.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)')" class="func_g"><title >invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&, dyld4::RuntimeState&, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer, void (dyld4::Loader::ResolvedSymbol const&, bool&) block_pointer) const (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(235,3,4)" rx="2" x="1185.28" y="1779.0" height="15.0" ry="2"/> | |
<text y="1789.50" font-size="12" font-family="Verdana" x="1188.28"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&, bool, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)')"><title >mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&, bool, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)</title> | |
<rect y="1763.0" width="1.1800537" x="1185.28" height="15.0" ry="2" rx="2" fill="rgb(228,134,18)"/> | |
<text font-family="Verdana" x="1188.28" font-size="12" y="1773.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_o::Fixups::forEachBindUnified_Opcodes(Diagnostics&, bool, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)')" onmouseout="c()" class="func_g"><title >mach_o::Fixups::forEachBindUnified_Opcodes(Diagnostics&, bool, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)</title> | |
<rect x="1185.28" ry="2" width="1.1800537" fill="rgb(221,148,45)" y="1747.0" rx="2" height="15.0"/> | |
<text font-size="12" y="1757.50" x="1188.28" font-family="Verdana"></text> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment