Created
October 23, 2024 20:17
-
-
Save jonahwilliams/ab8ae105a8950635502434434b891bd9 to your computer and use it in GitHub Desktop.
very large picture scrolling UI thread
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="5046" onload="init(evt)" viewBox="0 0 1200 5046" 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" height="5046.0" width="1200.0" x="0.0" y="0.0" fill="url(#background)" rx="2"/> | |
<text id="title" font-family="Verdana" text-anchor="middle" x="600.00" y="24.0" font-size="12" fill="rgb(0,0,0)">Flame Chart</text> | |
<text id="details" font-family="Verdana" text-anchor="" x="10.00" y="5012.0" font-size="12" fill="rgb(0,0,0)"> </text> | |
<text id="unzoom" font-family="Verdana" text-anchor="" x="10.00" y="24.0" font-size="12" fill="rgb(0,0,0)" onclick="unzoom()" style="opacity:0.0;cursor:pointer">Reset Zoom</text> | |
<text font-size="12" font-family="Verdana" onmouseover="searchover()" onclick="search_prompt()" onmouseout="searchout()" id="search" x="1090.00" fill="rgb(0,0,0)" text-anchor="" style="opacity:0.1;cursor:pointer" y="24.0">Search</text> | |
<text id="ignorecase" font-family="Verdana" text-anchor="" x="1174.00" y="24.0" font-size="12" fill="rgb(0,0,0)">ic</text> | |
<text id="matched" font-family="Verdana" text-anchor="" x="1090.00" y="5029.0" font-size="12" fill="rgb(0,0,0)"> </text> | |
<g onmouseover="s('Runner (1646) (100.00%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Runner (1646) (100.00%)</title> | |
<rect ry="2" height="15.0" width="1180.0" x="10.0" y="4963.0" fill="rgb(213,139,11)" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="4973.50">Runner (1646)</text> | |
</g> | |
<g onmouseover="s('start (99.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >start (99.50%)</title> | |
<rect height="15.0" fill="rgb(224,22,9)" rx="2" ry="2" width="1174.1" y="4947.0" x="10.0"/> | |
<text x="13.00" y="4957.50" font-family="Verdana" font-size="12">start</text> | |
</g> | |
<g onmouseover="s('main (98.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >main (98.20%)</title> | |
<rect y="4931.0" ry="2" width="1158.76" rx="2" height="15.0" x="10.0" fill="rgb(226,205,49)"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="4941.50">main</text> | |
</g> | |
<g onmouseover="s('UIApplicationMain (98.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >UIApplicationMain (98.20%)</title> | |
<rect height="15.0" x="10.0" width="1158.76" fill="rgb(219,206,55)" rx="2" ry="2" y="4915.0"/> | |
<text x="13.00" y="4925.50" font-size="12" font-family="Verdana">UIApplicationMain</text> | |
</g> | |
<g onmouseover="s('-[UIApplication _run] (98.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIApplication _run] (98.10%)</title> | |
<rect rx="2" height="15.0" fill="rgb(223,1,4)" ry="2" x="10.0" y="4899.0" width="1157.58"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="4909.50">-[UIApplication _run]</text> | |
</g> | |
<g onmouseover="s('GSEventRunModal (98.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >GSEventRunModal (98.10%)</title> | |
<rect rx="2" x="10.0" fill="rgb(240,167,1)" width="1157.58" height="15.0" ry="2" y="4883.0"/> | |
<text y="4893.50" x="13.00" font-family="Verdana" font-size="12">GSEventRunModal</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('CFRunLoopRunSpecific (98.10%)')" class="func_g" onmouseout="c()"><title >CFRunLoopRunSpecific (98.10%)</title> | |
<rect y="4867.0" height="15.0" fill="rgb(244,57,16)" width="1157.58" ry="2" rx="2" x="10.0"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="4877.50">CFRunLoopRunSpecific</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('__CFRunLoopRun (98.10%)')" class="func_g"><title >__CFRunLoopRun (98.10%)</title> | |
<rect y="4851.0" ry="2" rx="2" x="10.0" width="1157.58" height="15.0" fill="rgb(217,14,55)"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="4861.50">__CFRunLoopRun</text> | |
</g> | |
<g class="func_g" onmouseover="s('__CFRunLoopDoTimers (93.40%)')" onmouseout="c()" onclick="zoom(this)"><title >__CFRunLoopDoTimers (93.40%)</title> | |
<rect fill="rgb(231,187,24)" width="1102.12" height="15.0" x="10.0" ry="2" rx="2" y="4835.0"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="4845.50">__CFRunLoopDoTimers</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('__CFRunLoopDoTimer (93.30%)')" class="func_g"><title >__CFRunLoopDoTimer (93.30%)</title> | |
<rect ry="2" rx="2" y="4819.0" width="1100.94" fill="rgb(241,197,13)" height="15.0" x="10.0"/> | |
<text y="4829.50" x="13.00" font-size="12" font-family="Verdana">__CFRunLoopDoTimer</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ (93.30%)')"><title >__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ (93.30%)</title> | |
<rect ry="2" fill="rgb(240,211,35)" y="4803.0" height="15.0" x="10.0" width="1100.94" rx="2"/> | |
<text x="13.00" y="4813.50" font-size="12" font-family="Verdana">__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (93.30%)')"><title >fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (93.30%)</title> | |
<rect y="4787.0" x="10.0" height="15.0" width="1100.94" rx="2" fill="rgb(218,214,35)" ry="2"/> | |
<text x="13.00" y="4797.50" font-family="Verdana" font-size="12">fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*)</text> | |
</g> | |
<g onmouseover="s('fml::MessageLoopImpl::FlushTasks(fml::FlushType) (93.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >fml::MessageLoopImpl::FlushTasks(fml::FlushType) (93.30%)</title> | |
<rect y="4771.0" height="15.0" fill="rgb(246,119,42)" width="1100.94" x="10.0" ry="2" rx="2"/> | |
<text x="13.00" font-size="12" y="4781.50" font-family="Verdana">fml::MessageLoopImpl::FlushTasks(fml::FlushType)</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_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()() (91.90%)')"><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()() (91.90%)</title> | |
<rect rx="2" y="4755.0" height="15.0" x="10.0" fill="rgb(246,108,23)" width="1084.4199" ry="2"/> | |
<text font-size="12" x="13.00" y="4765.50" font-family="Verdana">std::_fl::__function::__func<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0, std::_fl::allocator<flutter::VsyncWaiter::F..</text> | |
</g> | |
<g class="func_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>>&&) (91.80%)')" 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>>&&) (91.80%)</title> | |
<rect ry="2" rx="2" x="10.0" width="1083.2399" fill="rgb(219,13,25)" y="4739.0" height="15.0"/> | |
<text font-family="Verdana" x="13.00" y="4749.50" font-size="12">std::_fl::__function::__func<flutter::Animator::AwaitVSync()::$_0, std::_fl::allocator<flutter::Animator::AwaitVSync()::$_0>, void (std::_fl::unique_p..</text> | |
</g> | |
<g onmouseover="s('flutter::Animator::BeginFrame(std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>) (91.80%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::Animator::BeginFrame(std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>) (91.80%)</title> | |
<rect fill="rgb(228,52,49)" x="10.0" width="1083.2399" ry="2" rx="2" height="15.0" y="4723.0"/> | |
<text font-size="12" y="4733.50" font-family="Verdana" x="13.00">flutter::Animator::BeginFrame(std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>)</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::RuntimeController::BeginFrame(fml::TimePoint, unsigned long long) (91.70%)')" class="func_g"><title >flutter::RuntimeController::BeginFrame(fml::TimePoint, unsigned long long) (91.70%)</title> | |
<rect width="1082.0598" height="15.0" x="10.0" fill="rgb(236,9,52)" y="4707.0" ry="2" rx="2"/> | |
<text y="4717.50" x="13.00" font-size="12" font-family="Verdana">flutter::RuntimeController::BeginFrame(fml::TimePoint, unsigned long long)</text> | |
</g> | |
<g onmouseover="s('flutter::PlatformConfiguration::BeginFrame(fml::TimePoint, unsigned long long) (91.70%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::PlatformConfiguration::BeginFrame(fml::TimePoint, unsigned long long) (91.70%)</title> | |
<rect y="4691.0" x="10.0" rx="2" ry="2" height="15.0" fill="rgb(211,228,31)" width="1082.0598"/> | |
<text y="4701.50" font-size="12" font-family="Verdana" x="13.00">flutter::PlatformConfiguration::BeginFrame(fml::TimePoint, unsigned long long)</text> | |
</g> | |
<g onmouseover="s('tonic::DartInvokeVoid(_Dart_Handle*) (91.00%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >tonic::DartInvokeVoid(_Dart_Handle*) (91.00%)</title> | |
<rect x="10.0" ry="2" height="15.0" y="4675.0" fill="rgb(207,133,8)" width="1073.7999" rx="2"/> | |
<text x="13.00" font-size="12" y="4685.50" font-family="Verdana">tonic::DartInvokeVoid(_Dart_Handle*)</text> | |
</g> | |
<g onmouseover="s('Dart_InvokeClosure (90.90%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Dart_InvokeClosure (90.90%)</title> | |
<rect rx="2" fill="rgb(207,83,48)" height="15.0" y="4659.0" width="1072.62" ry="2" x="10.0"/> | |
<text x="13.00" y="4669.50" font-size="12" font-family="Verdana">Dart_InvokeClosure</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&) (90.90%)')"><title >dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&) (90.90%)</title> | |
<rect ry="2" y="4643.0" rx="2" x="10.0" width="1072.62" height="15.0" fill="rgb(233,206,23)"/> | |
<text y="4653.50" x="13.00" font-size="12" font-family="Verdana">dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&)</text> | |
</g> | |
<g onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (90.90%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (90.90%)</title> | |
<rect ry="2" y="4627.0" width="1072.62" x="10.0" fill="rgb(209,208,4)" height="15.0" rx="2"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="4637.50">dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&)</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('stub InvokeDartCode (90.90%)')" onmouseout="c()"><title >stub InvokeDartCode (90.90%)</title> | |
<rect width="1072.62" fill="rgb(205,192,1)" rx="2" ry="2" x="10.0" y="4611.0" height="15.0"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="4621.50">stub InvokeDartCode</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('drawFrame (#2) (90.90%)')" class="func_g" onclick="zoom(this)"><title >drawFrame (#2) (90.90%)</title> | |
<rect x="10.0" ry="2" y="4595.0" width="1072.62" fill="rgb(230,52,22)" rx="2" height="15.0"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="4605.50">drawFrame (#2)</text> | |
</g> | |
<g onmouseover="s('drawFrame (90.90%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >drawFrame (90.90%)</title> | |
<rect x="10.0" ry="2" fill="rgb(255,225,32)" rx="2" height="15.0" width="1072.62" y="4579.0"/> | |
<text font-size="12" x="13.00" y="4589.50" font-family="Verdana">drawFrame</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('PlatformDispatcher._drawFrame (90.90%)')"><title >PlatformDispatcher._drawFrame (90.90%)</title> | |
<rect x="10.0" ry="2" width="1072.62" height="15.0" fill="rgb(246,124,31)" y="4563.0" rx="2"/> | |
<text font-size="12" y="4573.50" font-family="Verdana" x="13.00">PlatformDispatcher._drawFrame</text> | |
</g> | |
<g onmouseover="s('invoke (90.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >invoke (90.90%)</title> | |
<rect height="15.0" fill="rgb(220,145,38)" x="10.0" rx="2" ry="2" y="4547.0" width="1072.62"/> | |
<text y="4557.50" x="13.00" font-size="12" font-family="Verdana">invoke</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SchedulerBinding._handleDrawFrame (90.90%)')" onclick="zoom(this)" class="func_g"><title >SchedulerBinding._handleDrawFrame (90.90%)</title> | |
<rect ry="2" y="4531.0" height="15.0" fill="rgb(227,204,39)" rx="2" x="10.0" width="1072.62"/> | |
<text y="4541.50" font-family="Verdana" x="13.00" font-size="12">SchedulerBinding._handleDrawFrame</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('SchedulerBinding._handleDrawFrame (#2) (90.90%)')" onclick="zoom(this)"><title >SchedulerBinding._handleDrawFrame (#2) (90.90%)</title> | |
<rect rx="2" fill="rgb(211,40,54)" width="1072.62" y="4515.0" x="10.0" height="15.0" ry="2"/> | |
<text x="13.00" y="4525.50" font-size="12" font-family="Verdana">SchedulerBinding._handleDrawFrame (#2)</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SchedulerBinding.handleDrawFrame (90.90%)')" onclick="zoom(this)" class="func_g"><title >SchedulerBinding.handleDrawFrame (90.90%)</title> | |
<rect rx="2" x="10.0" ry="2" fill="rgb(220,4,35)" y="4499.0" height="15.0" width="1072.62"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="4509.50">SchedulerBinding.handleDrawFrame</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SchedulerBinding._invokeFrameCallback (90.90%)')" class="func_g" onclick="zoom(this)"><title >SchedulerBinding._invokeFrameCallback (90.90%)</title> | |
<rect fill="rgb(241,126,43)" ry="2" width="1072.62" rx="2" y="4483.0" height="15.0" x="10.0"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="4493.50">SchedulerBinding._invokeFrameCallback</text> | |
</g> | |
<g onmouseover="s('RendererBinding._handlePersistentFrameCallback (90.70%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RendererBinding._handlePersistentFrameCallback (90.70%)</title> | |
<rect y="4467.0" width="1070.26" height="15.0" fill="rgb(232,99,25)" rx="2" ry="2" x="10.0"/> | |
<text y="4477.50" font-family="Verdana" font-size="12" x="13.00">RendererBinding._handlePersistentFrameCallback</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RendererBinding._handlePersistentFrameCallback (#2) (90.70%)')"><title >RendererBinding._handlePersistentFrameCallback (#2) (90.70%)</title> | |
<rect width="1070.26" height="15.0" fill="rgb(252,105,28)" y="4451.0" ry="2" rx="2" x="10.0"/> | |
<text y="4461.50" font-size="12" font-family="Verdana" x="13.00">RendererBinding._handlePersistentFrameCallback (#2)</text> | |
</g> | |
<g onmouseover="s('WidgetsBinding.drawFrame (90.70%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >WidgetsBinding.drawFrame (90.70%)</title> | |
<rect height="15.0" fill="rgb(235,11,0)" rx="2" ry="2" y="4435.0" width="1070.26" x="10.0"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="4445.50">WidgetsBinding.drawFrame</text> | |
</g> | |
<g onmouseover="s('RendererBinding.drawFrame (88.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RendererBinding.drawFrame (88.30%)</title> | |
<rect y="4419.0" width="1041.9401" rx="2" x="10.0" height="15.0" fill="rgb(255,17,29)" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="4429.50" x="13.00">RendererBinding.drawFrame</text> | |
</g> | |
<g onmouseover="s('PipelineOwner.flushPaint (85.00%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >PipelineOwner.flushPaint (85.00%)</title> | |
<rect width="1003.00006" x="10.0" y="4403.0" height="15.0" ry="2" fill="rgb(246,35,49)" rx="2"/> | |
<text x="13.00" font-family="Verdana" y="4413.50" font-size="12">PipelineOwner.flushPaint</text> | |
</g> | |
<g class="func_g" onmouseover="s('PipelineOwner.flushPaint (85.00%)')" onmouseout="c()" onclick="zoom(this)"><title >PipelineOwner.flushPaint (85.00%)</title> | |
<rect height="15.0" fill="rgb(255,188,9)" ry="2" rx="2" width="1003.0001" x="10.0" y="4387.0"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="4397.50">PipelineOwner.flushPaint</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.repaintCompositedChild (85.00%)')"><title >PaintingContext.repaintCompositedChild (85.00%)</title> | |
<rect ry="2" x="10.0" y="4371.0" fill="rgb(210,16,0)" width="1003.0001" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="4381.50" x="13.00">PaintingContext.repaintCompositedChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext._repaintCompositedChild (85.00%)')" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext._repaintCompositedChild (85.00%)</title> | |
<rect y="4355.0" x="10.0" fill="rgb(219,184,24)" ry="2" width="1003.0001" height="15.0" rx="2"/> | |
<text font-size="12" x="13.00" y="4365.50" font-family="Verdana">PaintingContext._repaintCompositedChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (84.70%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject._paintWithContext (84.70%)</title> | |
<rect width="999.4601" fill="rgb(224,1,52)" height="15.0" rx="2" x="10.0" y="4339.0" ry="2"/> | |
<text font-family="Verdana" y="4349.50" font-size="12" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderView.paint (83.20%)')"><title >RenderView.paint (83.20%)</title> | |
<rect fill="rgb(249,67,4)" y="4323.0" ry="2" x="10.0" height="15.0" width="981.76013" rx="2"/> | |
<text y="4333.50" x="13.00" font-size="12" font-family="Verdana">RenderView.paint</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (83.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect y="4307.0" height="15.0" rx="2" width="981.76013" ry="2" fill="rgb(235,173,27)" x="10.0"/> | |
<text y="4317.50" font-family="Verdana" font-size="12" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (83.20%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect width="981.76013" ry="2" x="10.0" height="15.0" y="4291.0" fill="rgb(250,130,38)" rx="2"/> | |
<text font-size="12" x="13.00" y="4301.50" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect width="981.76013" fill="rgb(241,203,9)" rx="2" ry="2" x="10.0" y="4275.0" height="15.0"/> | |
<text y="4285.50" x="13.00" font-size="12" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.20%)')" class="func_g"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect y="4259.0" fill="rgb(213,27,38)" x="10.0" height="15.0" ry="2" width="981.76013" rx="2"/> | |
<text y="4269.50" x="13.00" font-family="Verdana" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject._paintWithContext (83.20%)')"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect fill="rgb(213,31,0)" width="981.76013" ry="2" x="10.0" y="4243.0" height="15.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="4253.50">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect width="981.76013" ry="2" rx="2" y="4227.0" height="15.0" x="10.0" fill="rgb(221,154,55)"/> | |
<text y="4237.50" font-family="Verdana" font-size="12" x="13.00">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (83.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect width="981.76013" height="15.0" rx="2" fill="rgb(229,173,18)" x="10.0" ry="2" y="4211.0"/> | |
<text y="4221.50" font-family="Verdana" font-size="12" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.20%)')"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect x="10.0" y="4195.0" fill="rgb(245,127,0)" ry="2" rx="2" width="981.76013" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="4205.50">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect y="4179.0" height="15.0" rx="2" ry="2" x="10.0" fill="rgb(235,222,21)" width="981.76013"/> | |
<text font-family="Verdana" x="13.00" y="4189.50" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (83.20%)')"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect ry="2" x="10.0" width="981.76013" y="4163.0" fill="rgb(214,129,10)" rx="2" height="15.0"/> | |
<text font-family="Verdana" x="13.00" y="4173.50" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (83.20%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect height="15.0" x="10.0" fill="rgb(245,133,28)" y="4147.0" rx="2" ry="2" width="981.76013"/> | |
<text y="4157.50" font-family="Verdana" x="13.00" font-size="12">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect width="981.76013" x="10.0" rx="2" height="15.0" ry="2" fill="rgb(250,202,37)" y="4131.0"/> | |
<text font-family="Verdana" font-size="12" y="4141.50" x="13.00">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.20%)')"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect fill="rgb(244,99,41)" x="10.0" width="981.76013" rx="2" height="15.0" ry="2" y="4115.0"/> | |
<text font-size="12" y="4125.50" font-family="Verdana" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.20%)')" class="func_g" onmouseout="c()"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect fill="rgb(227,176,44)" rx="2" width="981.76013" y="4099.0" ry="2" height="15.0" x="10.0"/> | |
<text x="13.00" font-size="12" y="4109.50" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect rx="2" y="4083.0" height="15.0" x="10.0" fill="rgb(230,140,47)" width="981.76013" ry="2"/> | |
<text font-family="Verdana" y="4093.50" x="13.00" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.20%)')"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect rx="2" ry="2" x="10.0" width="981.76013" y="4067.0" height="15.0" fill="rgb(220,175,33)"/> | |
<text y="4077.50" x="13.00" font-family="Verdana" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (83.20%)')"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect ry="2" rx="2" y="4051.0" height="15.0" width="981.76013" x="10.0" fill="rgb(216,112,19)"/> | |
<text font-size="12" font-family="Verdana" y="4061.50" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect height="15.0" x="10.0" y="4035.0" width="981.76013" fill="rgb(242,124,0)" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="4045.50">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.20%)')" onclick="zoom(this)"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect y="4019.0" width="981.76013" fill="rgb(214,117,34)" rx="2" ry="2" height="15.0" x="10.0"/> | |
<text x="13.00" y="4029.50" font-size="12" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect rx="2" ry="2" y="4003.0" width="981.76013" fill="rgb(239,21,42)" x="10.0" height="15.0"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="4013.50">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect height="15.0" ry="2" fill="rgb(241,32,52)" x="10.0" rx="2" width="981.76013" y="3987.0"/> | |
<text x="13.00" y="3997.50" font-size="12" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.20%)')"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect x="10.0" height="15.0" fill="rgb(217,95,53)" width="981.76013" ry="2" rx="2" y="3971.0"/> | |
<text font-size="12" y="3981.50" font-family="Verdana" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject._paintWithContext (83.20%)')"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect width="981.76013" y="3955.0" fill="rgb(248,143,3)" rx="2" x="10.0" height="15.0" ry="2"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="3965.50">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect x="10.0" height="15.0" ry="2" rx="2" y="3939.0" width="981.76013" fill="rgb(236,144,30)"/> | |
<text y="3949.50" x="13.00" font-size="12" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.20%)')" class="func_g" onmouseout="c()"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect height="15.0" x="10.0" rx="2" fill="rgb(251,205,21)" y="3923.0" width="981.76013" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="3933.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.20%)')"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect height="15.0" width="981.76013" y="3907.0" rx="2" x="10.0" ry="2" fill="rgb(222,157,3)"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="3917.50">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect fill="rgb(254,74,42)" height="15.0" width="981.76013" ry="2" y="3891.0" x="10.0" rx="2"/> | |
<text y="3901.50" x="13.00" font-size="12" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.20%)')" onclick="zoom(this)"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect x="10.0" y="3875.0" ry="2" fill="rgb(225,146,44)" width="981.76013" height="15.0" rx="2"/> | |
<text y="3885.50" font-family="Verdana" font-size="12" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.20%)')"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect width="981.76013" ry="2" y="3859.0" height="15.0" fill="rgb(250,2,29)" x="10.0" rx="2"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="3869.50">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect rx="2" fill="rgb(226,209,5)" x="10.0" height="15.0" y="3843.0" width="981.76013" ry="2"/> | |
<text y="3853.50" x="13.00" font-family="Verdana" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (83.20%)')" onmouseout="c()"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect height="15.0" ry="2" x="10.0" y="3827.0" width="981.76013" fill="rgb(243,57,7)" rx="2"/> | |
<text font-family="Verdana" y="3837.50" font-size="12" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.20%)')" onmouseout="c()"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect y="3811.0" width="981.76013" x="10.0" rx="2" height="15.0" fill="rgb(233,45,18)" ry="2"/> | |
<text y="3821.50" font-size="12" x="13.00" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderTheater.paint (83.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderTheater.paint (83.20%)</title> | |
<rect y="3795.0" x="10.0" width="981.76013" rx="2" ry="2" fill="rgb(236,18,23)" height="15.0"/> | |
<text x="13.00" font-family="Verdana" y="3805.50" font-size="12">RenderTheater.paint</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderTheaterMixin.paint (83.20%)')"><title >RenderTheaterMixin.paint (83.20%)</title> | |
<rect height="15.0" fill="rgb(227,168,34)" ry="2" width="981.76013" x="10.0" rx="2" y="3779.0"/> | |
<text font-family="Verdana" y="3789.50" font-size="12" x="13.00">RenderTheaterMixin.paint</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (83.20%)')" onmouseout="c()"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect ry="2" x="10.0" width="981.76013" height="15.0" rx="2" y="3763.0" fill="rgb(221,33,3)"/> | |
<text y="3773.50" font-size="12" x="13.00" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject._paintWithContext (83.20%)')" onmouseout="c()"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect height="15.0" x="10.0" fill="rgb(232,167,47)" rx="2" y="3747.0" width="981.76013" ry="2"/> | |
<text x="13.00" y="3757.50" font-family="Verdana" font-size="12">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect x="10.0" ry="2" rx="2" height="15.0" y="3731.0" fill="rgb(234,98,25)" width="981.76013"/> | |
<text font-size="12" x="13.00" y="3741.50" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (83.20%)')"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect rx="2" width="981.76013" ry="2" height="15.0" fill="rgb(253,41,46)" x="10.0" y="3715.0"/> | |
<text font-family="Verdana" y="3725.50" x="13.00" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (83.20%)')"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect y="3699.0" height="15.0" x="10.0" ry="2" rx="2" width="981.76013" fill="rgb(254,97,6)"/> | |
<text y="3709.50" font-size="12" x="13.00" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderOffstage.paint (83.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderOffstage.paint (83.20%)</title> | |
<rect y="3683.0" ry="2" rx="2" fill="rgb(230,211,19)" height="15.0" width="981.76013" x="10.0"/> | |
<text x="13.00" font-family="Verdana" y="3693.50" font-size="12">RenderOffstage.paint</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect height="15.0" y="3667.0" width="981.76013" x="10.0" rx="2" fill="rgb(235,226,47)" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="3677.50" x="13.00">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.20%)')"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect width="981.76013" fill="rgb(253,124,27)" rx="2" x="10.0" height="15.0" ry="2" y="3651.0"/> | |
<text x="13.00" y="3661.50" font-size="12" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect y="3635.0" fill="rgb(211,55,8)" width="981.76013" ry="2" x="10.0" rx="2" height="15.0"/> | |
<text font-family="Verdana" y="3645.50" x="13.00" font-size="12">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect y="3619.0" height="15.0" fill="rgb(254,214,32)" x="10.0" ry="2" width="981.76013" rx="2"/> | |
<text x="13.00" y="3629.50" font-size="12" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.20%)')" class="func_g"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect fill="rgb(210,26,14)" ry="2" rx="2" width="981.76013" y="3603.0" x="10.0" height="15.0"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="3613.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('PaintingContext._compositeChild (83.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >PaintingContext._compositeChild (83.20%)</title> | |
<rect height="15.0" fill="rgb(242,64,42)" rx="2" y="3587.0" x="10.0" ry="2" width="981.76013"/> | |
<text x="13.00" y="3597.50" font-family="Verdana" font-size="12">PaintingContext._compositeChild</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.repaintCompositedChild (83.20%)')" class="func_g"><title >PaintingContext.repaintCompositedChild (83.20%)</title> | |
<rect x="10.0" height="15.0" rx="2" fill="rgb(209,115,10)" width="981.76013" ry="2" y="3571.0"/> | |
<text x="13.00" font-family="Verdana" y="3581.50" font-size="12">PaintingContext.repaintCompositedChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext._repaintCompositedChild (83.20%)')" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext._repaintCompositedChild (83.20%)</title> | |
<rect fill="rgb(241,38,48)" x="10.0" rx="2" height="15.0" ry="2" y="3555.0" width="981.76013"/> | |
<text x="13.00" font-family="Verdana" y="3565.50" font-size="12">PaintingContext._repaintCompositedChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (83.20%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect y="3539.0" height="15.0" rx="2" width="981.76013" ry="2" x="10.0" fill="rgb(253,105,5)"/> | |
<text font-size="12" y="3549.50" x="13.00" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect x="10.0" height="15.0" rx="2" width="981.76013" y="3523.0" ry="2" fill="rgb(214,25,37)"/> | |
<text font-size="12" font-family="Verdana" y="3533.50" x="13.00">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (83.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect y="3507.0" x="10.0" height="15.0" fill="rgb(251,160,32)" ry="2" width="981.76013" rx="2"/> | |
<text font-size="12" x="13.00" y="3517.50" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect width="981.76013" x="10.0" rx="2" ry="2" y="3491.0" height="15.0" fill="rgb(246,180,31)"/> | |
<text font-size="12" font-family="Verdana" y="3501.50" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderFractionalTranslation.paint (83.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderFractionalTranslation.paint (83.20%)</title> | |
<rect x="10.0" width="981.76013" fill="rgb(208,139,43)" y="3475.0" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" x="13.00" y="3485.50" font-family="Verdana">RenderFractionalTranslation.paint</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect height="15.0" y="3459.0" fill="rgb(239,180,4)" x="10.0" width="981.76013" ry="2" rx="2"/> | |
<text font-size="12" y="3469.50" font-family="Verdana" x="13.00">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('PaintingContext.paintChild (83.20%)')" onclick="zoom(this)"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect height="15.0" width="981.76013" rx="2" ry="2" y="3443.0" fill="rgb(231,52,54)" x="10.0"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="3453.50">PaintingContext.paintChild</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject._paintWithContext (83.20%)')" onmouseout="c()"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect height="15.0" width="981.76013" x="10.0" ry="2" y="3427.0" rx="2" fill="rgb(244,26,32)"/> | |
<text y="3437.50" font-family="Verdana" font-size="12" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderFractionalTranslation.paint (83.20%)')" onmouseout="c()" class="func_g"><title >RenderFractionalTranslation.paint (83.20%)</title> | |
<rect width="981.76013" fill="rgb(233,24,36)" ry="2" height="15.0" rx="2" y="3411.0" x="10.0"/> | |
<text x="13.00" y="3421.50" font-size="12" font-family="Verdana">RenderFractionalTranslation.paint</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.20%)')"><title >RenderProxyBoxMixin.paint (#2) (83.20%)</title> | |
<rect ry="2" x="10.0" rx="2" height="15.0" fill="rgb(249,108,31)" y="3395.0" width="981.76013"/> | |
<text y="3405.50" font-family="Verdana" x="13.00" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.20%)')"><title >PaintingContext.paintChild (83.20%)</title> | |
<rect ry="2" x="10.0" height="15.0" y="3379.0" width="981.76013" fill="rgb(223,99,9)" rx="2"/> | |
<text font-family="Verdana" x="13.00" y="3389.50" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.20%)</title> | |
<rect width="981.76013" fill="rgb(232,122,15)" x="10.0" rx="2" ry="2" height="15.0" y="3363.0"/> | |
<text font-size="12" y="3373.50" x="13.00" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderDecoratedBox.paint (83.20%)')" onmouseout="c()"><title >RenderDecoratedBox.paint (83.20%)</title> | |
<rect fill="rgb(208,83,6)" x="10.0" y="3347.0" height="15.0" width="981.76013" ry="2" rx="2"/> | |
<text font-size="12" x="13.00" y="3357.50" font-family="Verdana">RenderDecoratedBox.paint</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect height="15.0" ry="2" fill="rgb(223,142,18)" width="980.58014" x="10.0" rx="2" y="3331.0"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="3341.50">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.10%)')" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect rx="2" ry="2" fill="rgb(216,94,8)" x="10.0" width="980.5802" height="15.0" y="3315.0"/> | |
<text font-family="Verdana" y="3325.50" font-size="12" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (83.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect fill="rgb(223,102,36)" width="980.5802" y="3299.0" ry="2" x="10.0" height="15.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="3309.50" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderStack.paint (83.10%)')" onmouseout="c()"><title >RenderStack.paint (83.10%)</title> | |
<rect y="3283.0" x="10.0" height="15.0" rx="2" fill="rgb(230,143,2)" ry="2" width="980.5802"/> | |
<text y="3293.50" font-family="Verdana" x="13.00" font-size="12">RenderStack.paint</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderStack.paintStack (83.10%)')"><title >RenderStack.paintStack (83.10%)</title> | |
<rect y="3267.0" height="15.0" ry="2" fill="rgb(243,66,31)" rx="2" x="10.0" width="980.5802"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="3277.50">RenderStack.paintStack</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderBoxContainerDefaultsMixin.defaultPaint (#2) (83.10%)')"><title >RenderBoxContainerDefaultsMixin.defaultPaint (#2) (83.10%)</title> | |
<rect ry="2" x="10.0" height="15.0" rx="2" fill="rgb(211,229,51)" y="3251.0" width="980.5802"/> | |
<text y="3261.50" font-size="12" x="13.00" font-family="Verdana">RenderBoxContainerDefaultsMixin.defaultPaint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (83.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect width="980.5802" ry="2" height="15.0" x="10.0" rx="2" y="3235.0" fill="rgb(240,222,46)"/> | |
<text x="13.00" y="3245.50" font-size="12" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect fill="rgb(240,70,35)" rx="2" ry="2" x="10.0" y="3219.0" height="15.0" width="980.5802"/> | |
<text x="13.00" font-size="12" y="3229.50" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect width="980.5802" fill="rgb(235,85,8)" ry="2" rx="2" y="3203.0" x="10.0" height="15.0"/> | |
<text font-family="Verdana" x="13.00" y="3213.50" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (83.10%)')" onmouseout="c()"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect x="10.0" rx="2" y="3187.0" fill="rgb(218,90,27)" height="15.0" width="980.5802" ry="2"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="3197.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext._compositeChild (83.10%)')"><title >PaintingContext._compositeChild (83.10%)</title> | |
<rect x="10.0" rx="2" fill="rgb(219,176,46)" y="3171.0" height="15.0" ry="2" width="980.5802"/> | |
<text y="3181.50" x="13.00" font-size="12" font-family="Verdana">PaintingContext._compositeChild</text> | |
</g> | |
<g onmouseover="s('PaintingContext.repaintCompositedChild (83.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.repaintCompositedChild (83.10%)</title> | |
<rect ry="2" y="3155.0" rx="2" width="980.5802" x="10.0" height="15.0" fill="rgb(251,176,7)"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="3165.50">PaintingContext.repaintCompositedChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('PaintingContext._repaintCompositedChild (83.10%)')" onclick="zoom(this)"><title >PaintingContext._repaintCompositedChild (83.10%)</title> | |
<rect height="15.0" fill="rgb(230,218,24)" ry="2" x="10.0" y="3139.0" rx="2" width="980.5802"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="3149.50">PaintingContext._repaintCompositedChild</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.10%)')" class="func_g" onmouseout="c()"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect x="10.0" ry="2" fill="rgb(236,100,38)" width="980.5802" height="15.0" rx="2" y="3123.0"/> | |
<text y="3133.50" font-size="12" font-family="Verdana" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect ry="2" y="3107.0" fill="rgb(216,158,13)" rx="2" width="980.5802" x="10.0" height="15.0"/> | |
<text y="3117.50" font-family="Verdana" x="13.00" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (83.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect x="10.0" fill="rgb(235,24,36)" height="15.0" ry="2" y="3091.0" rx="2" width="980.5802"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="3101.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.10%)')" class="func_g"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect x="10.0" width="980.5802" height="15.0" fill="rgb(224,9,41)" ry="2" y="3075.0" rx="2"/> | |
<text font-size="12" x="13.00" y="3085.50" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect fill="rgb(231,13,14)" x="10.0" height="15.0" rx="2" width="980.5802" y="3059.0" ry="2"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="3069.50">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.10%)')"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect y="3043.0" x="10.0" rx="2" height="15.0" ry="2" fill="rgb(223,122,37)" width="980.5802"/> | |
<text y="3053.50" font-family="Verdana" font-size="12" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.10%)')" class="func_g"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect x="10.0" height="15.0" width="980.5802" y="3027.0" rx="2" ry="2" fill="rgb(240,128,50)"/> | |
<text x="13.00" font-size="12" y="3037.50" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderPhysicalModel.paint (83.10%)')" onmouseout="c()"><title >RenderPhysicalModel.paint (83.10%)</title> | |
<rect height="15.0" y="3011.0" x="10.0" rx="2" ry="2" width="980.5802" fill="rgb(213,158,4)"/> | |
<text font-size="12" y="3021.50" font-family="Verdana" x="13.00">RenderPhysicalModel.paint</text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.pushClipRRect (83.10%)')" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.pushClipRRect (83.10%)</title> | |
<rect ry="2" x="10.0" fill="rgb(246,213,5)" rx="2" y="2995.0" height="15.0" width="980.5802"/> | |
<text font-family="Verdana" y="3005.50" font-size="12" x="13.00">PaintingContext.pushClipRRect</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderPhysicalModel.paint.<anonymous closure> (83.10%)')" class="func_g"><title >RenderPhysicalModel.paint.<anonymous closure> (83.10%)</title> | |
<rect rx="2" width="980.5802" x="10.0" fill="rgb(228,59,51)" ry="2" height="15.0" y="2979.0"/> | |
<text font-size="12" font-family="Verdana" y="2989.50" x="13.00">RenderPhysicalModel.paint.<anonymous closure></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect x="10.0" height="15.0" y="2963.0" rx="2" ry="2" width="980.5802" fill="rgb(232,81,10)"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="2973.50">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.10%)')"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect fill="rgb(248,78,2)" x="10.0" ry="2" y="2947.0" height="15.0" rx="2" width="980.5802"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="2957.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect height="15.0" fill="rgb(225,201,41)" width="980.5802" y="2931.0" ry="2" rx="2" x="10.0"/> | |
<text font-family="Verdana" y="2941.50" font-size="12" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderInkFeatures.paint (83.10%)')"><title >RenderInkFeatures.paint (83.10%)</title> | |
<rect fill="rgb(250,215,43)" ry="2" rx="2" x="10.0" y="2915.0" width="980.5802" height="15.0"/> | |
<text y="2925.50" font-size="12" font-family="Verdana" x="13.00">RenderInkFeatures.paint</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect x="10.0" ry="2" y="2899.0" fill="rgb(237,120,14)" height="15.0" rx="2" width="980.5802"/> | |
<text y="2909.50" font-size="12" font-family="Verdana" x="13.00">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.10%)')"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect fill="rgb(235,200,28)" rx="2" y="2883.0" ry="2" x="10.0" width="980.5802" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="2893.50">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect rx="2" fill="rgb(247,207,45)" ry="2" width="980.5802" x="10.0" y="2867.0" height="15.0"/> | |
<text y="2877.50" x="13.00" font-size="12" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderCustomMultiChildLayoutBox.paint (83.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderCustomMultiChildLayoutBox.paint (83.10%)</title> | |
<rect width="980.5802" x="10.0" rx="2" fill="rgb(231,170,54)" ry="2" height="15.0" y="2851.0"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="2861.50">RenderCustomMultiChildLayoutBox.paint</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderBoxContainerDefaultsMixin.defaultPaint (83.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderBoxContainerDefaultsMixin.defaultPaint (83.10%)</title> | |
<rect width="980.5802" fill="rgb(222,11,16)" ry="2" rx="2" height="15.0" y="2835.0" x="10.0"/> | |
<text font-size="12" y="2845.50" font-family="Verdana" x="13.00">RenderBoxContainerDefaultsMixin.defaultPaint</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.10%)')" class="func_g"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect fill="rgb(253,31,43)" rx="2" height="15.0" ry="2" y="2819.0" x="10.0" width="980.5802"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="2829.50">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (83.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect rx="2" fill="rgb(221,30,52)" width="980.5802" ry="2" x="10.0" height="15.0" y="2803.0"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="2813.50">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect rx="2" height="15.0" width="980.5802" x="10.0" y="2787.0" ry="2" fill="rgb(238,63,7)"/> | |
<text y="2797.50" font-family="Verdana" x="13.00" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (83.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect width="980.5802" rx="2" fill="rgb(217,171,32)" ry="2" x="10.0" height="15.0" y="2771.0"/> | |
<text y="2781.50" font-size="12" font-family="Verdana" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect ry="2" fill="rgb(233,81,3)" y="2755.0" x="10.0" width="980.5802" rx="2" height="15.0"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="2765.50">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.10%)</title> | |
<rect ry="2" x="10.0" width="980.5802" fill="rgb(250,104,45)" rx="2" height="15.0" y="2739.0"/> | |
<text x="13.00" font-family="Verdana" y="2749.50" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.10%)')" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (83.10%)</title> | |
<rect rx="2" y="2723.0" fill="rgb(247,127,12)" ry="2" width="980.5802" height="15.0" x="10.0"/> | |
<text font-size="12" font-family="Verdana" y="2733.50" x="13.00">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.10%)</title> | |
<rect x="10.0" ry="2" fill="rgb(218,76,52)" height="15.0" width="980.5802" y="2707.0" rx="2"/> | |
<text y="2717.50" font-size="12" font-family="Verdana" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.00%)')" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (83.00%)</title> | |
<rect width="979.4002" height="15.0" y="2691.0" fill="rgb(213,7,39)" x="10.0" rx="2" ry="2"/> | |
<text y="2701.50" x="13.00" font-family="Verdana" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.00%)')"><title >PaintingContext.paintChild (83.00%)</title> | |
<rect x="10.0" rx="2" ry="2" y="2675.0" width="979.4002" height="15.0" fill="rgb(215,24,52)"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="2685.50">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (83.00%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._paintWithContext (83.00%)</title> | |
<rect fill="rgb(209,29,33)" ry="2" y="2659.0" x="10.0" height="15.0" rx="2" width="979.4002"/> | |
<text y="2669.50" font-family="Verdana" font-size="12" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.00%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.00%)</title> | |
<rect fill="rgb(205,7,26)" rx="2" y="2643.0" ry="2" x="10.0" width="979.4002" height="15.0"/> | |
<text y="2653.50" x="13.00" font-family="Verdana" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.00%)')" onmouseout="c()" class="func_g"><title >PaintingContext.paintChild (83.00%)</title> | |
<rect width="979.4002" ry="2" height="15.0" x="10.0" fill="rgb(213,223,42)" y="2627.0" rx="2"/> | |
<text y="2637.50" x="13.00" font-family="Verdana" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (83.00%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.00%)</title> | |
<rect width="979.4002" y="2611.0" ry="2" rx="2" x="10.0" height="15.0" fill="rgb(222,77,53)"/> | |
<text x="13.00" font-size="12" y="2621.50" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.00%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.00%)</title> | |
<rect height="15.0" width="979.4002" y="2595.0" fill="rgb(241,191,25)" ry="2" x="10.0" rx="2"/> | |
<text x="13.00" font-size="12" y="2605.50" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (83.00%)')" onmouseout="c()"><title >PaintingContext.paintChild (83.00%)</title> | |
<rect x="10.0" height="15.0" y="2579.0" ry="2" width="979.4002" fill="rgb(228,39,38)" rx="2"/> | |
<text y="2589.50" x="13.00" font-size="12" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (83.00%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.00%)</title> | |
<rect ry="2" y="2563.0" width="979.4002" x="10.0" height="15.0" fill="rgb(214,192,24)" rx="2"/> | |
<text font-size="12" y="2573.50" x="13.00" font-family="Verdana">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.00%)')"><title >RenderProxyBoxMixin.paint (#2) (83.00%)</title> | |
<rect height="15.0" fill="rgb(248,176,3)" ry="2" x="10.0" rx="2" width="979.4002" y="2547.0"/> | |
<text x="13.00" font-family="Verdana" y="2557.50" font-size="12">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (83.00%)')" class="func_g" onmouseout="c()"><title >PaintingContext.paintChild (83.00%)</title> | |
<rect rx="2" width="979.4002" x="10.0" fill="rgb(223,62,32)" y="2531.0" ry="2" height="15.0"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="2541.50">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (83.00%)')" onmouseout="c()"><title >RenderObject._paintWithContext (83.00%)</title> | |
<rect ry="2" rx="2" height="15.0" fill="rgb(246,51,21)" x="10.0" y="2515.0" width="979.4002"/> | |
<text x="13.00" font-family="Verdana" font-size="12" y="2525.50">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.00%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (83.00%)</title> | |
<rect rx="2" height="15.0" x="10.0" width="979.4002" fill="rgb(214,151,37)" y="2499.0" ry="2"/> | |
<text font-size="12" x="13.00" y="2509.50" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.00%)')"><title >PaintingContext.paintChild (83.00%)</title> | |
<rect rx="2" ry="2" width="979.4002" x="10.0" height="15.0" fill="rgb(241,207,31)" y="2483.0"/> | |
<text x="13.00" y="2493.50" font-family="Verdana" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('PaintingContext._compositeChild (83.00%)')"><title >PaintingContext._compositeChild (83.00%)</title> | |
<rect rx="2" ry="2" width="979.4002" fill="rgb(243,216,15)" y="2467.0" x="10.0" height="15.0"/> | |
<text font-size="12" x="13.00" y="2477.50" font-family="Verdana">PaintingContext._compositeChild</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.repaintCompositedChild (83.00%)')" onclick="zoom(this)"><title >PaintingContext.repaintCompositedChild (83.00%)</title> | |
<rect fill="rgb(252,219,43)" x="10.0" height="15.0" rx="2" width="979.4002" y="2451.0" ry="2"/> | |
<text y="2461.50" x="13.00" font-size="12" font-family="Verdana">PaintingContext.repaintCompositedChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext._repaintCompositedChild (83.00%)')"><title >PaintingContext._repaintCompositedChild (83.00%)</title> | |
<rect x="10.0" width="979.4002" fill="rgb(227,224,19)" y="2435.0" ry="2" height="15.0" rx="2"/> | |
<text y="2445.50" font-family="Verdana" x="13.00" font-size="12">PaintingContext._repaintCompositedChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (83.00%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (83.00%)</title> | |
<rect fill="rgb(244,78,21)" y="2419.0" ry="2" rx="2" x="10.0" width="979.4002" height="15.0"/> | |
<text y="2429.50" font-size="12" font-family="Verdana" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderSingleChildViewport.paint (83.00%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderSingleChildViewport.paint (83.00%)</title> | |
<rect y="2403.0" rx="2" height="15.0" fill="rgb(255,94,5)" ry="2" width="979.4002" x="10.0"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="2413.50">RenderSingleChildViewport.paint</text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.pushClipRect (83.00%)')" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.pushClipRect (83.00%)</title> | |
<rect y="2387.0" width="979.4002" height="15.0" fill="rgb(237,186,27)" rx="2" x="10.0" ry="2"/> | |
<text font-family="Verdana" y="2397.50" font-size="12" x="13.00">PaintingContext.pushClipRect</text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.pushLayer (83.00%)')" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.pushLayer (83.00%)</title> | |
<rect x="10.0" y="2371.0" rx="2" height="15.0" ry="2" fill="rgb(211,163,28)" width="979.4002"/> | |
<text font-size="12" y="2381.50" font-family="Verdana" x="13.00">PaintingContext.pushLayer</text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderSingleChildViewport.paint.paintContents (83.00%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderSingleChildViewport.paint.paintContents (83.00%)</title> | |
<rect x="10.0" fill="rgb(233,42,3)" rx="2" ry="2" y="2355.0" width="979.4002" height="15.0"/> | |
<text y="2365.50" font-size="12" font-family="Verdana" x="13.00">RenderSingleChildViewport.paint.paintContents</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('PaintingContext.paintChild (83.00%)')"><title >PaintingContext.paintChild (83.00%)</title> | |
<rect rx="2" height="15.0" x="10.0" y="2339.0" fill="rgb(244,31,6)" ry="2" width="979.4002"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="2349.50">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (83.00%)')"><title >RenderObject._paintWithContext (83.00%)</title> | |
<rect fill="rgb(228,150,25)" height="15.0" ry="2" x="10.0" y="2323.0" rx="2" width="979.4002"/> | |
<text y="2333.50" font-family="Verdana" x="13.00" font-size="12">RenderObject._paintWithContext</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (83.00%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (83.00%)</title> | |
<rect height="15.0" rx="2" width="979.4002" x="10.0" y="2307.0" fill="rgb(226,188,41)" ry="2"/> | |
<text y="2317.50" x="13.00" font-size="12" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (83.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (83.00%)</title> | |
<rect x="10.0" height="15.0" ry="2" fill="rgb(216,7,11)" y="2291.0" width="979.4002" rx="2"/> | |
<text y="2301.50" font-family="Verdana" x="13.00" font-size="12">PaintingContext.paintChild</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('PaintingContext._compositeChild (83.00%)')" onclick="zoom(this)"><title >PaintingContext._compositeChild (83.00%)</title> | |
<rect fill="rgb(227,77,51)" height="15.0" x="10.0" rx="2" y="2275.0" ry="2" width="979.4002"/> | |
<text y="2285.50" font-size="12" font-family="Verdana" x="13.00">PaintingContext._compositeChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.repaintCompositedChild (83.00%)')"><title >PaintingContext.repaintCompositedChild (83.00%)</title> | |
<rect y="2259.0" rx="2" width="979.4002" fill="rgb(219,40,54)" height="15.0" ry="2" x="10.0"/> | |
<text y="2269.50" font-size="12" x="13.00" font-family="Verdana">PaintingContext.repaintCompositedChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext._repaintCompositedChild (83.00%)')" class="func_g"><title >PaintingContext._repaintCompositedChild (83.00%)</title> | |
<rect height="15.0" ry="2" y="2243.0" rx="2" width="979.4002" fill="rgb(214,89,29)" x="10.0"/> | |
<text y="2253.50" font-size="12" x="13.00" font-family="Verdana">PaintingContext._repaintCompositedChild</text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (79.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._paintWithContext (79.60%)</title> | |
<rect fill="rgb(228,180,6)" x="10.0" width="939.2802" height="15.0" y="2227.0" rx="2" ry="2"/> | |
<text y="2237.50" font-size="12" font-family="Verdana" x="13.00">RenderObject._paintWithContext</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (79.60%)')"><title >RenderProxyBoxMixin.paint (#2) (79.60%)</title> | |
<rect height="15.0" width="939.2802" y="2211.0" fill="rgb(218,71,52)" rx="2" ry="2" x="10.0"/> | |
<text x="13.00" font-size="12" y="2221.50" font-family="Verdana">RenderProxyBoxMixin.paint (#2)</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PaintingContext.paintChild (79.60%)')" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (79.60%)</title> | |
<rect width="939.2802" ry="2" x="10.0" fill="rgb(242,30,37)" height="15.0" y="2195.0" rx="2"/> | |
<text y="2205.50" font-size="12" x="13.00" font-family="Verdana">PaintingContext.paintChild</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (79.60%)')" class="func_g"><title >RenderObject._paintWithContext (79.60%)</title> | |
<rect width="939.2802" fill="rgb(235,180,55)" ry="2" height="15.0" x="10.0" y="2179.0" rx="2"/> | |
<text x="13.00" font-family="Verdana" y="2189.50" font-size="12">RenderObject._paintWithContext</text> | |
</g> | |
<g onmouseover="s('RenderCustomPaint.paint (79.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderCustomPaint.paint (79.60%)</title> | |
<rect y="2163.0" ry="2" width="939.2802" height="15.0" fill="rgb(233,35,7)" rx="2" x="10.0"/> | |
<text y="2173.50" x="13.00" font-size="12" font-family="Verdana">RenderCustomPaint.paint</text> | |
</g> | |
<g onmouseover="s('RenderCustomPaint._paintWithPainter (79.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderCustomPaint._paintWithPainter (79.60%)</title> | |
<rect x="10.0" ry="2" y="2147.0" rx="2" height="15.0" width="939.2802" fill="rgb(232,23,25)"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="2157.50">RenderCustomPaint._paintWithPainter</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintTest.paint (79.60%)')" class="func_g"><title >PaintTest.paint (79.60%)</title> | |
<rect width="939.2802" ry="2" x="10.0" y="2131.0" height="15.0" fill="rgb(238,147,46)" rx="2"/> | |
<text y="2141.50" font-size="12" x="13.00" font-family="Verdana">PaintTest.paint</text> | |
</g> | |
<g onmouseover="s('_NativeCanvas.drawLine (75.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_NativeCanvas.drawLine (75.40%)</title> | |
<rect rx="2" ry="2" y="2115.0" height="15.0" fill="rgb(254,50,1)" width="889.7202" x="10.0"/> | |
<text font-family="Verdana" y="2125.50" font-size="12" x="13.00">_NativeCanvas.drawLine</text> | |
</g> | |
<g onmouseover="s('_NativeCanvas._drawLine (73.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_NativeCanvas._drawLine (73.40%)</title> | |
<rect y="2099.0" fill="rgb(250,37,23)" width="866.1202" height="15.0" x="10.0" ry="2" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="2109.50" x="13.00">_NativeCanvas._drawLine</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('NativeCanvas.__drawLine$Method$FfiNative (67.30%)')"><title >NativeCanvas.__drawLine$Method$FfiNative (67.30%)</title> | |
<rect x="10.0" width="794.1402" y="2083.0" rx="2" height="15.0" ry="2" fill="rgb(239,41,41)"/> | |
<text y="2093.50" x="13.00" font-size="12" font-family="Verdana">NativeCanvas.__drawLine$Method$FfiNative</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('stub CallNativeThroughSafepoint (65.40%)')"><title >stub CallNativeThroughSafepoint (65.40%)</title> | |
<rect fill="rgb(248,75,26)" height="15.0" y="2067.0" rx="2" x="10.0" ry="2" width="771.72015"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="2077.50">stub CallNativeThroughSafepoint</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::Canvas::drawLine(double, double, double, double, _Dart_Handle*, _Dart_Handle*) (62.90%)')" onclick="zoom(this)" class="func_g"><title >flutter::Canvas::drawLine(double, double, double, double, _Dart_Handle*, _Dart_Handle*) (62.90%)</title> | |
<rect x="10.0" height="15.0" y="2051.0" rx="2" fill="rgb(213,42,22)" ry="2" width="742.22015"/> | |
<text x="13.00" y="2061.50" font-size="12" font-family="Verdana">flutter::Canvas::drawLine(double, double, double, double, _Dart_Handle*, _Dart_Handle*)</text> | |
</g> | |
<g onmouseover="s('flutter::Paint::paint(flutter::DlPaint&, flutter::DisplayListAttributeFlags const&) const (31.70%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::Paint::paint(flutter::DlPaint&, flutter::DisplayListAttributeFlags const&) const (31.70%)</title> | |
<rect fill="rgb(239,172,30)" y="2035.0" rx="2" x="10.0" width="374.06006" height="15.0" ry="2"/> | |
<text y="2045.50" font-size="12" x="13.00" font-family="Verdana">flutter::Paint::paint(flutter::DlPaint&, flutter::..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('tonic::DartByteData::DartByteData(_Dart_Handle*) (15.20%)')"><title >tonic::DartByteData::DartByteData(_Dart_Handle*) (15.20%)</title> | |
<rect y="2019.0" height="15.0" rx="2" width="179.36003" x="10.0" ry="2" fill="rgb(206,5,4)"/> | |
<text font-size="12" y="2029.50" font-family="Verdana" x="13.00">tonic::DartByteData::Da..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Dart_TypedDataAcquireData (4.70%)')"><title >Dart_TypedDataAcquireData (4.70%)</title> | |
<rect x="10.0" y="2003.0" rx="2" width="55.460007" ry="2" height="15.0" fill="rgb(215,152,18)"/> | |
<text font-size="12" font-family="Verdana" y="2013.50" x="13.00">Dart_..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (1.00%)')"><title >dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (1.00%)</title> | |
<rect y="1987.0" rx="2" ry="2" fill="rgb(211,201,4)" height="15.0" x="10.0" width="11.800003"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="1997.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::VMHandles::AllocateHandle(dart::Zone*) (0.60%)')" class="func_g" onmouseout="c()"><title >dart::VMHandles::AllocateHandle(dart::Zone*) (0.60%)</title> | |
<rect rx="2" x="10.0" fill="rgb(238,17,38)" ry="2" y="1971.0" height="15.0" width="7.080002"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="1981.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::Instance::Handle(dart::InstancePtr) (0.40%)')"><title >dart::Instance::Handle(dart::InstancePtr) (0.40%)</title> | |
<rect y="1987.0" rx="2" ry="2" fill="rgb(215,107,3)" height="15.0" x="21.800003" width="4.720001"/> | |
<text font-size="12" font-family="Verdana" x="24.80" y="1997.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('tlv_get_addr (0.10%)')"><title >tlv_get_addr (0.10%)</title> | |
<rect fill="rgb(243,184,44)" rx="2" ry="2" y="1971.0" height="15.0" x="21.800003" width="1.1800003"/> | |
<text y="1981.50" x="24.80" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('dart::VMHandles::AllocateHandle(dart::Zone*) (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::VMHandles::AllocateHandle(dart::Zone*) (0.30%)</title> | |
<rect fill="rgb(205,167,16)" rx="2" ry="2" y="1987.0" height="15.0" x="26.520004" width="3.540001"/> | |
<text x="29.52" font-size="12" y="1997.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::Smi::Handle() (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::Smi::Handle() (0.30%)</title> | |
<rect fill="rgb(225,177,19)" rx="2" ry="2" y="1987.0" height="15.0" x="30.060005" width="3.540001"/> | |
<text x="33.06" font-size="12" y="1997.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dart::HandleScope::HandleScope(dart::ThreadState*) (0.20%)')"><title >dart::HandleScope::HandleScope(dart::ThreadState*) (0.20%)</title> | |
<rect fill="rgb(252,104,32)" rx="2" ry="2" y="1987.0" height="15.0" x="33.600006" width="2.3600006"/> | |
<text x="36.60" font-size="12" y="1997.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::StackResource::Init(dart::ThreadState*) (0.10%)')" class="func_g" onmouseout="c()"><title >dart::StackResource::Init(dart::ThreadState*) (0.10%)</title> | |
<rect fill="rgb(220,209,22)" rx="2" ry="2" y="1987.0" height="15.0" x="35.960007" width="1.1800003"/> | |
<text x="38.96" font-size="12" y="1997.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('tlv_get_addr (0.10%)')" class="func_g" onmouseout="c()"><title >tlv_get_addr (0.10%)</title> | |
<rect fill="rgb(224,140,45)" rx="2" ry="2" y="1987.0" height="15.0" x="37.140007" width="1.1800003"/> | |
<text x="40.14" font-size="12" y="1997.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('tonic::CheckAndHandleError(_Dart_Handle*) (4.50%)')" class="func_g" onmouseout="c()"><title >tonic::CheckAndHandleError(_Dart_Handle*) (4.50%)</title> | |
<rect fill="rgb(243,195,21)" rx="2" ry="2" y="2003.0" height="15.0" x="65.46001" width="53.100006"/> | |
<text x="68.46" font-size="12" y="2013.50" font-family="Verdana">tonic..</text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::StackResource::~StackResource() (1.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::StackResource::~StackResource() (1.10%)</title> | |
<rect x="65.46001" y="1987.0" rx="2" width="12.980003" ry="2" height="15.0" fill="rgb(210,3,50)"/> | |
<text y="1997.50" x="68.46" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Dart_IsUnhandledExceptionError (0.90%)')" onmouseout="c()" onclick="zoom(this)"><title >Dart_IsUnhandledExceptionError (0.90%)</title> | |
<rect x="78.44001" y="1987.0" rx="2" width="10.620003" ry="2" height="15.0" fill="rgb(244,205,20)"/> | |
<text y="1997.50" x="81.44" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Dart_IsError (0.90%)')" onmouseout="c()" onclick="zoom(this)"><title >Dart_IsError (0.90%)</title> | |
<rect x="89.06001" y="1987.0" rx="2" width="10.620003" ry="2" height="15.0" fill="rgb(249,76,40)"/> | |
<text y="1997.50" x="92.06" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Dart_IsFatalError (0.80%)')" onmouseout="c()" onclick="zoom(this)"><title >Dart_IsFatalError (0.80%)</title> | |
<rect x="99.68001" y="1987.0" rx="2" width="9.440002" ry="2" height="15.0" fill="rgb(242,85,13)"/> | |
<text y="1997.50" x="102.68" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('tlv_get_addr (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >tlv_get_addr (0.20%)</title> | |
<rect ry="2" height="15.0" y="1971.0" x="99.68001" rx="2" width="2.3600006" fill="rgb(247,139,39)"/> | |
<text font-size="12" x="102.68" y="1981.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::StackResource::Init(dart::ThreadState*) (0.50%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dart::StackResource::Init(dart::ThreadState*) (0.50%)</title> | |
<rect x="109.12001" y="1987.0" rx="2" width="5.9000015" ry="2" height="15.0" fill="rgb(215,217,17)"/> | |
<text font-size="12" x="112.12" y="1997.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_IsNull (1.20%)')" onmouseout="c()"><title >Dart_IsNull (1.20%)</title> | |
<rect fill="rgb(245,184,18)" rx="2" ry="2" y="2003.0" height="15.0" x="118.56002" width="14.159996"/> | |
<text x="121.56" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('tlv_get_addr (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >tlv_get_addr (0.30%)</title> | |
<rect x="118.56002" y="1987.0" rx="2" width="3.540001" ry="2" height="15.0" fill="rgb(205,216,8)"/> | |
<text y="1997.50" font-size="12" font-family="Verdana" x="121.56"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (1.10%)')" onmouseout="c()"><title >dart::Object::HandleImpl(dart::Zone*, dart::ObjectPtr, long) (1.10%)</title> | |
<rect fill="rgb(245,139,24)" rx="2" ry="2" y="2003.0" height="15.0" x="132.72003" width="12.979996"/> | |
<text x="135.72" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::StackResource::~StackResource() (1.00%)')" onmouseout="c()"><title >dart::StackResource::~StackResource() (1.00%)</title> | |
<rect fill="rgb(210,179,5)" rx="2" ry="2" y="2003.0" height="15.0" x="145.70003" width="11.800003"/> | |
<text x="148.70" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::StackResource::Init(dart::ThreadState*) (0.90%)')" onmouseout="c()"><title >dart::StackResource::Init(dart::ThreadState*) (0.90%)</title> | |
<rect fill="rgb(243,149,51)" rx="2" ry="2" y="2003.0" height="15.0" x="157.50003" width="10.619995"/> | |
<text x="160.50" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_IsFatalError (0.30%)')" onmouseout="c()"><title >Dart_IsFatalError (0.30%)</title> | |
<rect fill="rgb(253,199,18)" rx="2" ry="2" y="2003.0" height="15.0" x="168.12003" width="3.5399933"/> | |
<text x="171.12" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::TypedDataBase::Validate(unsigned char*) const (0.20%)')" onmouseout="c()"><title >dart::TypedDataBase::Validate(unsigned char*) const (0.20%)</title> | |
<rect fill="rgb(215,80,26)" rx="2" ry="2" y="2003.0" height="15.0" x="171.66002" width="2.3600006"/> | |
<text x="174.66" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_IsError (0.20%)')" onmouseout="c()"><title >Dart_IsError (0.20%)</title> | |
<rect fill="rgb(253,197,31)" rx="2" ry="2" y="2003.0" height="15.0" x="174.02002" width="2.3600006"/> | |
<text x="177.02" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::HandleScope::~HandleScope() (0.10%)')" onmouseout="c()"><title >dart::HandleScope::~HandleScope() (0.10%)</title> | |
<rect fill="rgb(250,80,22)" rx="2" ry="2" y="2003.0" height="15.0" x="176.38002" width="1.1799927"/> | |
<text x="179.38" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::TypedDataView::IsTypedDataView() const (0.10%)')" onmouseout="c()"><title >dart::TypedDataView::IsTypedDataView() const (0.10%)</title> | |
<rect fill="rgb(224,1,35)" rx="2" ry="2" y="2003.0" height="15.0" x="177.56001" width="1.1799927"/> | |
<text x="180.56" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_IsUnhandledExceptionError (0.10%)')" onmouseout="c()"><title >Dart_IsUnhandledExceptionError (0.10%)</title> | |
<rect fill="rgb(207,149,12)" rx="2" ry="2" y="2003.0" height="15.0" x="178.74" width="1.1799927"/> | |
<text x="181.74" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('tonic::DartByteData::~DartByteData() (8.00%)')" onmouseout="c()"><title >tonic::DartByteData::~DartByteData() (8.00%)</title> | |
<rect y="2019.0" height="15.0" rx="2" width="94.40001" x="189.36003" ry="2" fill="rgb(246,22,44)"/> | |
<text x="192.36" font-size="12" y="2029.50" font-family="Verdana">tonic::Dart..</text> | |
</g> | |
<g onmouseover="s('Dart_TypedDataReleaseData (6.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Dart_TypedDataReleaseData (6.40%)</title> | |
<rect fill="rgb(235,104,34)" rx="2" ry="2" y="2003.0" height="15.0" x="189.36003" width="75.520004"/> | |
<text font-size="12" x="192.36" y="2013.50" font-family="Verdana">Dart_Typ..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::Heap::CheckExternalGC(dart::Thread*) (3.60%)')"><title >dart::Heap::CheckExternalGC(dart::Thread*) (3.60%)</title> | |
<rect height="15.0" width="42.48001" x="189.36003" y="1987.0" fill="rgb(238,12,42)" ry="2" rx="2"/> | |
<text x="192.36" font-size="12" font-family="Verdana" y="1997.50">dart..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::Heap::CheckConcurrentMarking(dart::Thread*, dart::GCReason, long) (1.40%)')" onmouseout="c()"><title >dart::Heap::CheckConcurrentMarking(dart::Thread*, dart::GCReason, long) (1.40%)</title> | |
<rect y="1971.0" width="16.520004" fill="rgb(215,224,48)" rx="2" ry="2" height="15.0" x="189.36003"/> | |
<text font-family="Verdana" y="1981.50" font-size="12" x="192.36"></text> | |
</g> | |
<g onmouseover="s('pthread_mutex_lock (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >pthread_mutex_lock (0.60%)</title> | |
<rect rx="2" fill="rgb(230,126,3)" y="1955.0" ry="2" width="7.080002" height="15.0" x="189.36003"/> | |
<text font-size="12" x="192.36" font-family="Verdana" y="1965.50"></text> | |
</g> | |
<g onmouseover="s('pthread_mutex_unlock (0.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >pthread_mutex_unlock (0.40%)</title> | |
<rect rx="2" fill="rgb(207,170,20)" y="1955.0" ry="2" width="4.720001" height="15.0" x="196.44003"/> | |
<text font-size="12" x="199.44" font-family="Verdana" y="1965.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('pthread_mutex_lock (0.70%)')" onmouseout="c()"><title >pthread_mutex_lock (0.70%)</title> | |
<rect y="1971.0" width="8.2599945" fill="rgb(220,116,50)" rx="2" ry="2" height="15.0" x="205.88004"/> | |
<text font-family="Verdana" y="1981.50" font-size="12" x="208.88"></text> | |
</g> | |
<g onmouseover="s('pthread_mutex_unlock (0.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >pthread_mutex_unlock (0.60%)</title> | |
<rect y="1971.0" width="7.080002" fill="rgb(247,168,26)" rx="2" ry="2" height="15.0" x="214.14003"/> | |
<text x="217.14" font-size="12" y="1981.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('DYLD-STUB$$pthread_mutex_lock (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >DYLD-STUB$$pthread_mutex_lock (0.40%)</title> | |
<rect y="1971.0" width="4.720001" fill="rgb(244,7,29)" rx="2" ry="2" height="15.0" x="221.22003"/> | |
<text font-family="Verdana" y="1981.50" font-size="12" x="224.22"></text> | |
</g> | |
<g onmouseover="s('dart::PageSpaceController::ReachedSoftThreshold(dart::SpaceUsage) const (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::PageSpaceController::ReachedSoftThreshold(dart::SpaceUsage) const (0.10%)</title> | |
<rect y="1971.0" width="1.1799927" fill="rgb(206,28,5)" rx="2" ry="2" height="15.0" x="225.94003"/> | |
<text font-family="Verdana" y="1981.50" font-size="12" x="228.94"></text> | |
</g> | |
<g onmouseover="s('dart::PageSpaceController::ReachedHardThreshold(dart::SpaceUsage) const (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::PageSpaceController::ReachedHardThreshold(dart::SpaceUsage) const (0.50%)</title> | |
<rect y="1987.0" width="5.899994" fill="rgb(220,166,14)" rx="2" ry="2" height="15.0" x="231.84004"/> | |
<text font-family="Verdana" y="1997.50" font-size="12" x="234.84"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('dart::StackResource::Init(dart::ThreadState*) (0.40%)')"><title >dart::StackResource::Init(dart::ThreadState*) (0.40%)</title> | |
<rect ry="2" width="4.720001" fill="rgb(214,61,52)" x="237.74004" y="1987.0" height="15.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="240.74" y="1997.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('dart::Heap::CheckConcurrentMarking(dart::Thread*, dart::GCReason, long) (0.10%)')"><title >dart::Heap::CheckConcurrentMarking(dart::Thread*, dart::GCReason, long) (0.10%)</title> | |
<rect ry="2" width="1.1799927" fill="rgb(240,191,38)" x="242.46004" y="1987.0" height="15.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="245.46" y="1997.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('DYLD-STUB$$pthread_mutex_lock (0.10%)')"><title >DYLD-STUB$$pthread_mutex_lock (0.10%)</title> | |
<rect ry="2" width="1.1799927" fill="rgb(212,173,34)" x="243.64005" y="1987.0" height="15.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="246.64" y="1997.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::StackResource::~StackResource() (0.50%)')" onmouseout="c()"><title >dart::StackResource::~StackResource() (0.50%)</title> | |
<rect fill="rgb(216,187,21)" rx="2" ry="2" y="2003.0" height="15.0" x="264.88004" width="5.899994"/> | |
<text font-family="Verdana" font-size="12" x="267.88" y="2013.50"></text> | |
</g> | |
<g onmouseover="s('dart::Heap::CheckExternalGC(dart::Thread*) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::Heap::CheckExternalGC(dart::Thread*) (0.20%)</title> | |
<rect fill="rgb(253,129,54)" rx="2" ry="2" y="2003.0" height="15.0" x="270.78003" width="2.3599854"/> | |
<text font-family="Verdana" font-size="12" x="273.78" y="2013.50"></text> | |
</g> | |
<g onmouseover="s('dart::HandleScope::HandleScope(dart::ThreadState*) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::HandleScope::HandleScope(dart::ThreadState*) (0.20%)</title> | |
<rect fill="rgb(243,177,24)" rx="2" ry="2" y="2003.0" height="15.0" x="273.14005" width="2.3599854"/> | |
<text font-family="Verdana" font-size="12" x="276.14" y="2013.50"></text> | |
</g> | |
<g onmouseover="s('dart::Thread::heap() const (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::Thread::heap() const (0.20%)</title> | |
<rect fill="rgb(249,141,40)" rx="2" ry="2" y="2003.0" height="15.0" x="275.50006" width="2.3599854"/> | |
<text font-family="Verdana" font-size="12" x="278.50" y="2013.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_IsNull (2.60%)')" onmouseout="c()"><title >Dart_IsNull (2.60%)</title> | |
<rect fill="rgb(227,85,48)" rx="2" ry="2" y="2019.0" height="15.0" x="283.76004" width="30.679993"/> | |
<text x="286.76" font-size="12" y="2029.50" font-family="Verdana">Da..</text> | |
</g> | |
<g onmouseover="s('tlv_get_addr (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >tlv_get_addr (0.50%)</title> | |
<rect y="2003.0" height="15.0" rx="2" width="5.899994" x="283.76004" ry="2" fill="rgb(244,195,35)"/> | |
<text font-family="Verdana" font-size="12" x="286.76" y="2013.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::StackResource::~StackResource() (0.60%)')" onmouseout="c()"><title >dart::StackResource::~StackResource() (0.60%)</title> | |
<rect fill="rgb(222,210,11)" rx="2" ry="2" y="2019.0" height="15.0" x="314.44003" width="7.0799866"/> | |
<text x="317.44" font-size="12" y="2029.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DlPaint::setColorSource(flutter::DlColorSource const*) (0.50%)')" onmouseout="c()"><title >flutter::DlPaint::setColorSource(flutter::DlColorSource const*) (0.50%)</title> | |
<rect fill="rgb(250,221,19)" rx="2" ry="2" y="2019.0" height="15.0" x="321.52002" width="5.899994"/> | |
<text x="324.52" font-size="12" y="2029.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('std::_fl::shared_ptr<flutter::DlColorSource const>& std::_fl::shared_ptr<flutter::DlColorSource const>::operator=[abi:v15000]<flutter::DlColorSource, void>(std::_fl::shared_ptr<flutter::DlColorSource>&&) (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >std::_fl::shared_ptr<flutter::DlColorSource const>& std::_fl::shared_ptr<flutter::DlColorSource const>::operator=[abi:v15000]<flutter::DlColorSource, void>(std::_fl::shared_ptr<flutter::DlColorSource>&&) (0.40%)</title> | |
<rect ry="2" rx="2" width="4.720001" height="15.0" fill="rgb(250,51,16)" y="2003.0" x="321.52002"/> | |
<text font-family="Verdana" font-size="12" x="324.52" y="2013.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DlColor::withColorSpace(flutter::DlColorSpace) const (0.50%)')" onmouseout="c()"><title >flutter::DlColor::withColorSpace(flutter::DlColorSpace) const (0.50%)</title> | |
<rect fill="rgb(223,93,45)" rx="2" ry="2" y="2019.0" height="15.0" x="327.42" width="5.899994"/> | |
<text x="330.42" font-size="12" y="2029.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Dart_TypedDataAcquireData (0.30%)')" onmouseout="c()"><title >Dart_TypedDataAcquireData (0.30%)</title> | |
<rect fill="rgb(230,97,42)" rx="2" ry="2" y="2019.0" height="15.0" x="333.32" width="3.5400085"/> | |
<text x="336.32" font-size="12" y="2029.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::StackResource::Init(dart::ThreadState*) (0.30%)')" onmouseout="c()"><title >dart::StackResource::Init(dart::ThreadState*) (0.30%)</title> | |
<rect fill="rgb(232,31,31)" rx="2" ry="2" y="2019.0" height="15.0" x="336.86002" width="3.5400085"/> | |
<text x="339.86" font-size="12" y="2029.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Dart_TypedDataReleaseData (0.20%)')" onclick="zoom(this)"><title >Dart_TypedDataReleaseData (0.20%)</title> | |
<rect fill="rgb(234,163,6)" rx="2" height="15.0" ry="2" width="2.3599854" x="340.40002" y="2019.0"/> | |
<text font-family="Verdana" x="343.40" font-size="12" y="2029.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::DlPaint::setMaskFilter(flutter::DlMaskFilter const*) (0.20%)')" onclick="zoom(this)"><title >flutter::DlPaint::setMaskFilter(flutter::DlMaskFilter const*) (0.20%)</title> | |
<rect fill="rgb(206,151,32)" rx="2" height="15.0" ry="2" width="2.3599854" x="342.76" y="2019.0"/> | |
<text font-family="Verdana" x="345.76" font-size="12" y="2029.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('std::_fl::shared_ptr<flutter::DlMaskFilter const>& std::_fl::shared_ptr<flutter::DlMaskFilter const>::operator=[abi:v15000]<flutter::DlMaskFilter, void>(std::_fl::shared_ptr<flutter::DlMaskFilter>&&) (0.20%)')"><title >std::_fl::shared_ptr<flutter::DlMaskFilter const>& std::_fl::shared_ptr<flutter::DlMaskFilter const>::operator=[abi:v15000]<flutter::DlMaskFilter, void>(std::_fl::shared_ptr<flutter::DlMaskFilter>&&) (0.20%)</title> | |
<rect width="2.3599854" y="2003.0" fill="rgb(249,112,10)" height="15.0" x="342.76" rx="2" ry="2"/> | |
<text x="345.76" y="2013.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::DlPaint::setColorFilter(flutter::DlColorFilter const*) (0.20%)')" onclick="zoom(this)"><title >flutter::DlPaint::setColorFilter(flutter::DlColorFilter const*) (0.20%)</title> | |
<rect fill="rgb(229,50,16)" rx="2" height="15.0" ry="2" width="2.3599854" x="345.12" y="2019.0"/> | |
<text font-family="Verdana" x="348.12" font-size="12" y="2029.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::shared_ptr<flutter::DlColorFilter const>& std::_fl::shared_ptr<flutter::DlColorFilter const>::operator=[abi:v15000]<flutter::DlColorFilter, void>(std::_fl::shared_ptr<flutter::DlColorFilter>&&) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >std::_fl::shared_ptr<flutter::DlColorFilter const>& std::_fl::shared_ptr<flutter::DlColorFilter const>::operator=[abi:v15000]<flutter::DlColorFilter, void>(std::_fl::shared_ptr<flutter::DlColorFilter>&&) (0.10%)</title> | |
<rect ry="2" y="2003.0" height="15.0" width="1.1799927" x="345.12" fill="rgb(245,104,40)" rx="2"/> | |
<text x="348.12" font-size="12" y="2013.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DlPaint::setImageFilter(flutter::DlImageFilter const*) (0.10%)')"><title >flutter::DlPaint::setImageFilter(flutter::DlImageFilter const*) (0.10%)</title> | |
<rect fill="rgb(209,198,0)" rx="2" height="15.0" ry="2" width="1.1799927" x="347.47998" y="2019.0"/> | |
<text font-family="Verdana" x="350.48" font-size="12" y="2029.50"></text> | |
</g> | |
<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()" class="func_g" onclick="zoom(this)"><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 ry="2" y="2003.0" width="1.1799927" height="15.0" fill="rgb(211,89,19)" rx="2" x="347.47998"/> | |
<text x="350.48" font-size="12" font-family="Verdana" y="2013.50"></text> | |
</g> | |
<g onmouseover="s('std::_fl::shared_ptr<flutter::DlColorSource const>& std::_fl::shared_ptr<flutter::DlColorSource const>::operator=[abi:v15000]<flutter::DlColorSource, void>(std::_fl::shared_ptr<flutter::DlColorSource>&&) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >std::_fl::shared_ptr<flutter::DlColorSource const>& std::_fl::shared_ptr<flutter::DlColorSource const>::operator=[abi:v15000]<flutter::DlColorSource, void>(std::_fl::shared_ptr<flutter::DlColorSource>&&) (0.10%)</title> | |
<rect ry="2" y="2019.0" width="1.1799927" height="15.0" fill="rgb(227,75,1)" rx="2" x="348.65997"/> | |
<text x="351.66" font-size="12" font-family="Verdana" y="2029.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::DisplayListBuilder::drawLine(impeller::TPoint<float> const&, impeller::TPoint<float> const&) (20.00%)')"><title >flutter::DisplayListBuilder::drawLine(impeller::TPoint<float> const&, impeller::TPoint<float> const&) (20.00%)</title> | |
<rect width="236.00006" ry="2" fill="rgb(224,213,18)" y="2035.0" x="384.06006" height="15.0" rx="2"/> | |
<text font-size="12" y="2045.50" font-family="Verdana" x="387.06">flutter::DisplayListBuilder::dr..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DisplayListBuilder::AccumulateBounds(SkRect const&, flutter::DisplayListBuilder::SaveInfo&, int) (14.60%)')"><title >flutter::DisplayListBuilder::AccumulateBounds(SkRect const&, flutter::DisplayListBuilder::SaveInfo&, int) (14.60%)</title> | |
<rect x="384.06006" height="15.0" fill="rgb(210,44,28)" width="172.28003" ry="2" rx="2" y="2019.0"/> | |
<text font-size="12" font-family="Verdana" x="387.06" y="2029.50">flutter::DisplayListBu..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DisplayListMatrixClipState::mapAndClipRect(SkRect const&, SkRect*) const (12.50%)')"><title >flutter::DisplayListMatrixClipState::mapAndClipRect(SkRect const&, SkRect*) const (12.50%)</title> | |
<rect y="2003.0" fill="rgb(208,144,45)" rx="2" ry="2" height="15.0" x="384.06006" width="147.5"/> | |
<text y="2013.50" font-size="12" font-family="Verdana" x="387.06">flutter::DisplayLi..</text> | |
</g> | |
<g onmouseover="s('impeller::TRect<float>::TransformAndClipBounds(impeller::Matrix const&) const (9.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >impeller::TRect<float>::TransformAndClipBounds(impeller::Matrix const&) const (9.20%)</title> | |
<rect height="15.0" ry="2" fill="rgb(252,190,7)" x="384.06006" width="108.56003" rx="2" y="1987.0"/> | |
<text font-size="12" font-family="Verdana" y="1997.50" x="387.06">impeller::TRe..</text> | |
</g> | |
<g onmouseover="s('impeller::TRect<float>::TransformBounds(impeller::Matrix const&) const (7.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >impeller::TRect<float>::TransformBounds(impeller::Matrix const&) const (7.60%)</title> | |
<rect width="89.68002" y="1971.0" x="384.06006" rx="2" fill="rgb(253,175,1)" ry="2" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="1981.50" x="387.06">impeller::..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('impeller::Matrix::operator*(impeller::TPoint<float> const&) const (3.80%)')" onclick="zoom(this)"><title >impeller::Matrix::operator*(impeller::TPoint<float> const&) const (3.80%)</title> | |
<rect x="384.06006" width="44.839996" y="1955.0" rx="2" ry="2" height="15.0" fill="rgb(207,38,54)"/> | |
<text x="387.06" y="1965.50" font-family="Verdana" font-size="12">impe..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('impeller::TRect<float>::GetTransformedPoints(impeller::Matrix const&) const (1.10%)')" onclick="zoom(this)"><title >impeller::TRect<float>::GetTransformedPoints(impeller::Matrix const&) const (1.10%)</title> | |
<rect x="428.90005" width="12.980011" y="1955.0" rx="2" ry="2" height="15.0" fill="rgb(229,53,24)"/> | |
<text x="431.90" y="1965.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('impeller::TRect<float>::GetTransformedPoints(impeller::Matrix const&) const (0.20%)')" onclick="zoom(this)"><title >impeller::TRect<float>::GetTransformedPoints(impeller::Matrix const&) const (0.20%)</title> | |
<rect width="2.3599854" height="15.0" rx="2" ry="2" y="1971.0" x="473.74008" fill="rgb(247,191,43)"/> | |
<text x="476.74" font-size="12" font-family="Verdana" y="1981.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('impeller::TRect<float>::IntersectsWithRect(impeller::TRect<float> const&) const (2.10%)')" onclick="zoom(this)" class="func_g"><title >impeller::TRect<float>::IntersectsWithRect(impeller::TRect<float> const&) const (2.10%)</title> | |
<rect width="24.779999" height="15.0" rx="2" ry="2" y="1987.0" x="492.6201" fill="rgb(219,215,30)"/> | |
<text y="1997.50" font-size="12" font-family="Verdana" x="495.62">i..</text> | |
</g> | |
<g onmouseover="s('impeller::TRect<float>::TransformBounds(impeller::Matrix const&) const (0.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::TRect<float>::TransformBounds(impeller::Matrix const&) const (0.60%)</title> | |
<rect width="7.080017" height="15.0" rx="2" ry="2" y="1987.0" x="517.4001" fill="rgb(207,184,14)"/> | |
<text x="520.40" y="1997.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('impeller::TRect<float>::Intersection(impeller::TRect<float> const&) const (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::TRect<float>::Intersection(impeller::TRect<float> const&) const (0.40%)</title> | |
<rect width="4.7199707" height="15.0" rx="2" ry="2" y="1987.0" x="524.4801" fill="rgb(254,29,47)"/> | |
<text x="527.48" y="1997.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('impeller::TRect<float>::Intersection(impeller::TRect<float> const&) const (0.70%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::TRect<float>::Intersection(impeller::TRect<float> const&) const (0.70%)</title> | |
<rect width="8.26001" height="15.0" rx="2" ry="2" y="2003.0" x="531.56006" fill="rgb(206,19,38)"/> | |
<text x="534.56" y="2013.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_platform_memmove (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_platform_memmove (0.50%)</title> | |
<rect width="5.9000244" height="15.0" rx="2" ry="2" y="2003.0" x="539.82007" fill="rgb(251,95,29)"/> | |
<text x="542.82" y="2013.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('impeller::TRect<float>::TransformAndClipBounds(impeller::Matrix const&) const (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::TRect<float>::TransformAndClipBounds(impeller::Matrix const&) const (0.20%)</title> | |
<rect width="2.3599854" height="15.0" rx="2" ry="2" y="2003.0" x="545.7201" fill="rgb(208,84,20)"/> | |
<text x="548.72" y="2013.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('void* flutter::DisplayListBuilder::Push<flutter::DrawLineOp, impeller::TPoint<float> const&, impeller::TPoint<float> const&>(unsigned long, impeller::TPoint<float> const&, impeller::TPoint<float> const&) (1.30%)')"><title >void* flutter::DisplayListBuilder::Push<flutter::DrawLineOp, impeller::TPoint<float> const&, impeller::TPoint<float> const&>(unsigned long, impeller::TPoint<float> const&, impeller::TPoint<float> const&) (1.30%)</title> | |
<rect width="15.340027" height="15.0" rx="2" ry="2" y="2019.0" x="556.3401" fill="rgb(233,93,40)"/> | |
<text x="559.34" y="2029.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayListStorage::realloc(unsigned long) (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayListStorage::realloc(unsigned long) (0.50%)</title> | |
<rect rx="2" y="2003.0" fill="rgb(240,167,49)" ry="2" x="556.3401" height="15.0" width="5.9000244"/> | |
<text y="2013.50" x="559.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_realloc (0.50%)')"><title >_realloc (0.50%)</title> | |
<rect y="1987.0" x="556.3401" width="5.9000244" height="15.0" fill="rgb(235,173,29)" rx="2" ry="2"/> | |
<text y="1997.50" font-size="12" font-family="Verdana" x="559.34"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_malloc_zone_realloc (0.50%)')" class="func_g"><title >_malloc_zone_realloc (0.50%)</title> | |
<rect ry="2" y="1971.0" fill="rgb(224,63,6)" width="5.9000244" height="15.0" rx="2" x="556.3401"/> | |
<text x="559.34" y="1981.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('szone_realloc (0.50%)')"><title >szone_realloc (0.50%)</title> | |
<rect fill="rgb(252,5,45)" width="5.9000244" rx="2" x="556.3401" height="15.0" y="1955.0" ry="2"/> | |
<text y="1965.50" font-family="Verdana" x="559.34" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_platform_memmove (0.50%)')" onmouseout="c()"><title >_platform_memmove (0.50%)</title> | |
<rect rx="2" height="15.0" ry="2" x="556.3401" fill="rgb(227,54,35)" y="1939.0" width="5.9000244"/> | |
<text x="559.34" y="1949.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__bzero (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >__bzero (0.30%)</title> | |
<rect rx="2" y="2003.0" fill="rgb(234,151,36)" ry="2" x="562.2401" height="15.0" width="3.539978"/> | |
<text y="2013.50" x="565.24" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::DisplayListBuilder::PaintResult(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (1.20%)')" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::PaintResult(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (1.20%)</title> | |
<rect width="14.159973" height="15.0" rx="2" ry="2" y="2019.0" x="571.6801" fill="rgb(240,171,46)"/> | |
<text x="574.68" y="2029.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DisplayListBuilder::GetEffectiveColor(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.60%)')"><title >flutter::DisplayListBuilder::GetEffectiveColor(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.60%)</title> | |
<rect rx="2" y="2003.0" fill="rgb(206,212,24)" ry="2" x="571.6801" height="15.0" width="7.080017"/> | |
<text font-size="12" y="2013.50" font-family="Verdana" x="574.68"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::AccumulateOpBounds(SkRect&, flutter::DisplayListAttributeFlags) (0.80%)')" onmouseout="c()" class="func_g"><title >flutter::DisplayListBuilder::AccumulateOpBounds(SkRect&, flutter::DisplayListAttributeFlags) (0.80%)</title> | |
<rect fill="rgb(253,32,5)" y="2019.0" rx="2" width="9.440002" ry="2" x="585.8401" height="15.0"/> | |
<text x="588.84" font-size="12" font-family="Verdana" y="2029.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DisplayListBuilder::AdjustBoundsForPaint(SkRect&, flutter::DisplayListAttributeFlags) (0.80%)')" onmouseout="c()"><title >flutter::DisplayListBuilder::AdjustBoundsForPaint(SkRect&, flutter::DisplayListAttributeFlags) (0.80%)</title> | |
<rect fill="rgb(228,148,16)" rx="2" height="15.0" ry="2" width="9.440002" x="585.8401" y="2003.0"/> | |
<text x="588.84" font-size="12" font-family="Verdana" y="2013.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::AccumulationRect::accumulate(SkRect) (0.40%)')" class="func_g" onclick="zoom(this)"><title >flutter::AccumulationRect::accumulate(SkRect) (0.40%)</title> | |
<rect width="4.7199707" height="15.0" rx="2" ry="2" y="2019.0" x="595.2801" fill="rgb(245,96,42)"/> | |
<text x="598.28" y="2029.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::AdjustBoundsForPaint(SkRect&, flutter::DisplayListAttributeFlags) (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::AdjustBoundsForPaint(SkRect&, flutter::DisplayListAttributeFlags) (0.40%)</title> | |
<rect width="4.7199707" height="15.0" rx="2" ry="2" y="2019.0" x="600.0001" fill="rgb(216,78,16)"/> | |
<text y="2029.50" font-size="12" x="603.00" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::DisplayListMatrixClipState::mapAndClipRect(SkRect const&, SkRect*) const (0.30%)')"><title >flutter::DisplayListMatrixClipState::mapAndClipRect(SkRect const&, SkRect*) const (0.30%)</title> | |
<rect y="2019.0" height="15.0" fill="rgb(229,100,5)" x="604.7201" rx="2" width="3.539978" ry="2"/> | |
<text x="607.72" font-family="Verdana" y="2029.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::GetEffectiveColor(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.10%)')" onmouseout="c()"><title >flutter::DisplayListBuilder::GetEffectiveColor(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.10%)</title> | |
<rect y="2019.0" height="15.0" fill="rgb(235,10,46)" x="608.26013" rx="2" width="1.1799927" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="611.26" y="2029.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('virtual thunk to flutter::DisplayListBuilder::DrawLine(impeller::TPoint<float> const&, impeller::TPoint<float> const&, flutter::DlPaint const&) (6.00%)')" onmouseout="c()" class="func_g"><title >virtual thunk to flutter::DisplayListBuilder::DrawLine(impeller::TPoint<float> const&, impeller::TPoint<float> const&, flutter::DlPaint const&) (6.00%)</title> | |
<rect y="2035.0" height="15.0" fill="rgb(236,57,42)" x="620.0601" rx="2" width="70.79999" ry="2"/> | |
<text x="623.06" font-family="Verdana" y="2045.50" font-size="12">virtual..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::SetAttributesFromPaint(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (3.30%)')" onmouseout="c()" class="func_g"><title >flutter::DisplayListBuilder::SetAttributesFromPaint(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (3.30%)</title> | |
<rect fill="rgb(237,137,1)" ry="2" width="38.940002" height="15.0" rx="2" x="620.0601" y="2019.0"/> | |
<text font-family="Verdana" x="623.06" y="2029.50" font-size="12">flu..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('bool flutter::Equals<flutter::DlImageFilter>(flutter::DlImageFilter const*, flutter::DlImageFilter const*) (0.40%)')" onmouseout="c()"><title >bool flutter::Equals<flutter::DlImageFilter>(flutter::DlImageFilter const*, flutter::DlImageFilter const*) (0.40%)</title> | |
<rect ry="2" y="2003.0" height="15.0" rx="2" fill="rgb(241,88,46)" width="4.7200317" x="620.0601"/> | |
<text font-family="Verdana" y="2013.50" font-size="12" x="623.06"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setImageFilter(flutter::DlImageFilter const*) (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayListBuilder::setImageFilter(flutter::DlImageFilter const*) (0.40%)</title> | |
<rect height="15.0" fill="rgb(233,62,33)" x="624.78015" width="4.7199707" ry="2" y="2003.0" rx="2"/> | |
<text y="2013.50" x="627.78" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('bool flutter::Equals<flutter::DlColorSource>(flutter::DlColorSource const*, flutter::DlColorSource const*) (0.40%)')" onmouseout="c()"><title >bool flutter::Equals<flutter::DlColorSource>(flutter::DlColorSource const*, flutter::DlColorSource const*) (0.40%)</title> | |
<rect width="4.7199707" fill="rgb(253,118,43)" y="2003.0" x="629.5001" height="15.0" rx="2" ry="2"/> | |
<text font-size="12" y="2013.50" x="632.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setColorFilter(flutter::DlColorFilter const*) (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::setColorFilter(flutter::DlColorFilter const*) (0.30%)</title> | |
<rect height="15.0" fill="rgb(211,186,14)" x="634.2201" width="3.539978" ry="2" y="2003.0" rx="2"/> | |
<text y="2013.50" x="637.22" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setColorSource(flutter::DlColorSource const*) (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::setColorSource(flutter::DlColorSource const*) (0.20%)</title> | |
<rect height="15.0" fill="rgb(255,73,0)" x="637.76013" width="2.3599854" ry="2" y="2003.0" rx="2"/> | |
<text y="2013.50" x="640.76" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setMaskFilter(flutter::DlMaskFilter const*) (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::setMaskFilter(flutter::DlMaskFilter const*) (0.20%)</title> | |
<rect height="15.0" fill="rgb(216,15,39)" x="640.1201" width="2.3599854" ry="2" y="2003.0" rx="2"/> | |
<text y="2013.50" x="643.12" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('bool flutter::Equals<flutter::DlColorFilter>(flutter::DlColorFilter const*, flutter::DlColorFilter const*) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >bool flutter::Equals<flutter::DlColorFilter>(flutter::DlColorFilter const*, flutter::DlColorFilter const*) (0.10%)</title> | |
<rect height="15.0" fill="rgb(214,15,22)" x="642.4801" width="1.1799927" ry="2" y="2003.0" rx="2"/> | |
<text y="2013.50" x="645.48" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setColorSource(flutter::DlColorSource const*) (0.70%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::setColorSource(flutter::DlColorSource const*) (0.70%)</title> | |
<rect height="15.0" width="8.26001" fill="rgb(222,176,10)" ry="2" x="659.0001" y="2019.0" rx="2"/> | |
<text y="2029.50" x="662.00" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setStrokeJoin(flutter::DlStrokeJoin) (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::DisplayListBuilder::setStrokeJoin(flutter::DlStrokeJoin) (0.40%)</title> | |
<rect height="15.0" width="4.7199707" fill="rgb(235,162,16)" ry="2" x="667.26013" y="2019.0" rx="2"/> | |
<text font-family="Verdana" y="2029.50" font-size="12" x="670.26"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setColorFilter(flutter::DlColorFilter const*) (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::DisplayListBuilder::setColorFilter(flutter::DlColorFilter const*) (0.30%)</title> | |
<rect height="15.0" width="3.539978" fill="rgb(209,168,2)" ry="2" x="671.9801" y="2019.0" rx="2"/> | |
<text font-family="Verdana" y="2029.50" font-size="12" x="674.98"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::setMaskFilter(flutter::DlMaskFilter const*) (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::DisplayListBuilder::setMaskFilter(flutter::DlMaskFilter const*) (0.30%)</title> | |
<rect height="15.0" width="3.539978" fill="rgb(225,4,34)" ry="2" x="675.52014" y="2019.0" rx="2"/> | |
<text font-family="Verdana" y="2029.50" font-size="12" x="678.52"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::DisplayListBuilder::setStrokeCap(flutter::DlStrokeCap) (0.20%)')" onclick="zoom(this)" class="func_g"><title >flutter::DisplayListBuilder::setStrokeCap(flutter::DlStrokeCap) (0.20%)</title> | |
<rect height="15.0" width="2.3599854" fill="rgb(224,26,22)" ry="2" x="679.0601" y="2019.0" rx="2"/> | |
<text x="682.06" y="2029.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::DisplayListBuilder::setImageFilter(flutter::DlImageFilter const*) (0.10%)')" onclick="zoom(this)" class="func_g"><title >flutter::DisplayListBuilder::setImageFilter(flutter::DlImageFilter const*) (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(207,99,43)" ry="2" x="681.4201" y="2019.0" rx="2"/> | |
<text x="684.42" y="2029.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::DisplayListBuilder::setColor(flutter::DlColor) (0.10%)')" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::setColor(flutter::DlColor) (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(232,206,52)" ry="2" x="682.60016" y="2019.0" rx="2"/> | |
<text x="685.60" y="2029.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::DisplayListBuilder::setAntiAlias(bool) (0.10%)')" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::setAntiAlias(bool) (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(246,122,34)" ry="2" x="683.78015" y="2019.0" rx="2"/> | |
<text x="686.78" y="2029.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('void* flutter::DisplayListBuilder::Push<flutter::DrawLineOp, impeller::TPoint<float> const&, impeller::TPoint<float> const&>(unsigned long, impeller::TPoint<float> const&, impeller::TPoint<float> const&) (0.50%)')" onmouseout="c()" class="func_g"><title >void* flutter::DisplayListBuilder::Push<flutter::DrawLineOp, impeller::TPoint<float> const&, impeller::TPoint<float> const&>(unsigned long, impeller::TPoint<float> const&, impeller::TPoint<float> const&) (0.50%)</title> | |
<rect height="15.0" width="5.9000244" fill="rgb(226,122,35)" ry="2" x="690.8601" y="2035.0" rx="2"/> | |
<text x="693.86" y="2045.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Dart_IsNull (0.50%)')"><title >Dart_IsNull (0.50%)</title> | |
<rect height="15.0" width="5.9000244" fill="rgb(252,36,24)" ry="2" x="696.76013" y="2035.0" rx="2"/> | |
<text x="699.76" font-family="Verdana" y="2045.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::SetAttributesFromPaint(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.40%)')" onmouseout="c()" class="func_g"><title >flutter::DisplayListBuilder::SetAttributesFromPaint(flutter::DlPaint const&, flutter::DisplayListAttributeFlags) (0.40%)</title> | |
<rect height="15.0" width="4.7199707" fill="rgb(216,13,55)" ry="2" x="702.66016" y="2035.0" rx="2"/> | |
<text x="705.66" y="2045.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::AccumulateBounds(SkRect const&, flutter::DisplayListBuilder::SaveInfo&, int) (0.40%)')" onmouseout="c()" class="func_g"><title >flutter::DisplayListBuilder::AccumulateBounds(SkRect const&, flutter::DisplayListBuilder::SaveInfo&, int) (0.40%)</title> | |
<rect height="15.0" width="4.7199707" fill="rgb(225,8,20)" ry="2" x="707.3801" y="2035.0" rx="2"/> | |
<text x="710.38" y="2045.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::DlColor::withColorSpace(flutter::DlColorSpace) const (0.30%)')"><title >flutter::DlColor::withColorSpace(flutter::DlColorSpace) const (0.30%)</title> | |
<rect height="15.0" width="3.539978" fill="rgb(209,160,48)" ry="2" x="712.1001" y="2035.0" rx="2"/> | |
<text x="715.10" font-family="Verdana" y="2045.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::DlPaint::setMaskFilter(flutter::DlMaskFilter const*) (0.20%)')"><title >flutter::DlPaint::setMaskFilter(flutter::DlMaskFilter const*) (0.20%)</title> | |
<rect height="15.0" width="2.3599854" fill="rgb(245,228,10)" ry="2" x="715.6401" y="2035.0" rx="2"/> | |
<text x="718.64" font-family="Verdana" y="2045.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('tonic::DartByteData::~DartByteData() (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >tonic::DartByteData::~DartByteData() (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(227,16,7)" ry="2" x="718.00006" y="2035.0" rx="2"/> | |
<text y="2045.50" font-family="Verdana" x="721.00" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DlPaint::setColorSource(flutter::DlColorSource const*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DlPaint::setColorSource(flutter::DlColorSource const*) (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(208,104,18)" ry="2" x="719.18005" y="2035.0" rx="2"/> | |
<text y="2045.50" font-family="Verdana" x="722.18" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DlPaint::setImageFilter(flutter::DlImageFilter const*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DlPaint::setImageFilter(flutter::DlImageFilter const*) (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(240,169,26)" ry="2" x="720.36005" y="2035.0" rx="2"/> | |
<text y="2045.50" font-family="Verdana" x="723.36" font-size="12"></text> | |
</g> | |
<g onmouseover="s('tonic::DartByteData::DartByteData(_Dart_Handle*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >tonic::DartByteData::DartByteData(_Dart_Handle*) (0.10%)</title> | |
<rect height="15.0" width="1.1799927" fill="rgb(220,86,47)" ry="2" x="721.54004" y="2035.0" rx="2"/> | |
<text y="2045.50" font-family="Verdana" x="724.54" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DlPaint::DlPaint(flutter::DlColor) (0.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DlPaint::DlPaint(flutter::DlColor) (0.90%)</title> | |
<rect height="15.0" width="10.619995" fill="rgb(232,16,33)" ry="2" x="752.22015" y="2051.0" rx="2"/> | |
<text y="2061.50" font-family="Verdana" x="755.22" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::drawLine(impeller::TPoint<float> const&, impeller::TPoint<float> const&) (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::drawLine(impeller::TPoint<float> const&, impeller::TPoint<float> const&) (0.50%)</title> | |
<rect height="15.0" width="5.9000244" fill="rgb(240,54,23)" ry="2" x="762.84015" y="2051.0" rx="2"/> | |
<text y="2061.50" font-family="Verdana" x="765.84" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::Paint::paint(flutter::DlPaint&, flutter::DisplayListAttributeFlags const&) const (0.30%)')" onclick="zoom(this)" class="func_g"><title >flutter::Paint::paint(flutter::DlPaint&, flutter::DisplayListAttributeFlags const&) const (0.30%)</title> | |
<rect height="15.0" width="3.539978" fill="rgb(226,37,0)" ry="2" x="768.7402" y="2051.0" rx="2"/> | |
<text x="771.74" font-family="Verdana" y="2061.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::Paint::Paint(_Dart_Handle*, _Dart_Handle*) (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::Paint::Paint(_Dart_Handle*, _Dart_Handle*) (0.20%)</title> | |
<rect height="15.0" width="2.3599854" fill="rgb(249,107,30)" ry="2" x="772.28015" y="2051.0" rx="2"/> | |
<text y="2061.50" font-family="Verdana" x="775.28" font-size="12"></text> | |
</g> | |
<g onmouseover="s('stub CallNativeThroughSafepoint (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (0.20%)</title> | |
<rect height="15.0" width="2.3599854" fill="rgb(246,221,51)" ry="2" x="774.64014" y="2051.0" rx="2"/> | |
<text y="2061.50" font-family="Verdana" x="777.64" font-size="12"></text> | |
</g> | |
<g onmouseover="s('NativeCanvas.__drawLine$Method$FfiNative (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >NativeCanvas.__drawLine$Method$FfiNative (0.40%)</title> | |
<rect height="15.0" width="4.7200317" fill="rgb(248,28,35)" ry="2" x="781.72015" y="2067.0" rx="2"/> | |
<text y="2077.50" font-family="Verdana" x="784.72" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('stub CallNativeThroughSafepoint (0.20%)')"><title >stub CallNativeThroughSafepoint (0.20%)</title> | |
<rect height="15.0" rx="2" fill="rgb(249,41,6)" y="2051.0" ry="2" x="781.72015" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" y="2061.50" x="784.72"></text> | |
</g> | |
<g onmouseover="s('0xd (5.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0xd (5.90%)</title> | |
<rect height="15.0" rx="2" fill="rgb(251,22,35)" y="2083.0" ry="2" x="804.1402" width="69.619995"/> | |
<text y="2093.50" font-family="Verdana" x="807.14" font-size="12">0xd</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('NativeCanvas.__drawLine$Method$FfiNative (5.60%)')"><title >NativeCanvas.__drawLine$Method$FfiNative (5.60%)</title> | |
<rect height="15.0" width="66.08002" fill="rgb(229,19,55)" ry="2" x="804.1402" y="2067.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="2077.50" x="807.14">NativeC..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::Thread::ExitApiScope() (2.20%)')" class="func_g" onclick="zoom(this)"><title >dart::Thread::ExitApiScope() (2.20%)</title> | |
<rect width="25.960022" x="804.1402" y="2051.0" height="15.0" fill="rgb(219,69,4)" ry="2" rx="2"/> | |
<text font-size="12" x="807.14" y="2061.50" font-family="Verdana">d..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('dart::Zone::Reset() (1.60%)')"><title >dart::Zone::Reset() (1.60%)</title> | |
<rect y="2035.0" rx="2" width="18.880005" fill="rgb(217,179,20)" height="15.0" x="804.1402" ry="2"/> | |
<text y="2045.50" x="807.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('DLRT_EnterHandleScope (1.30%)')" class="func_g" onclick="zoom(this)"><title >DLRT_EnterHandleScope (1.30%)</title> | |
<rect width="15.340027" x="830.1002" y="2051.0" height="15.0" fill="rgb(250,94,31)" ry="2" rx="2"/> | |
<text font-size="12" x="833.10" y="2061.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::Thread::EnterApiScope() (0.70%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dart::Thread::EnterApiScope() (0.70%)</title> | |
<rect rx="2" x="830.1002" fill="rgb(252,130,51)" ry="2" height="15.0" width="8.26001" y="2035.0"/> | |
<text y="2045.50" x="833.10" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dart::Zone::Reset() (0.80%)')" onclick="zoom(this)"><title >dart::Zone::Reset() (0.80%)</title> | |
<rect ry="2" fill="rgb(206,161,4)" height="15.0" rx="2" width="9.440002" x="845.4402" y="2051.0"/> | |
<text font-family="Verdana" x="848.44" font-size="12" y="2061.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::Thread::EnterApiScope() (0.50%)')" class="func_g"><title >dart::Thread::EnterApiScope() (0.50%)</title> | |
<rect ry="2" fill="rgb(208,102,33)" height="15.0" rx="2" width="5.9000244" x="854.8802" y="2051.0"/> | |
<text x="857.88" y="2061.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('DLRT_EnterHandleScope (0.20%)')" onclick="zoom(this)" class="func_g"><title >DLRT_EnterHandleScope (0.20%)</title> | |
<rect height="15.0" width="2.3599854" fill="rgb(238,15,6)" ry="2" x="870.2202" y="2067.0" rx="2"/> | |
<text x="873.22" y="2077.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectParameterizedStub (0.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub _iso_stub_AllocateObjectParameterizedStub (0.60%)</title> | |
<rect height="15.0" rx="2" fill="rgb(210,221,55)" y="2099.0" ry="2" x="876.1202" width="7.080017"/> | |
<text y="2109.50" font-family="Verdana" x="879.12" font-size="12"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateObjectStub (0.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub _iso_stub_AllocateObjectStub (0.60%)</title> | |
<rect height="15.0" rx="2" fill="rgb(221,33,13)" y="2115.0" ry="2" x="899.7202" width="7.080017"/> | |
<text y="2125.50" font-family="Verdana" x="902.72" font-size="12"></text> | |
</g> | |
<g onmouseover="s('stub _iso_stub_AllocateRecord2Stub (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub _iso_stub_AllocateRecord2Stub (0.40%)</title> | |
<rect height="15.0" rx="2" fill="rgb(218,177,15)" y="2115.0" ry="2" x="906.80023" width="4.7200317"/> | |
<text y="2125.50" font-family="Verdana" x="909.80" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('stub CallToRuntime (0.10%)')" onclick="zoom(this)" class="func_g"><title >stub CallToRuntime (0.10%)</title> | |
<rect ry="2" fill="rgb(225,62,6)" height="15.0" rx="2" width="1.1799927" x="906.80023" y="2099.0"/> | |
<text x="909.80" y="2109.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::DRT_AllocateSmallRecord(dart::NativeArguments) (0.10%)')"><title >dart::DRT_AllocateSmallRecord(dart::NativeArguments) (0.10%)</title> | |
<rect y="2083.0" rx="2" x="906.80023" height="15.0" ry="2" width="1.1799927" fill="rgb(243,227,4)"/> | |
<text font-family="Verdana" y="2093.50" font-size="12" x="909.80"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dart::Record::New(dart::RecordShape, dart::Heap::Space) (0.10%)')" onmouseout="c()"><title >dart::Record::New(dart::RecordShape, dart::Heap::Space) (0.10%)</title> | |
<rect x="906.80023" fill="rgb(232,117,41)" y="2067.0" ry="2" rx="2" width="1.1799927" height="15.0"/> | |
<text y="2077.50" font-family="Verdana" font-size="12" x="909.80"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.10%)')" onclick="zoom(this)"><title >dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.10%)</title> | |
<rect x="906.80023" y="2051.0" width="1.1799927" height="15.0" ry="2" fill="rgb(221,221,43)" rx="2"/> | |
<text font-size="12" x="909.80" y="2061.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::Heap::AllocateNew(dart::Thread*, long) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dart::Heap::AllocateNew(dart::Thread*, long) (0.10%)</title> | |
<rect rx="2" fill="rgb(249,152,14)" ry="2" height="15.0" y="2035.0" x="906.80023" width="1.1799927"/> | |
<text font-family="Verdana" x="909.80" y="2045.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('stub AllocateObjectSlow (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >stub AllocateObjectSlow (0.30%)</title> | |
<rect height="15.0" rx="2" fill="rgb(237,105,54)" y="2115.0" ry="2" x="911.52026" width="3.539978"/> | |
<text y="2125.50" font-family="Verdana" x="914.52" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('stub CallToRuntime (0.30%)')" class="func_g" onclick="zoom(this)"><title >stub CallToRuntime (0.30%)</title> | |
<rect y="2099.0" rx="2" x="911.52026" height="15.0" ry="2" width="3.539978" fill="rgb(241,21,37)"/> | |
<text font-size="12" x="914.52" y="2109.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::DRT_AllocateObject(dart::NativeArguments) (0.30%)')" onclick="zoom(this)" class="func_g"><title >dart::DRT_AllocateObject(dart::NativeArguments) (0.30%)</title> | |
<rect x="911.52026" y="2083.0" width="3.539978" height="15.0" ry="2" fill="rgb(231,110,42)" rx="2"/> | |
<text x="914.52" y="2093.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.30%)')"><title >dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.30%)</title> | |
<rect width="3.539978" x="911.52026" fill="rgb(206,87,29)" y="2067.0" rx="2" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="2077.50" font-size="12" x="914.52"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dart::Heap::AllocateNew(dart::Thread*, long) (0.30%)')" onclick="zoom(this)"><title >dart::Heap::AllocateNew(dart::Thread*, long) (0.30%)</title> | |
<rect x="911.52026" height="15.0" width="3.539978" rx="2" fill="rgb(254,87,53)" ry="2" y="2051.0"/> | |
<text y="2061.50" font-size="12" font-family="Verdana" x="914.52"></text> | |
</g> | |
<g onmouseover="s('dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.30%)</title> | |
<rect y="2035.0" x="911.52026" width="3.539978" rx="2" ry="2" fill="rgb(226,17,32)" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="2045.50" x="914.52"></text> | |
</g> | |
<g onmouseover="s('dart::Scavenger::Scavenge(dart::Thread*, dart::GCType, dart::GCReason) (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dart::Scavenger::Scavenge(dart::Thread*, dart::GCType, dart::GCReason) (0.30%)</title> | |
<rect fill="rgb(222,161,16)" width="3.539978" ry="2" height="15.0" rx="2" x="911.52026" y="2019.0"/> | |
<text font-family="Verdana" font-size="12" x="914.52" y="2029.50"></text> | |
</g> | |
<g onmouseover="s('dart::Scavenger::ParallelScavenge(dart::SemiSpace*) (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dart::Scavenger::ParallelScavenge(dart::SemiSpace*) (0.30%)</title> | |
<rect width="3.539978" y="2003.0" fill="rgb(236,48,40)" height="15.0" rx="2" x="911.52026" ry="2"/> | |
<text y="2013.50" x="914.52" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (0.20%)</title> | |
<rect height="15.0" x="911.52026" ry="2" y="1987.0" width="2.3599854" fill="rgb(243,183,46)" rx="2"/> | |
<text y="1997.50" font-size="12" font-family="Verdana" x="914.52"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::ParallelScavengerTask::RunEnteredIsolateGroup() (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >dart::ParallelScavengerTask::RunEnteredIsolateGroup() (0.20%)</title> | |
<rect ry="2" height="15.0" fill="rgb(232,137,47)" y="1971.0" width="2.3599854" x="911.52026" rx="2"/> | |
<text x="914.52" y="1981.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::ScavengerVisitorBase<true>::ProcessRoots() (0.10%)')" class="func_g" onmouseout="c()"><title >dart::ScavengerVisitorBase<true>::ProcessRoots() (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1799927" x="911.52026" y="1955.0" height="15.0" fill="rgb(230,145,0)"/> | |
<text font-size="12" x="914.52" y="1965.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('void dart::Scavenger::IterateRoots<true>(dart::ScavengerVisitorBase<true>*) (0.10%)')" onclick="zoom(this)"><title >void dart::Scavenger::IterateRoots<true>(dart::ScavengerVisitorBase<true>*) (0.10%)</title> | |
<rect x="911.52026" ry="2" y="1939.0" width="1.1799927" fill="rgb(231,110,7)" height="15.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="914.52" y="1949.50"></text> | |
</g> | |
<g onmouseover="s('dart::IsolateGroup::VisitObjectPointers(dart::ObjectPointerVisitor*, dart::ValidationPolicy) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dart::IsolateGroup::VisitObjectPointers(dart::ObjectPointerVisitor*, dart::ValidationPolicy) (0.10%)</title> | |
<rect width="1.1799927" x="911.52026" height="15.0" rx="2" fill="rgb(252,96,48)" y="1923.0" ry="2"/> | |
<text font-size="12" y="1933.50" x="914.52" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('PaintingContext.stopRecordingIfNeeded (3.40%)')"><title >PaintingContext.stopRecordingIfNeeded (3.40%)</title> | |
<rect height="15.0" rx="2" fill="rgb(251,154,25)" y="2227.0" ry="2" x="949.2802" width="40.119995"/> | |
<text y="2237.50" font-family="Verdana" x="952.28" font-size="12">Pai..</text> | |
</g> | |
<g onmouseover="s('NativePictureRecorder.endRecording (3.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >NativePictureRecorder.endRecording (3.40%)</title> | |
<rect x="949.2802" y="2211.0" width="40.119995" height="15.0" ry="2" fill="rgb(253,70,25)" rx="2"/> | |
<text x="952.28" y="2221.50" font-size="12" font-family="Verdana">Nat..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_NativePictureRecorder._endRecording (3.40%)')" onclick="zoom(this)" class="func_g"><title >_NativePictureRecorder._endRecording (3.40%)</title> | |
<rect width="40.119995" x="949.2802" fill="rgb(233,151,21)" y="2195.0" rx="2" ry="2" height="15.0"/> | |
<text x="952.28" y="2205.50" font-size="12" font-family="Verdana">_Na..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('NativePictureRecorder.__endRecording$Method$FfiNative (3.40%)')"><title >NativePictureRecorder.__endRecording$Method$FfiNative (3.40%)</title> | |
<rect fill="rgb(211,98,3)" ry="2" y="2179.0" rx="2" width="40.119995" height="15.0" x="949.2802"/> | |
<text font-family="Verdana" y="2189.50" font-size="12" x="952.28">Nat..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (3.40%)')"><title >stub CallNativeThroughSafepoint (3.40%)</title> | |
<rect ry="2" y="2163.0" height="15.0" width="40.119995" x="949.2802" rx="2" fill="rgb(211,150,12)"/> | |
<text x="952.28" font-size="12" font-family="Verdana" y="2173.50">stu..</text> | |
</g> | |
<g onmouseover="s('flutter::PictureRecorder::endRecording(_Dart_Handle*) (3.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::PictureRecorder::endRecording(_Dart_Handle*) (3.40%)</title> | |
<rect fill="rgb(218,106,13)" width="40.119995" ry="2" height="15.0" rx="2" x="949.2802" y="2147.0"/> | |
<text y="2157.50" font-family="Verdana" font-size="12" x="952.28">flu..</text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::Build() (3.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::Build() (3.30%)</title> | |
<rect x="949.2802" height="15.0" width="38.940002" rx="2" y="2131.0" ry="2" fill="rgb(231,86,32)"/> | |
<text y="2141.50" font-family="Verdana" font-size="12" x="952.28">flu..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('SkRect::join(SkRect const&) (1.10%)')" class="func_g"><title >SkRect::join(SkRect const&) (1.10%)</title> | |
<rect rx="2" ry="2" width="12.97998" x="949.2802" y="2115.0" height="15.0" fill="rgb(228,92,54)"/> | |
<text x="952.28" font-size="12" font-family="Verdana" y="2125.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::DlRTree::DlRTree(SkRect const*, int, int const*, bool (*)(int), int) (1.00%)')" class="func_g"><title >flutter::DlRTree::DlRTree(SkRect const*, int, int const*, bool (*)(int), int) (1.00%)</title> | |
<rect rx="2" ry="2" width="11.799988" x="962.2602" y="2115.0" height="15.0" fill="rgb(212,168,37)"/> | |
<text x="965.26" font-size="12" font-family="Verdana" y="2125.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::vector<flutter::DlRTree::Node, std::_fl::allocator<flutter::DlRTree::Node>>::__append(unsigned long) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >std::_fl::vector<flutter::DlRTree::Node, std::_fl::allocator<flutter::DlRTree::Node>>::__append(unsigned long) (0.10%)</title> | |
<rect ry="2" fill="rgb(227,50,10)" height="15.0" y="2099.0" rx="2" width="1.1799927" x="962.2602"/> | |
<text y="2109.50" font-family="Verdana" x="965.26" font-size="12"></text> | |
</g> | |
<g onmouseover="s('__bzero (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__bzero (0.10%)</title> | |
<rect y="2083.0" fill="rgb(215,18,41)" width="1.1799927" height="15.0" ry="2" rx="2" x="962.2602"/> | |
<text x="965.26" font-family="Verdana" y="2093.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayList::DisplayList(flutter::DisplayListStorage&&, unsigned long, unsigned int, unsigned long, unsigned int, unsigned int, SkRect const&, bool, bool, bool, flutter::DlBlendMode, bool, bool, sk_sp<flutter::DlRTree const>) (0.90%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayList::DisplayList(flutter::DisplayListStorage&&, unsigned long, unsigned int, unsigned long, unsigned int, unsigned int, SkRect const&, bool, bool, bool, flutter::DlBlendMode, bool, bool, sk_sp<flutter::DlRTree const>) (0.90%)</title> | |
<rect height="15.0" rx="2" fill="rgb(230,59,37)" ry="2" y="2115.0" x="974.06024" width="10.619995"/> | |
<text x="977.06" y="2125.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_platform_memmove (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_platform_memmove (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(250,78,40)" x="974.06024" y="2099.0" height="15.0" ry="2" rx="2"/> | |
<text font-size="12" y="2109.50" x="977.06" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::Build()::$_0::__invoke(int) (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::Build()::$_0::__invoke(int) (0.20%)</title> | |
<rect height="15.0" rx="2" fill="rgb(244,65,28)" ry="2" y="2115.0" x="984.68024" width="2.3599854"/> | |
<text font-family="Verdana" x="987.68" font-size="12" y="2125.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (1.10%)')"><title >RenderProxyBoxMixin.paint (#2) (1.10%)</title> | |
<rect height="15.0" rx="2" fill="rgb(230,102,50)" y="4323.0" ry="2" x="991.76013" width="12.97998"/> | |
<text y="4333.50" font-family="Verdana" x="994.76" font-size="12"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (1.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (1.10%)</title> | |
<rect fill="rgb(205,16,46)" ry="2" y="4307.0" rx="2" width="12.97998" height="15.0" x="991.76013"/> | |
<text x="994.76" y="4317.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (1.00%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._paintWithContext (1.00%)</title> | |
<rect ry="2" y="4291.0" height="15.0" width="11.799988" x="991.76013" rx="2" fill="rgb(228,74,20)"/> | |
<text x="994.76" font-size="12" font-family="Verdana" y="4301.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderFractionalTranslation.paint (0.60%)')" onclick="zoom(this)"><title >RenderFractionalTranslation.paint (0.60%)</title> | |
<rect x="991.76013" height="15.0" width="7.080017" rx="2" y="4275.0" ry="2" fill="rgb(206,65,19)"/> | |
<text y="4285.50" x="994.76" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.60%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (0.60%)</title> | |
<rect fill="rgb(240,211,47)" width="7.080017" ry="2" height="15.0" rx="2" x="991.76013" y="4259.0"/> | |
<text font-size="12" font-family="Verdana" y="4269.50" x="994.76"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.paintChild (0.60%)</title> | |
<rect x="991.76013" rx="2" fill="rgb(228,39,20)" ry="2" y="4243.0" width="7.080017" height="15.0"/> | |
<text font-family="Verdana" x="994.76" font-size="12" y="4253.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (0.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._paintWithContext (0.60%)</title> | |
<rect width="7.080017" ry="2" x="991.76013" fill="rgb(209,127,24)" y="4227.0" height="15.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="994.76" y="4237.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderFractionalTranslation.paint (0.60%)')" onclick="zoom(this)"><title >RenderFractionalTranslation.paint (0.60%)</title> | |
<rect width="7.080017" height="15.0" fill="rgb(212,115,26)" x="991.76013" rx="2" y="4211.0" ry="2"/> | |
<text y="4221.50" font-family="Verdana" font-size="12" x="994.76"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.60%)')"><title >RenderProxyBoxMixin.paint (#2) (0.60%)</title> | |
<rect x="991.76013" y="4195.0" rx="2" width="7.080017" height="15.0" fill="rgb(221,34,9)" ry="2"/> | |
<text y="4205.50" x="994.76" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (0.60%)')" onmouseout="c()"><title >PaintingContext.paintChild (0.60%)</title> | |
<rect rx="2" y="4179.0" width="7.080017" x="991.76013" fill="rgb(247,95,41)" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="4189.50" x="994.76" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (0.60%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject._paintWithContext (0.60%)</title> | |
<rect rx="2" x="991.76013" width="7.080017" height="15.0" fill="rgb(224,190,27)" ry="2" y="4163.0"/> | |
<text x="994.76" y="4173.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderDecoratedBox.paint (0.60%)')" onclick="zoom(this)"><title >RenderDecoratedBox.paint (0.60%)</title> | |
<rect width="7.080017" fill="rgb(254,212,20)" ry="2" rx="2" x="991.76013" y="4147.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="4157.50" x="994.76"></text> | |
</g> | |
<g onmouseover="s('CupertinoEdgeShadowPainter.paint (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >CupertinoEdgeShadowPainter.paint (0.40%)</title> | |
<rect rx="2" height="15.0" y="4131.0" x="991.76013" ry="2" fill="rgb(222,81,29)" width="4.7199707"/> | |
<text font-family="Verdana" y="4141.50" font-size="12" x="994.76"></text> | |
</g> | |
<g class="func_g" onmouseover="s('NativeCanvas.drawRect (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >NativeCanvas.drawRect (0.20%)</title> | |
<rect x="991.76013" width="2.3599854" height="15.0" fill="rgb(207,96,10)" ry="2" y="4115.0" rx="2"/> | |
<text y="4125.50" x="994.76" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_NativeCanvas._drawRect (0.20%)')"><title >_NativeCanvas._drawRect (0.20%)</title> | |
<rect rx="2" ry="2" x="991.76013" height="15.0" fill="rgb(222,133,5)" width="2.3599854" y="4099.0"/> | |
<text y="4109.50" x="994.76" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('NativeCanvas.__drawRect$Method$FfiNative (0.20%)')" onclick="zoom(this)"><title >NativeCanvas.__drawRect$Method$FfiNative (0.20%)</title> | |
<rect y="4083.0" rx="2" width="2.3599854" height="15.0" fill="rgb(225,155,0)" ry="2" x="991.76013"/> | |
<text font-size="12" y="4093.50" x="994.76" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (0.20%)')" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (0.20%)</title> | |
<rect height="15.0" fill="rgb(219,71,39)" x="991.76013" y="4067.0" width="2.3599854" rx="2" ry="2"/> | |
<text font-size="12" x="994.76" y="4077.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::Canvas::drawRect(double, double, double, double, _Dart_Handle*, _Dart_Handle*) (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::Canvas::drawRect(double, double, double, double, _Dart_Handle*, _Dart_Handle*) (0.20%)</title> | |
<rect ry="2" x="991.76013" fill="rgb(212,204,49)" y="4051.0" width="2.3599854" rx="2" height="15.0"/> | |
<text y="4061.50" font-size="12" font-family="Verdana" x="994.76"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::drawRect(impeller::TRect<float> const&) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListBuilder::drawRect(impeller::TRect<float> const&) (0.10%)</title> | |
<rect y="4035.0" x="991.76013" height="15.0" ry="2" fill="rgb(219,127,13)" width="1.1799927" rx="2"/> | |
<text y="4045.50" x="994.76" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (0.10%)</title> | |
<rect rx="2" height="15.0" y="4131.0" x="996.4801" ry="2" fill="rgb(241,183,50)" width="1.1799927"/> | |
<text font-family="Verdana" y="4141.50" font-size="12" x="999.48"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (0.10%)')" onmouseout="c()"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect y="4115.0" fill="rgb(247,122,6)" rx="2" x="996.4801" height="15.0" width="1.1799927" ry="2"/> | |
<text x="999.48" y="4125.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect x="996.4801" ry="2" y="4099.0" width="1.1799927" fill="rgb(252,194,49)" rx="2" height="15.0"/> | |
<text x="999.48" font-size="12" font-family="Verdana" y="4109.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderStack.paint (0.10%)')"><title >RenderStack.paint (0.10%)</title> | |
<rect ry="2" rx="2" fill="rgb(223,91,18)" y="4083.0" width="1.1799927" height="15.0" x="996.4801"/> | |
<text x="999.48" font-family="Verdana" y="4093.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderStack.paintStack (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderStack.paintStack (0.10%)</title> | |
<rect rx="2" width="1.1799927" x="996.4801" height="15.0" ry="2" y="4067.0" fill="rgb(247,0,49)"/> | |
<text y="4077.50" font-family="Verdana" font-size="12" x="999.48"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderBoxContainerDefaultsMixin.defaultPaint (#2) (0.10%)')" onclick="zoom(this)" class="func_g"><title >RenderBoxContainerDefaultsMixin.defaultPaint (#2) (0.10%)</title> | |
<rect height="15.0" rx="2" ry="2" fill="rgb(250,169,21)" y="4051.0" x="996.4801" width="1.1799927"/> | |
<text font-size="12" y="4061.50" x="999.48" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PaintingContext.paintChild (0.10%)')" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect height="15.0" fill="rgb(223,84,30)" width="1.1799927" y="4035.0" rx="2" x="996.4801" ry="2"/> | |
<text y="4045.50" font-size="12" font-family="Verdana" x="999.48"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (0.10%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect y="4019.0" height="15.0" rx="2" ry="2" width="1.1799927" fill="rgb(214,196,47)" x="996.4801"/> | |
<text x="999.48" font-size="12" font-family="Verdana" y="4029.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.10%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (0.10%)</title> | |
<rect fill="rgb(228,176,55)" rx="2" x="996.4801" y="4003.0" width="1.1799927" ry="2" height="15.0"/> | |
<text font-size="12" x="999.48" y="4013.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect ry="2" width="1.1799927" y="3987.0" rx="2" fill="rgb(220,209,44)" x="996.4801" height="15.0"/> | |
<text x="999.48" y="3997.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.stopRecordingIfNeeded (0.10%)')" onmouseout="c()"><title >PaintingContext.stopRecordingIfNeeded (0.10%)</title> | |
<rect x="996.4801" fill="rgb(213,25,27)" ry="2" width="1.1799927" height="15.0" y="3971.0" rx="2"/> | |
<text y="3981.50" font-family="Verdana" font-size="12" x="999.48"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('NativePictureRecorder.endRecording (0.10%)')"><title >NativePictureRecorder.endRecording (0.10%)</title> | |
<rect fill="rgb(241,154,15)" rx="2" height="15.0" ry="2" x="996.4801" y="3955.0" width="1.1799927"/> | |
<text y="3965.50" font-family="Verdana" x="999.48" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_NativePictureRecorder._endRecording (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >_NativePictureRecorder._endRecording (0.10%)</title> | |
<rect x="996.4801" fill="rgb(218,221,52)" y="3939.0" ry="2" rx="2" height="15.0" width="1.1799927"/> | |
<text y="3949.50" font-size="12" x="999.48" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('NativePictureRecorder.__endRecording$Method$FfiNative (0.10%)')"><title >NativePictureRecorder.__endRecording$Method$FfiNative (0.10%)</title> | |
<rect ry="2" width="1.1799927" height="15.0" rx="2" x="996.4801" fill="rgb(232,9,20)" y="3923.0"/> | |
<text font-family="Verdana" font-size="12" y="3933.50" x="999.48"></text> | |
</g> | |
<g onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect fill="rgb(232,149,42)" x="996.4801" y="3907.0" height="15.0" ry="2" width="1.1799927" rx="2"/> | |
<text y="3917.50" font-size="12" x="999.48" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::PictureRecorder::endRecording(_Dart_Handle*) (0.10%)')" class="func_g"><title >flutter::PictureRecorder::endRecording(_Dart_Handle*) (0.10%)</title> | |
<rect rx="2" ry="2" fill="rgb(243,190,24)" x="996.4801" height="15.0" width="1.1799927" y="3891.0"/> | |
<text x="999.48" y="3901.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::Build() (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::DisplayListBuilder::Build() (0.10%)</title> | |
<rect ry="2" width="1.1799927" y="3875.0" rx="2" x="996.4801" height="15.0" fill="rgb(243,31,39)"/> | |
<text font-family="Verdana" y="3885.50" x="999.48" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.40%)')" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (0.40%)</title> | |
<rect rx="2" width="4.7199707" x="998.84015" height="15.0" ry="2" y="4275.0" fill="rgb(236,180,32)"/> | |
<text y="4285.50" x="1001.84" 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 x="998.84015" ry="2" y="4259.0" width="4.7199707" fill="rgb(205,119,54)" rx="2" height="15.0"/> | |
<text font-family="Verdana" y="4269.50" font-size="12" x="1001.84"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.40%)')"><title >RenderObject._paintWithContext (0.40%)</title> | |
<rect rx="2" width="4.7199707" x="998.84015" y="4243.0" fill="rgb(207,165,26)" height="15.0" ry="2"/> | |
<text x="1001.84" font-size="12" font-family="Verdana" y="4253.50"></text> | |
</g> | |
<g onmouseover="s('RenderPhysicalModel.paint (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderPhysicalModel.paint (0.30%)</title> | |
<rect fill="rgb(217,78,36)" width="3.539978" ry="2" height="15.0" rx="2" x="998.84015" y="4227.0"/> | |
<text y="4237.50" x="1001.84" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.pushClipRRect (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.pushClipRRect (0.10%)</title> | |
<rect y="4211.0" fill="rgb(249,185,38)" x="998.84015" height="15.0" ry="2" rx="2" width="1.1799927"/> | |
<text font-family="Verdana" y="4221.50" font-size="12" x="1001.84"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderPhysicalModel.paint.<anonymous closure> (0.10%)')" onmouseout="c()"><title >RenderPhysicalModel.paint.<anonymous closure> (0.10%)</title> | |
<rect x="998.84015" fill="rgb(219,31,37)" ry="2" height="15.0" rx="2" y="4195.0" width="1.1799927"/> | |
<text x="1001.84" y="4205.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.paint (#2) (0.10%)</title> | |
<rect x="998.84015" y="4179.0" fill="rgb(251,123,44)" rx="2" height="15.0" width="1.1799927" ry="2"/> | |
<text x="1001.84" y="4189.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (0.10%)')"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(238,175,43)" height="15.0" x="998.84015" y="4163.0" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1001.84" y="4173.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.10%)')" onmouseout="c()" class="func_g"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect y="4147.0" fill="rgb(227,218,23)" rx="2" x="998.84015" height="15.0" width="1.1799927" ry="2"/> | |
<text y="4157.50" font-family="Verdana" font-size="12" x="1001.84"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderInkFeatures.paint (0.10%)')" onclick="zoom(this)"><title >RenderInkFeatures.paint (0.10%)</title> | |
<rect rx="2" fill="rgb(254,106,17)" x="998.84015" height="15.0" ry="2" y="4131.0" width="1.1799927"/> | |
<text x="1001.84" font-size="12" y="4141.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (0.10%)</title> | |
<rect width="1.1799927" x="998.84015" y="4115.0" height="15.0" fill="rgb(239,223,35)" ry="2" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="4125.50" x="1001.84"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (0.10%)')"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect height="15.0" fill="rgb(215,107,30)" width="1.1799927" x="998.84015" ry="2" rx="2" y="4099.0"/> | |
<text font-size="12" y="4109.50" x="1001.84" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.10%)')" class="func_g" onmouseout="c()"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect fill="rgb(235,192,23)" rx="2" x="998.84015" y="4083.0" width="1.1799927" ry="2" height="15.0"/> | |
<text x="1001.84" font-size="12" font-family="Verdana" y="4093.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderCustomMultiChildLayoutBox.paint (0.10%)')" class="func_g"><title >RenderCustomMultiChildLayoutBox.paint (0.10%)</title> | |
<rect ry="2" rx="2" fill="rgb(221,72,8)" x="998.84015" height="15.0" y="4067.0" width="1.1799927"/> | |
<text x="1001.84" y="4077.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderBoxContainerDefaultsMixin.defaultPaint (0.10%)')" onmouseout="c()"><title >RenderBoxContainerDefaultsMixin.defaultPaint (0.10%)</title> | |
<rect fill="rgb(253,228,50)" rx="2" height="15.0" ry="2" x="998.84015" y="4051.0" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" x="1001.84" y="4061.50"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect y="4035.0" height="15.0" fill="rgb(233,83,39)" rx="2" x="998.84015" width="1.1799927" ry="2"/> | |
<text y="4045.50" font-size="12" x="1001.84" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (0.10%)')"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect fill="rgb(229,42,19)" x="998.84015" y="4019.0" height="15.0" ry="2" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="1001.84" font-size="12" y="4029.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (0.10%)</title> | |
<rect ry="2" rx="2" x="998.84015" y="4003.0" width="1.1799927" height="15.0" fill="rgb(230,66,28)"/> | |
<text font-size="12" y="4013.50" x="1001.84" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.paintChild (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect ry="2" y="3987.0" height="15.0" x="998.84015" fill="rgb(209,105,18)" rx="2" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" x="1001.84" y="3997.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.10%)')" onmouseout="c()"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect height="15.0" y="3971.0" width="1.1799927" rx="2" x="998.84015" fill="rgb(225,158,21)" ry="2"/> | |
<text y="3981.50" x="1001.84" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.10%)')"><title >RenderProxyBoxMixin.paint (#2) (0.10%)</title> | |
<rect rx="2" height="15.0" fill="rgb(208,6,37)" x="998.84015" width="1.1799927" ry="2" y="3955.0"/> | |
<text x="1001.84" font-family="Verdana" y="3965.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect width="1.1799927" x="998.84015" height="15.0" y="3939.0" fill="rgb(250,165,50)" ry="2" rx="2"/> | |
<text y="3949.50" font-size="12" font-family="Verdana" x="1001.84"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (0.10%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" y="3923.0" x="998.84015" fill="rgb(219,180,53)" width="1.1799927"/> | |
<text y="3933.50" font-size="12" x="1001.84" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderAnnotatedRegion.paint (0.10%)')" onmouseout="c()"><title >RenderAnnotatedRegion.paint (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" width="1.1799927" x="998.84015" fill="rgb(240,165,14)" y="3907.0"/> | |
<text x="1001.84" y="3917.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.pushLayer (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.pushLayer (0.10%)</title> | |
<rect y="3891.0" width="1.1799927" height="15.0" fill="rgb(214,120,54)" rx="2" ry="2" x="998.84015"/> | |
<text y="3901.50" x="1001.84" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderShiftedBox.paint (#2) (0.10%)')" onmouseout="c()" class="func_g"><title >RenderShiftedBox.paint (#2) (0.10%)</title> | |
<rect width="1.1799927" x="1002.3801" y="4227.0" height="15.0" fill="rgb(212,166,24)" ry="2" rx="2"/> | |
<text y="4237.50" x="1005.38" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (0.10%)')"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect fill="rgb(217,148,45)" rx="2" height="15.0" ry="2" x="1002.3801" y="4211.0" width="1.1799927"/> | |
<text font-family="Verdana" y="4221.50" font-size="12" x="1005.38"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.10%)')" class="func_g"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect x="1002.3801" y="4195.0" width="1.1799927" ry="2" rx="2" fill="rgb(205,161,8)" height="15.0"/> | |
<text y="4205.50" font-size="12" font-family="Verdana" x="1005.38"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.10%)')"><title >RenderProxyBoxMixin.paint (#2) (0.10%)</title> | |
<rect rx="2" y="4179.0" width="1.1799927" x="1002.3801" fill="rgb(254,101,4)" ry="2" height="15.0"/> | |
<text y="4189.50" font-family="Verdana" font-size="12" x="1005.38"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >PaintingContext.paintChild (0.10%)</title> | |
<rect rx="2" fill="rgb(209,46,24)" x="1002.3801" height="15.0" ry="2" y="4163.0" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" x="1005.38" y="4173.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.10%)')"><title >RenderObject._paintWithContext (0.10%)</title> | |
<rect x="1002.3801" ry="2" height="15.0" fill="rgb(252,91,8)" rx="2" y="4147.0" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" x="1005.38" y="4157.50"></text> | |
</g> | |
<g onmouseover="s('RenderPhysicalShape.paint (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderPhysicalShape.paint (0.10%)</title> | |
<rect x="1002.3801" y="4131.0" fill="rgb(209,25,42)" rx="2" height="15.0" width="1.1799927" ry="2"/> | |
<text y="4141.50" font-family="Verdana" x="1005.38" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderViewportBase.paint (0.30%)')"><title >RenderViewportBase.paint (0.30%)</title> | |
<rect height="15.0" rx="2" fill="rgb(213,212,23)" y="4323.0" ry="2" x="1004.7401" width="3.539978"/> | |
<text y="4333.50" font-family="Verdana" x="1007.74" font-size="12"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.pushClipRect (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.pushClipRect (0.30%)</title> | |
<rect fill="rgb(225,181,9)" rx="2" height="15.0" ry="2" x="1004.7401" y="4307.0" width="3.539978"/> | |
<text x="1007.74" y="4317.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.pushLayer (0.30%)')"><title >PaintingContext.pushLayer (0.30%)</title> | |
<rect x="1004.7401" ry="2" y="4291.0" width="3.539978" fill="rgb(233,167,7)" rx="2" height="15.0"/> | |
<text x="1007.74" y="4301.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderViewportBase._paintContents (#2) (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderViewportBase._paintContents (#2) (0.30%)</title> | |
<rect x="1004.7401" y="4275.0" width="3.539978" ry="2" rx="2" fill="rgb(244,82,49)" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="4285.50" x="1007.74"></text> | |
</g> | |
<g onmouseover="s('RenderViewportBase._paintContents (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderViewportBase._paintContents (0.30%)</title> | |
<rect rx="2" width="3.539978" x="1004.7401" height="15.0" ry="2" y="4259.0" fill="rgb(236,62,25)"/> | |
<text font-family="Verdana" x="1007.74" font-size="12" y="4269.50"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.paintChild (0.30%)</title> | |
<rect y="4243.0" fill="rgb(243,109,0)" x="1004.7401" height="15.0" ry="2" rx="2" width="3.539978"/> | |
<text font-family="Verdana" font-size="12" x="1007.74" y="4253.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObject._paintWithContext (0.30%)')" class="func_g"><title >RenderObject._paintWithContext (0.30%)</title> | |
<rect ry="2" y="4227.0" height="15.0" width="3.539978" x="1004.7401" rx="2" fill="rgb(236,91,22)"/> | |
<text x="1007.74" font-size="12" font-family="Verdana" y="4237.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderSliverEdgeInsetsPadding.paint (0.30%)')"><title >RenderSliverEdgeInsetsPadding.paint (0.30%)</title> | |
<rect x="1004.7401" y="4211.0" fill="rgb(232,141,27)" rx="2" height="15.0" width="3.539978" ry="2"/> | |
<text font-family="Verdana" y="4221.50" font-size="12" x="1007.74"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PaintingContext.paintChild (0.30%)')" class="func_g"><title >PaintingContext.paintChild (0.30%)</title> | |
<rect width="3.539978" fill="rgb(211,176,25)" height="15.0" x="1004.7401" y="4195.0" rx="2" ry="2"/> | |
<text y="4205.50" font-size="12" font-family="Verdana" x="1007.74"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject._paintWithContext (0.30%)')" onmouseout="c()"><title >RenderObject._paintWithContext (0.30%)</title> | |
<rect width="3.539978" ry="2" y="4179.0" height="15.0" fill="rgb(217,164,52)" rx="2" x="1004.7401"/> | |
<text font-family="Verdana" x="1007.74" font-size="12" y="4189.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderSliverMultiBoxAdaptor.paint (0.30%)')" onclick="zoom(this)" class="func_g"><title >RenderSliverMultiBoxAdaptor.paint (0.30%)</title> | |
<rect fill="rgb(219,8,53)" rx="2" x="1004.7401" y="4163.0" width="3.539978" ry="2" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1007.74" y="4173.50"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.paintChild (0.30%)</title> | |
<rect ry="2" fill="rgb(234,76,1)" y="4147.0" width="3.539978" height="15.0" x="1004.7401" rx="2"/> | |
<text font-family="Verdana" x="1007.74" y="4157.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._paintWithContext (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._paintWithContext (0.30%)</title> | |
<rect ry="2" y="4131.0" width="3.539978" rx="2" height="15.0" fill="rgb(210,158,22)" x="1004.7401"/> | |
<text y="4141.50" font-size="12" font-family="Verdana" x="1007.74"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.30%)')"><title >RenderProxyBoxMixin.paint (#2) (0.30%)</title> | |
<rect rx="2" height="15.0" fill="rgb(231,194,26)" x="1004.7401" width="3.539978" ry="2" y="4115.0"/> | |
<text font-family="Verdana" y="4125.50" x="1007.74" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.paintChild (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >PaintingContext.paintChild (0.30%)</title> | |
<rect y="4099.0" height="15.0" ry="2" x="1004.7401" fill="rgb(223,102,3)" width="3.539978" rx="2"/> | |
<text y="4109.50" font-size="12" font-family="Verdana" x="1007.74"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PaintingContext._compositeChild (0.30%)')" class="func_g" onclick="zoom(this)"><title >PaintingContext._compositeChild (0.30%)</title> | |
<rect x="1004.7401" width="3.539978" rx="2" height="15.0" fill="rgb(217,164,16)" ry="2" y="4083.0"/> | |
<text x="1007.74" y="4093.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PaintingContext.repaintCompositedChild (0.20%)')" onmouseout="c()" class="func_g"><title >PaintingContext.repaintCompositedChild (0.20%)</title> | |
<rect fill="rgb(214,95,9)" ry="2" rx="2" x="1004.7401" y="4067.0" width="2.3599854" height="15.0"/> | |
<text font-family="Verdana" y="4077.50" font-size="12" x="1007.74"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PaintingContext._repaintCompositedChild (0.20%)')" class="func_g" onmouseout="c()"><title >PaintingContext._repaintCompositedChild (0.20%)</title> | |
<rect rx="2" ry="2" x="1004.7401" fill="rgb(241,95,33)" height="15.0" y="4051.0" width="2.3599854"/> | |
<text y="4061.50" font-family="Verdana" font-size="12" x="1007.74"></text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject._paintWithContext (0.20%)</title> | |
<rect x="1004.7401" width="2.3599854" y="4035.0" height="15.0" fill="rgb(206,106,28)" ry="2" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="4045.50" x="1007.74"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.paint (#2) (0.20%)</title> | |
<rect height="15.0" fill="rgb(213,222,25)" y="4019.0" ry="2" x="1004.7401" width="2.3599854" rx="2"/> | |
<text font-family="Verdana" y="4029.50" x="1007.74" font-size="12"></text> | |
</g> | |
<g onmouseover="s('PaintingContext.paintChild (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >PaintingContext.paintChild (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(227,88,35)" y="4003.0" rx="2" ry="2" x="1004.7401" height="15.0"/> | |
<text x="1007.74" font-family="Verdana" y="4013.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._paintWithContext (0.20%)</title> | |
<rect y="3987.0" height="15.0" width="2.3599854" x="1004.7401" fill="rgb(238,136,34)" rx="2" ry="2"/> | |
<text x="1007.74" font-family="Verdana" y="3997.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.20%)')"><title >RenderProxyBoxMixin.paint (#2) (0.20%)</title> | |
<rect width="2.3599854" ry="2" x="1004.7401" height="15.0" fill="rgb(216,46,48)" rx="2" y="3971.0"/> | |
<text y="3981.50" font-size="12" font-family="Verdana" x="1007.74"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (0.20%)')" onmouseout="c()"><title >PaintingContext.paintChild (0.20%)</title> | |
<rect fill="rgb(219,75,21)" rx="2" ry="2" y="3955.0" height="15.0" x="1004.7401" width="2.3599854"/> | |
<text x="1007.74" font-size="12" y="3965.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._paintWithContext (0.20%)</title> | |
<rect y="3939.0" width="2.3599854" height="15.0" x="1004.7401" ry="2" fill="rgb(218,115,14)" rx="2"/> | |
<text x="1007.74" y="3949.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderShiftedBox.paint (#2) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderShiftedBox.paint (#2) (0.20%)</title> | |
<rect width="2.3599854" x="1004.7401" rx="2" fill="rgb(241,82,51)" ry="2" height="15.0" y="3923.0"/> | |
<text y="3933.50" x="1007.74" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('PaintingContext.paintChild (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >PaintingContext.paintChild (0.20%)</title> | |
<rect y="3907.0" rx="2" width="2.3599854" fill="rgb(250,123,5)" height="15.0" ry="2" x="1004.7401"/> | |
<text x="1007.74" y="3917.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._paintWithContext (0.20%)')" onclick="zoom(this)"><title >RenderObject._paintWithContext (0.20%)</title> | |
<rect rx="2" ry="2" width="2.3599854" height="15.0" x="1004.7401" y="3891.0" fill="rgb(213,8,34)"/> | |
<text y="3901.50" x="1007.74" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.paint (#2) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.paint (#2) (0.20%)</title> | |
<rect height="15.0" fill="rgb(238,64,55)" ry="2" x="1004.7401" width="2.3599854" y="3875.0" rx="2"/> | |
<text font-family="Verdana" x="1007.74" font-size="12" y="3885.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('PaintingContext.paintChild (0.20%)')" onmouseout="c()"><title >PaintingContext.paintChild (0.20%)</title> | |
<rect width="2.3599854" rx="2" y="3859.0" x="1004.7401" height="15.0" ry="2" fill="rgb(243,86,43)"/> | |
<text font-family="Verdana" x="1007.74" font-size="12" y="3869.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject._paintWithContext (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject._paintWithContext (0.20%)</title> | |
<rect width="2.3599854" y="3843.0" ry="2" height="15.0" rx="2" x="1004.7401" fill="rgb(246,101,50)"/> | |
<text font-size="12" x="1007.74" y="3853.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderPhysicalShape.paint (0.20%)')" class="func_g" onclick="zoom(this)"><title >RenderPhysicalShape.paint (0.20%)</title> | |
<rect height="15.0" y="3827.0" rx="2" fill="rgb(251,105,0)" ry="2" width="2.3599854" x="1004.7401"/> | |
<text y="3837.50" x="1007.74" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ContainerLayer.removeAllChildren (0.10%)')" onmouseout="c()"><title >ContainerLayer.removeAllChildren (0.10%)</title> | |
<rect fill="rgb(233,156,53)" rx="2" ry="2" y="4339.0" height="15.0" x="1009.4601" width="1.1799927"/> | |
<text x="1012.46" font-size="12" y="4349.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ContainerLayer._dropChild (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >ContainerLayer._dropChild (0.10%)</title> | |
<rect y="4323.0" width="1.1799927" height="15.0" x="1009.4601" ry="2" fill="rgb(235,79,10)" rx="2"/> | |
<text x="1012.46" y="4333.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ContainerLayer.detach (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >ContainerLayer.detach (0.10%)</title> | |
<rect y="4307.0" width="1.1799927" x="1009.4601" rx="2" height="15.0" fill="rgb(247,122,22)" ry="2"/> | |
<text y="4317.50" x="1012.46" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ContainerLayer.detach (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >ContainerLayer.detach (0.10%)</title> | |
<rect width="1.1799927" x="1009.4601" rx="2" fill="rgb(253,136,15)" ry="2" height="15.0" y="4291.0"/> | |
<text y="4301.50" x="1012.46" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ContainerLayer.detach (0.10%)')" class="func_g" onmouseout="c()"><title >ContainerLayer.detach (0.10%)</title> | |
<rect width="1.1799927" y="4275.0" ry="2" height="15.0" rx="2" x="1009.4601" fill="rgb(244,60,5)"/> | |
<text font-size="12" x="1012.46" y="4285.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderView.compositeFrame (1.60%)')" onmouseout="c()"><title >RenderView.compositeFrame (1.60%)</title> | |
<rect fill="rgb(214,143,53)" rx="2" ry="2" y="4403.0" height="15.0" x="1013.00006" width="18.879944"/> | |
<text x="1016.00" font-size="12" y="4413.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ContainerLayer.buildScene (1.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >ContainerLayer.buildScene (1.20%)</title> | |
<rect y="4387.0" width="14.159973" height="15.0" x="1013.00006" ry="2" fill="rgb(206,139,9)" rx="2"/> | |
<text x="1016.00" y="4397.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('TransformLayer.addToScene (1.20%)')" onclick="zoom(this)" onmouseout="c()"><title >TransformLayer.addToScene (1.20%)</title> | |
<rect y="4371.0" width="14.159973" x="1013.00006" rx="2" height="15.0" fill="rgb(233,163,26)" ry="2"/> | |
<text y="4381.50" x="1016.00" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ContainerLayer.addChildrenToScene (1.10%)')" class="func_g" onmouseout="c()"><title >ContainerLayer.addChildrenToScene (1.10%)</title> | |
<rect height="15.0" y="4355.0" rx="2" fill="rgb(234,152,43)" ry="2" width="12.9800415" x="1013.00006"/> | |
<text x="1016.00" y="4365.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Layer._addToSceneWithRetainedRendering (1.10%)')"><title >Layer._addToSceneWithRetainedRendering (1.10%)</title> | |
<rect ry="2" height="15.0" y="4339.0" width="12.9800415" rx="2" x="1013.00006" fill="rgb(217,9,0)"/> | |
<text x="1016.00" font-family="Verdana" y="4349.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('OffsetLayer.addToScene (1.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >OffsetLayer.addToScene (1.10%)</title> | |
<rect x="1013.00006" ry="2" rx="2" height="15.0" y="4323.0" fill="rgb(217,227,14)" width="12.9800415"/> | |
<text y="4333.50" font-size="12" x="1016.00" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ContainerLayer.addChildrenToScene (1.00%)')" onmouseout="c()"><title >ContainerLayer.addChildrenToScene (1.00%)</title> | |
<rect height="15.0" fill="rgb(207,227,53)" ry="2" x="1013.00006" rx="2" width="11.799988" y="4307.0"/> | |
<text x="1016.00" font-size="12" font-family="Verdana" y="4317.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Layer._addToSceneWithRetainedRendering (1.00%)')" class="func_g"><title >Layer._addToSceneWithRetainedRendering (1.00%)</title> | |
<rect fill="rgb(235,216,16)" height="15.0" ry="2" x="1013.00006" y="4291.0" rx="2" width="11.799988"/> | |
<text y="4301.50" font-size="12" x="1016.00" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('OffsetLayer.addToScene (1.00%)')"><title >OffsetLayer.addToScene (1.00%)</title> | |
<rect width="11.799988" fill="rgb(219,95,11)" rx="2" x="1013.00006" height="15.0" ry="2" y="4275.0"/> | |
<text x="1016.00" font-family="Verdana" y="4285.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('ContainerLayer.addChildrenToScene (0.80%)')"><title >ContainerLayer.addChildrenToScene (0.80%)</title> | |
<rect rx="2" x="1013.00006" width="9.440002" ry="2" fill="rgb(205,42,50)" y="4259.0" height="15.0"/> | |
<text font-family="Verdana" y="4269.50" x="1016.00" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Layer._addToSceneWithRetainedRendering (0.80%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >Layer._addToSceneWithRetainedRendering (0.80%)</title> | |
<rect x="1013.00006" y="4243.0" fill="rgb(227,3,45)" height="15.0" ry="2" width="9.440002" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="4253.50" x="1016.00"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('OffsetLayer.addToScene (0.60%)')" onclick="zoom(this)"><title >OffsetLayer.addToScene (0.60%)</title> | |
<rect height="15.0" fill="rgb(255,223,34)" rx="2" y="4227.0" x="1013.00006" ry="2" width="7.080017"/> | |
<text font-size="12" font-family="Verdana" x="1016.00" y="4237.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ContainerLayer.addChildrenToScene (0.60%)')" class="func_g" onmouseout="c()"><title >ContainerLayer.addChildrenToScene (0.60%)</title> | |
<rect fill="rgb(234,143,46)" x="1013.00006" rx="2" height="15.0" ry="2" y="4211.0" width="7.080017"/> | |
<text x="1016.00" font-family="Verdana" font-size="12" y="4221.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Layer._addToSceneWithRetainedRendering (0.60%)')"><title >Layer._addToSceneWithRetainedRendering (0.60%)</title> | |
<rect rx="2" width="7.080017" y="4195.0" height="15.0" fill="rgb(249,111,25)" ry="2" x="1013.00006"/> | |
<text font-family="Verdana" x="1016.00" y="4205.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('ClipRectLayer.addToScene (0.60%)')" class="func_g"><title >ClipRectLayer.addToScene (0.60%)</title> | |
<rect x="1013.00006" width="7.080017" height="15.0" fill="rgb(233,139,54)" rx="2" y="4179.0" ry="2"/> | |
<text font-family="Verdana" y="4189.50" x="1016.00" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ContainerLayer.addChildrenToScene (0.60%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >ContainerLayer.addChildrenToScene (0.60%)</title> | |
<rect y="4163.0" rx="2" fill="rgb(235,33,22)" x="1013.00006" width="7.080017" ry="2" height="15.0"/> | |
<text x="1016.00" font-family="Verdana" y="4173.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Layer._addToSceneWithRetainedRendering (0.60%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >Layer._addToSceneWithRetainedRendering (0.60%)</title> | |
<rect fill="rgb(253,212,13)" width="7.080017" height="15.0" rx="2" y="4147.0" x="1013.00006" ry="2"/> | |
<text font-size="12" x="1016.00" font-family="Verdana" y="4157.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('OffsetLayer.addToScene (0.60%)')"><title >OffsetLayer.addToScene (0.60%)</title> | |
<rect ry="2" y="4131.0" fill="rgb(218,14,17)" x="1013.00006" width="7.080017" rx="2" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1016.00" y="4141.50"></text> | |
</g> | |
<g onmouseover="s('_NativeSceneBuilder._pushOffset (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_NativeSceneBuilder._pushOffset (0.20%)</title> | |
<rect x="1013.00006" fill="rgb(249,205,1)" rx="2" ry="2" width="2.3599854" y="4115.0" height="15.0"/> | |
<text font-size="12" x="1016.00" font-family="Verdana" y="4125.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('NativeSceneBuilder.__pushOffset$Method$FfiNative (0.10%)')"><title >NativeSceneBuilder.__pushOffset$Method$FfiNative (0.10%)</title> | |
<rect ry="2" x="1013.00006" rx="2" height="15.0" fill="rgb(209,175,35)" y="4099.0" width="1.1799927"/> | |
<text x="1016.00" font-family="Verdana" y="4109.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect fill="rgb(255,131,33)" x="1013.00006" y="4083.0" height="15.0" width="1.1799927" ry="2" rx="2"/> | |
<text font-family="Verdana" x="1016.00" y="4093.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('tonic::FfiDispatcher<flutter::SceneBuilder, void (flutter::SceneBuilder::*)(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&), &flutter::SceneBuilder::pushOffset(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&)>::Call(tonic::DartWrappable*, _Dart_Handle*, double, double, _Dart_Handle*) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >tonic::FfiDispatcher<flutter::SceneBuilder, void (flutter::SceneBuilder::*)(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&), &flutter::SceneBuilder::pushOffset(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&)>::Call(tonic::DartWrappable*, _Dart_Handle*, double, double, _Dart_Handle*) (0.10%)</title> | |
<rect y="4067.0" x="1013.00006" width="1.1799927" fill="rgb(239,192,3)" ry="2" height="15.0" rx="2"/> | |
<text y="4077.50" font-size="12" font-family="Verdana" x="1016.00"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::SceneBuilder::pushOffset(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&) (0.10%)')"><title >flutter::SceneBuilder::pushOffset(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&) (0.10%)</title> | |
<rect y="4051.0" height="15.0" ry="2" fill="rgb(255,180,29)" rx="2" x="1013.00006" width="1.1799927"/> | |
<text font-size="12" font-family="Verdana" x="1016.00" y="4061.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Layer.engineLayer= (0.10%)')" onmouseout="c()" class="func_g"><title >Layer.engineLayer= (0.10%)</title> | |
<rect x="1015.36005" fill="rgb(223,61,14)" rx="2" ry="2" width="1.1799927" y="4115.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1018.36" y="4125.50"></text> | |
</g> | |
<g onmouseover="s('_EngineLayerWrapper.dispose (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_EngineLayerWrapper.dispose (0.10%)</title> | |
<rect ry="2" x="1015.36005" rx="2" height="15.0" fill="rgb(212,99,54)" y="4099.0" width="1.1799927"/> | |
<text y="4109.50" x="1018.36" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_NativeEngineLayer.dispose (0.10%)')" onmouseout="c()"><title >_NativeEngineLayer.dispose (0.10%)</title> | |
<rect y="4083.0" ry="2" rx="2" fill="rgb(222,179,7)" x="1015.36005" width="1.1799927" height="15.0"/> | |
<text x="1018.36" font-size="12" font-family="Verdana" y="4093.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('NativeEngineLayer._dispose$Method$FfiNative (0.10%)')"><title >NativeEngineLayer._dispose$Method$FfiNative (0.10%)</title> | |
<rect fill="rgb(225,118,4)" height="15.0" rx="2" width="1.1799927" x="1015.36005" y="4067.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1018.36" y="4077.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 y="4051.0" height="15.0" ry="2" fill="rgb(229,173,12)" rx="2" x="1015.36005" width="1.1799927"/> | |
<text font-size="12" x="1018.36" y="4061.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('tonic::DartWrappable::ClearDartWrapper() (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >tonic::DartWrappable::ClearDartWrapper() (0.10%)</title> | |
<rect ry="2" x="1015.36005" height="15.0" rx="2" fill="rgb(248,138,28)" y="4035.0" width="1.1799927"/> | |
<text y="4045.50" font-size="12" x="1018.36" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ContainerLayer.addChildrenToScene (0.10%)')" onclick="zoom(this)"><title >ContainerLayer.addChildrenToScene (0.10%)</title> | |
<rect x="1016.54004" fill="rgb(227,147,32)" rx="2" ry="2" width="1.1799927" y="4115.0" height="15.0"/> | |
<text x="1019.54" font-family="Verdana" font-size="12" y="4125.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Layer._addToSceneWithRetainedRendering (0.10%)')" onmouseout="c()" class="func_g"><title >Layer._addToSceneWithRetainedRendering (0.10%)</title> | |
<rect fill="rgb(251,37,24)" height="15.0" rx="2" width="1.1799927" x="1016.54004" y="4099.0" ry="2"/> | |
<text y="4109.50" x="1019.54" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PictureLayer.addToScene (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PictureLayer.addToScene (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(232,34,42)" rx="2" height="15.0" x="1016.54004" ry="2" y="4083.0"/> | |
<text font-family="Verdana" font-size="12" x="1019.54" y="4093.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('NativeSceneBuilder.addPicture (0.10%)')" onmouseout="c()"><title >NativeSceneBuilder.addPicture (0.10%)</title> | |
<rect y="4067.0" height="15.0" ry="2" fill="rgb(243,66,47)" rx="2" x="1016.54004" width="1.1799927"/> | |
<text font-size="12" y="4077.50" x="1019.54" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_NativeSceneBuilder._addPicture (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_NativeSceneBuilder._addPicture (0.10%)</title> | |
<rect y="4051.0" width="1.1799927" fill="rgb(253,196,37)" rx="2" ry="2" x="1016.54004" height="15.0"/> | |
<text x="1019.54" y="4061.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('NativeSceneBuilder.__addPicture$Method$FfiNative (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >NativeSceneBuilder.__addPicture$Method$FfiNative (0.10%)</title> | |
<rect width="1.1799927" ry="2" rx="2" height="15.0" fill="rgb(242,156,20)" x="1016.54004" y="4035.0"/> | |
<text x="1019.54" y="4045.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')" onmouseout="c()" class="func_g"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect y="4019.0" rx="2" height="15.0" x="1016.54004" ry="2" width="1.1799927" fill="rgb(231,1,49)"/> | |
<text font-family="Verdana" y="4029.50" x="1019.54" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::SceneBuilder::addPicture(double, double, flutter::Picture*, int) (0.10%)')" onmouseout="c()"><title >flutter::SceneBuilder::addPicture(double, double, flutter::Picture*, int) (0.10%)</title> | |
<rect rx="2" y="4003.0" ry="2" width="1.1799927" x="1016.54004" fill="rgb(231,223,35)" height="15.0"/> | |
<text font-size="12" x="1019.54" y="4013.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_NativeSceneBuilder._pushOffset (0.10%)')"><title >_NativeSceneBuilder._pushOffset (0.10%)</title> | |
<rect ry="2" y="4259.0" fill="rgb(252,136,7)" x="1022.44006" width="1.1799927" rx="2" height="15.0"/> | |
<text x="1025.44" font-family="Verdana" font-size="12" y="4269.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('NativeSceneBuilder.__pushOffset$Method$FfiNative (0.10%)')"><title >NativeSceneBuilder.__pushOffset$Method$FfiNative (0.10%)</title> | |
<rect y="4243.0" rx="2" height="15.0" x="1022.44006" ry="2" width="1.1799927" fill="rgb(250,100,25)"/> | |
<text font-family="Verdana" y="4253.50" x="1025.44" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect fill="rgb(206,102,34)" height="15.0" rx="2" width="1.1799927" x="1022.44006" y="4227.0" ry="2"/> | |
<text font-size="12" y="4237.50" x="1025.44" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('tonic::FfiDispatcher<flutter::SceneBuilder, void (flutter::SceneBuilder::*)(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&), &flutter::SceneBuilder::pushOffset(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&)>::Call(tonic::DartWrappable*, _Dart_Handle*, double, double, _Dart_Handle*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >tonic::FfiDispatcher<flutter::SceneBuilder, void (flutter::SceneBuilder::*)(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&), &flutter::SceneBuilder::pushOffset(_Dart_Handle*, double, double, fml::RefPtr<flutter::EngineLayer> const&)>::Call(tonic::DartWrappable*, _Dart_Handle*, double, double, _Dart_Handle*) (0.10%)</title> | |
<rect rx="2" x="1022.44006" width="1.1799927" ry="2" fill="rgb(247,223,12)" y="4211.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1025.44" y="4221.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('FlutterView.render (0.20%)')" class="func_g"><title >FlutterView.render (0.20%)</title> | |
<rect y="4387.0" width="2.3599854" height="15.0" x="1027.16" ry="2" fill="rgb(216,84,36)" rx="2"/> | |
<text y="4397.50" font-size="12" x="1030.16" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('FlutterView._render (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >FlutterView._render (0.20%)</title> | |
<rect y="4371.0" width="2.3599854" x="1027.16" rx="2" height="15.0" fill="rgb(216,159,47)" ry="2"/> | |
<text x="1030.16" font-family="Verdana" font-size="12" y="4381.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('FlutterView.__render$Method$FfiNative (0.20%)')"><title >FlutterView.__render$Method$FfiNative (0.20%)</title> | |
<rect y="4355.0" rx="2" height="15.0" x="1027.16" ry="2" width="2.3599854" fill="rgb(231,226,32)"/> | |
<text font-family="Verdana" font-size="12" x="1030.16" y="4365.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >stub CallNativeThroughSafepoint (0.20%)</title> | |
<rect fill="rgb(245,198,48)" height="15.0" rx="2" width="2.3599854" x="1027.16" y="4339.0" ry="2"/> | |
<text y="4349.50" x="1030.16" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::RuntimeController::Render(long long, flutter::Scene*, double, double) (0.20%)')"><title >flutter::RuntimeController::Render(long long, flutter::Scene*, double, double) (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(255,127,13)" rx="2" height="15.0" x="1027.16" ry="2" y="4323.0"/> | |
<text font-family="Verdana" font-size="12" x="1030.16" y="4333.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::RuntimeController::CheckIfAllViewsRendered() (0.10%)')" onclick="zoom(this)"><title >flutter::RuntimeController::CheckIfAllViewsRendered() (0.10%)</title> | |
<rect height="15.0" fill="rgb(226,61,43)" ry="2" x="1027.16" rx="2" width="1.1800537" y="4307.0"/> | |
<text font-size="12" y="4317.50" x="1030.16" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::Animator::EndFrame() (0.10%)')"><title >flutter::Animator::EndFrame() (0.10%)</title> | |
<rect height="15.0" y="4291.0" rx="2" fill="rgb(225,62,4)" ry="2" width="1.1800537" x="1027.16"/> | |
<text font-size="12" font-family="Verdana" x="1030.16" y="4301.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RendererBinding.createSceneBuilder (0.10%)')" class="func_g"><title >RendererBinding.createSceneBuilder (0.10%)</title> | |
<rect y="4387.0" width="1.1800537" height="15.0" x="1029.52" ry="2" fill="rgb(252,120,47)" rx="2"/> | |
<text y="4397.50" font-size="12" x="1032.52" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('new _NativeSceneBuilder (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >new _NativeSceneBuilder (0.10%)</title> | |
<rect y="4371.0" width="1.1800537" x="1029.52" rx="2" height="15.0" fill="rgb(216,4,35)" ry="2"/> | |
<text x="1032.52" font-family="Verdana" font-size="12" y="4381.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_NativeSceneBuilder._constructor (0.10%)')"><title >_NativeSceneBuilder._constructor (0.10%)</title> | |
<rect fill="rgb(235,215,16)" height="15.0" rx="2" width="1.1800537" x="1029.52" y="4355.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1032.52" y="4365.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('NativeSceneBuilder.__constructor$Method$FfiNative (0.10%)')"><title >NativeSceneBuilder.__constructor$Method$FfiNative (0.10%)</title> | |
<rect height="15.0" fill="rgb(223,35,20)" ry="2" x="1029.52" rx="2" width="1.1800537" y="4339.0"/> | |
<text y="4349.50" x="1032.52" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('stub CallNativeThroughSafepoint (0.10%)')" onclick="zoom(this)"><title >stub CallNativeThroughSafepoint (0.10%)</title> | |
<rect width="1.1800537" height="15.0" ry="2" fill="rgb(208,79,4)" rx="2" x="1029.52" y="4323.0"/> | |
<text font-size="12" y="4333.50" x="1032.52" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('PipelineOwner.flushLayout (1.20%)')" class="func_g"><title >PipelineOwner.flushLayout (1.20%)</title> | |
<rect height="15.0" fill="rgb(206,72,17)" ry="2" x="1031.8801" rx="2" width="14.160034" y="4403.0"/> | |
<text y="4413.50" font-size="12" x="1034.88" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PipelineOwner.flushLayout (1.20%)')" class="func_g" onmouseout="c()"><title >PipelineOwner.flushLayout (1.20%)</title> | |
<rect width="14.160034" height="15.0" ry="2" fill="rgb(226,71,8)" rx="2" x="1031.8801" y="4387.0"/> | |
<text x="1034.88" font-family="Verdana" font-size="12" y="4397.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject._layoutWithoutResize (1.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject._layoutWithoutResize (1.20%)</title> | |
<rect fill="rgb(211,226,41)" rx="2" ry="2" y="4371.0" height="15.0" x="1031.8801" width="14.160034"/> | |
<text font-family="Verdana" x="1034.88" y="4381.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderViewport.performLayout (0.80%)')"><title >RenderViewport.performLayout (0.80%)</title> | |
<rect y="4355.0" width="9.439941" height="15.0" x="1031.8801" ry="2" fill="rgb(206,114,19)" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="1034.88" y="4365.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderViewport._attemptLayout (0.70%)')"><title >RenderViewport._attemptLayout (0.70%)</title> | |
<rect y="4339.0" width="8.26001" x="1031.8801" rx="2" height="15.0" fill="rgb(216,44,5)" ry="2"/> | |
<text y="4349.50" x="1034.88" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderViewportBase.layoutChildSequence (0.70%)')" onclick="zoom(this)"><title >RenderViewportBase.layoutChildSequence (0.70%)</title> | |
<rect width="8.26001" fill="rgb(248,11,12)" rx="2" x="1031.8801" height="15.0" ry="2" y="4323.0"/> | |
<text font-size="12" y="4333.50" x="1034.88" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.70%)')" onmouseout="c()"><title >RenderObject.layout (0.70%)</title> | |
<rect width="8.26001" height="15.0" x="1031.8801" rx="2" ry="2" y="4307.0" fill="rgb(219,82,10)"/> | |
<text font-size="12" font-family="Verdana" x="1034.88" y="4317.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderSliverPadding.performLayout (0.70%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderSliverPadding.performLayout (0.70%)</title> | |
<rect rx="2" x="1031.8801" width="8.26001" ry="2" fill="rgb(208,46,12)" y="4291.0" height="15.0"/> | |
<text x="1034.88" font-family="Verdana" y="4301.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderSliverEdgeInsetsPadding.performLayout (0.70%)')" onmouseout="c()"><title >RenderSliverEdgeInsetsPadding.performLayout (0.70%)</title> | |
<rect width="8.26001" height="15.0" ry="2" rx="2" fill="rgb(228,139,3)" x="1031.8801" y="4275.0"/> | |
<text font-family="Verdana" y="4285.50" font-size="12" x="1034.88"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.70%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.70%)</title> | |
<rect width="8.26001" rx="2" height="15.0" y="4259.0" fill="rgb(220,173,22)" ry="2" x="1031.8801"/> | |
<text x="1034.88" y="4269.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderSliverList.performLayout (0.70%)')" class="func_g"><title >RenderSliverList.performLayout (0.70%)</title> | |
<rect x="1031.8801" width="8.26001" fill="rgb(230,35,2)" y="4243.0" height="15.0" ry="2" rx="2"/> | |
<text font-family="Verdana" y="4253.50" x="1034.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderSliverList.performLayout.advance (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderSliverList.performLayout.advance (0.50%)</title> | |
<rect height="15.0" width="5.9000244" x="1031.8801" ry="2" y="4227.0" rx="2" fill="rgb(218,194,44)"/> | |
<text x="1034.88" font-size="12" font-family="Verdana" y="4237.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderSliverMultiBoxAdaptor.insertAndLayoutChild (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderSliverMultiBoxAdaptor.insertAndLayoutChild (0.40%)</title> | |
<rect y="4211.0" height="15.0" ry="2" fill="rgb(215,45,28)" rx="2" x="1031.8801" width="4.7199707"/> | |
<text font-size="12" font-family="Verdana" y="4221.50" x="1034.88"></text> | |
</g> | |
<g onmouseover="s('RenderSliverMultiBoxAdaptor._createOrObtainChild (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderSliverMultiBoxAdaptor._createOrObtainChild (0.20%)</title> | |
<rect width="2.3599854" ry="2" rx="2" height="15.0" fill="rgb(228,196,11)" x="1031.8801" y="4195.0"/> | |
<text y="4205.50" font-family="Verdana" x="1034.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.invokeLayoutCallback (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.invokeLayoutCallback (0.20%)</title> | |
<rect x="1031.8801" width="2.3599854" height="15.0" fill="rgb(221,84,49)" ry="2" y="4179.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="4189.50" x="1034.88"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('PipelineOwner._enableMutationsToDirtySubtrees (0.20%)')" onclick="zoom(this)"><title >PipelineOwner._enableMutationsToDirtySubtrees (0.20%)</title> | |
<rect height="15.0" rx="2" fill="rgb(208,169,55)" x="1031.8801" ry="2" y="4163.0" width="2.3599854"/> | |
<text y="4173.50" x="1034.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.invokeLayoutCallback.<anonymous closure> (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.invokeLayoutCallback.<anonymous closure> (0.20%)</title> | |
<rect rx="2" x="1031.8801" y="4147.0" ry="2" fill="rgb(205,175,30)" height="15.0" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" x="1034.88" y="4157.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderSliverMultiBoxAdaptor._createOrObtainChild.<anonymous closure> (0.10%)')" onmouseout="c()"><title >RenderSliverMultiBoxAdaptor._createOrObtainChild.<anonymous closure> (0.10%)</title> | |
<rect height="15.0" y="4131.0" x="1031.8801" rx="2" ry="2" width="1.1800537" fill="rgb(244,78,32)"/> | |
<text font-family="Verdana" font-size="12" y="4141.50" x="1034.88"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('SliverMultiBoxAdaptorElement.createChild (0.10%)')" onclick="zoom(this)"><title >SliverMultiBoxAdaptorElement.createChild (0.10%)</title> | |
<rect ry="2" x="1031.8801" fill="rgb(214,100,28)" rx="2" y="4115.0" height="15.0" width="1.1800537"/> | |
<text font-family="Verdana" y="4125.50" font-size="12" x="1034.88"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('BuildOwner.buildScope (0.10%)')" onmouseout="c()"><title >BuildOwner.buildScope (0.10%)</title> | |
<rect height="15.0" rx="2" x="1031.8801" fill="rgb(215,210,49)" y="4099.0" ry="2" width="1.1800537"/> | |
<text x="1034.88" font-family="Verdana" y="4109.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('SliverMultiBoxAdaptorElement.createChild.<anonymous closure> (0.10%)')"><title >SliverMultiBoxAdaptorElement.createChild.<anonymous closure> (0.10%)</title> | |
<rect x="1031.8801" width="1.1800537" rx="2" ry="2" height="15.0" fill="rgb(209,165,40)" y="4083.0"/> | |
<text font-family="Verdana" y="4093.50" font-size="12" x="1034.88"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('SliverMultiBoxAdaptorElement.updateChild (0.10%)')"><title >SliverMultiBoxAdaptorElement.updateChild (0.10%)</title> | |
<rect fill="rgb(216,64,10)" ry="2" rx="2" x="1031.8801" y="4067.0" width="1.1800537" height="15.0"/> | |
<text x="1034.88" font-family="Verdana" y="4077.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.updateChild (0.10%)</title> | |
<rect x="1031.8801" ry="2" y="4051.0" fill="rgb(230,89,25)" height="15.0" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" y="4061.50" x="1034.88" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.inflateWidget (0.10%)')" onmouseout="c()"><title >Element.inflateWidget (0.10%)</title> | |
<rect x="1031.8801" height="15.0" y="4035.0" width="1.1800537" fill="rgb(227,9,3)" rx="2" ry="2"/> | |
<text y="4045.50" font-family="Verdana" x="1034.88" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.mount (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >ComponentElement.mount (0.10%)</title> | |
<rect ry="2" x="1031.8801" fill="rgb(208,24,12)" width="1.1800537" rx="2" y="4019.0" height="15.0"/> | |
<text font-family="Verdana" y="4029.50" font-size="12" x="1034.88"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement._firstBuild (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement._firstBuild (0.10%)</title> | |
<rect rx="2" fill="rgb(243,169,34)" width="1.1800537" ry="2" x="1031.8801" height="15.0" y="4003.0"/> | |
<text x="1034.88" font-family="Verdana" font-size="12" y="4013.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.rebuild (0.10%)')" onmouseout="c()" class="func_g"><title >Element.rebuild (0.10%)</title> | |
<rect rx="2" y="3987.0" ry="2" x="1031.8801" height="15.0" width="1.1800537" fill="rgb(251,69,45)"/> | |
<text font-family="Verdana" y="3997.50" font-size="12" x="1034.88"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.performRebuild (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.performRebuild (0.10%)</title> | |
<rect rx="2" width="1.1800537" height="15.0" ry="2" y="3971.0" x="1031.8801" fill="rgb(235,17,33)"/> | |
<text y="3981.50" font-family="Verdana" x="1034.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (0.10%)')" onclick="zoom(this)"><title >Element.updateChild (0.10%)</title> | |
<rect height="15.0" width="1.1800537" x="1031.8801" y="3955.0" fill="rgb(209,97,43)" rx="2" ry="2"/> | |
<text font-family="Verdana" x="1034.88" y="3965.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Element.inflateWidget (0.10%)')" onclick="zoom(this)"><title >Element.inflateWidget (0.10%)</title> | |
<rect rx="2" fill="rgb(247,221,36)" x="1031.8801" ry="2" height="15.0" y="3939.0" width="1.1800537"/> | |
<text y="3949.50" font-family="Verdana" x="1034.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" width="2.3599854" x="1034.2401" y="4195.0" fill="rgb(236,189,52)" rx="2" ry="2"/> | |
<text font-family="Verdana" y="4205.50" font-size="12" x="1037.24"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect x="1034.2401" width="2.3599854" rx="2" ry="2" height="15.0" fill="rgb(246,206,28)" y="4179.0"/> | |
<text font-size="12" x="1037.24" y="4189.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect rx="2" width="2.3599854" height="15.0" ry="2" y="4163.0" x="1034.2401" fill="rgb(239,98,27)"/> | |
<text font-size="12" y="4173.50" font-family="Verdana" x="1037.24"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect height="15.0" rx="2" fill="rgb(214,196,34)" x="1034.2401" ry="2" y="4147.0" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" x="1037.24" y="4157.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect y="4131.0" height="15.0" rx="2" ry="2" x="1034.2401" width="2.3599854" fill="rgb(247,168,24)"/> | |
<text font-family="Verdana" x="1037.24" y="4141.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect rx="2" y="4115.0" width="2.3599854" height="15.0" ry="2" x="1034.2401" fill="rgb(237,131,23)"/> | |
<text font-family="Verdana" x="1037.24" y="4125.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect fill="rgb(255,48,27)" height="15.0" x="1034.2401" y="4099.0" rx="2" ry="2" width="2.3599854"/> | |
<text font-size="12" x="1037.24" y="4109.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderInputPadding.performLayout (#2) (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderInputPadding.performLayout (#2) (0.20%)</title> | |
<rect ry="2" x="1034.2401" fill="rgb(223,219,42)" rx="2" y="4083.0" height="15.0" width="2.3599854"/> | |
<text x="1037.24" y="4093.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderInputPadding._computeSize (#2) (0.20%)')"><title >RenderInputPadding._computeSize (#2) (0.20%)</title> | |
<rect fill="rgb(244,3,33)" ry="2" rx="2" x="1034.2401" y="4067.0" width="2.3599854" height="15.0"/> | |
<text font-size="12" x="1037.24" font-family="Verdana" y="4077.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ChildLayoutHelper.layoutChild (#2) (0.20%)')" onmouseout="c()" class="func_g"><title >ChildLayoutHelper.layoutChild (#2) (0.20%)</title> | |
<rect x="1034.2401" ry="2" y="4051.0" fill="rgb(248,65,18)" height="15.0" rx="2" width="2.3599854"/> | |
<text y="4061.50" font-family="Verdana" x="1037.24" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ChildLayoutHelper.layoutChild (0.20%)')" class="func_g" onmouseout="c()"><title >ChildLayoutHelper.layoutChild (0.20%)</title> | |
<rect ry="2" x="1034.2401" fill="rgb(223,52,48)" width="2.3599854" rx="2" y="4035.0" height="15.0"/> | |
<text font-family="Verdana" x="1037.24" y="4045.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect width="2.3599854" x="1034.2401" rx="2" height="15.0" y="4019.0" fill="rgb(213,106,44)" ry="2"/> | |
<text y="4029.50" font-family="Verdana" x="1037.24" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderConstrainedBox.performLayout (0.20%)')"><title >RenderConstrainedBox.performLayout (0.20%)</title> | |
<rect rx="2" fill="rgb(206,3,20)" x="1034.2401" ry="2" height="15.0" y="4003.0" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" y="4013.50" x="1037.24"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" rx="2" x="1034.2401" width="2.3599854" ry="2" y="3987.0" fill="rgb(210,124,46)"/> | |
<text x="1037.24" y="3997.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderCustomClip.performLayout (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderCustomClip.performLayout (0.20%)</title> | |
<rect x="1034.2401" height="15.0" rx="2" ry="2" fill="rgb(224,185,33)" y="3971.0" width="2.3599854"/> | |
<text y="3981.50" font-family="Verdana" x="1037.24" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" y="3955.0" ry="2" rx="2" x="1034.2401" height="15.0" fill="rgb(229,17,15)"/> | |
<text y="3965.50" x="1037.24" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" width="2.3599854" y="3939.0" fill="rgb(222,82,35)" ry="2" x="1034.2401" rx="2"/> | |
<text x="1037.24" y="3949.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderCustomPaint.performLayout (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderCustomPaint.performLayout (0.20%)</title> | |
<rect x="1034.2401" width="2.3599854" y="3923.0" fill="rgb(215,179,21)" ry="2" height="15.0" rx="2"/> | |
<text y="3933.50" x="1037.24" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect height="15.0" fill="rgb(228,214,7)" ry="2" x="1034.2401" rx="2" width="2.3599854" y="3907.0"/> | |
<text x="1037.24" font-size="12" font-family="Verdana" y="3917.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect ry="2" rx="2" height="15.0" fill="rgb(229,114,26)" x="1034.2401" y="3891.0" width="2.3599854"/> | |
<text x="1037.24" font-family="Verdana" font-size="12" y="3901.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect rx="2" height="15.0" fill="rgb(217,44,22)" y="3875.0" ry="2" x="1034.2401" width="2.3599854"/> | |
<text font-family="Verdana" y="3885.50" font-size="12" x="1037.24"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect ry="2" height="15.0" y="3859.0" fill="rgb(239,194,4)" x="1034.2401" rx="2" width="2.3599854"/> | |
<text x="1037.24" font-size="12" font-family="Verdana" y="3869.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect fill="rgb(227,130,18)" y="3843.0" ry="2" rx="2" x="1034.2401" width="2.3599854" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1037.24" y="3853.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect y="3827.0" rx="2" height="15.0" fill="rgb(247,45,34)" ry="2" width="2.3599854" x="1034.2401"/> | |
<text y="3837.50" font-size="12" font-family="Verdana" x="1037.24"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" x="1034.2401" height="15.0" y="3811.0" fill="rgb(215,133,14)" ry="2" rx="2"/> | |
<text font-size="12" y="3821.50" x="1037.24" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1034.2401" fill="rgb(250,226,16)" rx="2" ry="2" y="3795.0" width="2.3599854" height="15.0"/> | |
<text font-size="12" y="3805.50" font-family="Verdana" x="1037.24"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect height="15.0" rx="2" width="2.3599854" x="1034.2401" y="3779.0" fill="rgb(228,228,43)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1037.24" y="3789.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect fill="rgb(226,167,27)" height="15.0" x="1034.2401" rx="2" y="3763.0" ry="2" width="2.3599854"/> | |
<text y="3773.50" font-family="Verdana" x="1037.24" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect fill="rgb(207,228,29)" rx="2" ry="2" width="2.3599854" height="15.0" y="3747.0" x="1034.2401"/> | |
<text font-size="12" x="1037.24" font-family="Verdana" y="3757.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1034.2401" y="3731.0" fill="rgb(209,8,55)" ry="2" width="2.3599854" rx="2" height="15.0"/> | |
<text x="1037.24" font-size="12" y="3741.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderPadding.performLayout (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderPadding.performLayout (0.20%)</title> | |
<rect width="2.3599854" height="15.0" rx="2" ry="2" y="3715.0" x="1034.2401" fill="rgb(208,141,37)"/> | |
<text y="3725.50" font-size="12" x="1037.24" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" y="3699.0" x="1034.2401" ry="2" width="2.3599854" fill="rgb(228,174,19)" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1037.24" y="3709.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderPositionedBox.performLayout (0.20%)')" onclick="zoom(this)"><title >RenderPositionedBox.performLayout (0.20%)</title> | |
<rect ry="2" fill="rgb(230,75,36)" height="15.0" y="3683.0" rx="2" width="2.3599854" x="1034.2401"/> | |
<text y="3693.50" font-size="12" x="1037.24" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect ry="2" x="1034.2401" y="3667.0" height="15.0" fill="rgb(250,86,46)" width="2.3599854" rx="2"/> | |
<text font-family="Verdana" y="3677.50" x="1037.24" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderParagraph.performLayout (0.20%)')" onclick="zoom(this)"><title >RenderParagraph.performLayout (0.20%)</title> | |
<rect ry="2" x="1034.2401" rx="2" fill="rgb(211,134,13)" height="15.0" y="3651.0" width="2.3599854"/> | |
<text y="3661.50" font-family="Verdana" font-size="12" x="1037.24"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderParagraph._layoutTextWithConstraints (0.20%)')"><title >RenderParagraph._layoutTextWithConstraints (0.20%)</title> | |
<rect height="15.0" x="1034.2401" y="3635.0" fill="rgb(242,11,24)" width="2.3599854" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1037.24" y="3645.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_NativeParagraph._layout (0.10%)')" onmouseout="c()"><title >_NativeParagraph._layout (0.10%)</title> | |
<rect fill="rgb(219,223,51)" x="1034.2401" y="3619.0" height="15.0" rx="2" ry="2" width="1.1800537"/> | |
<text y="3629.50" font-size="12" font-family="Verdana" x="1037.24"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('NativeParagraph.__layout$Method$FfiNative (0.10%)')"><title >NativeParagraph.__layout$Method$FfiNative (0.10%)</title> | |
<rect height="15.0" x="1034.2401" fill="rgb(249,216,14)" y="3603.0" width="1.1800537" rx="2" ry="2"/> | |
<text y="3613.50" font-size="12" font-family="Verdana" x="1037.24"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('skia::textlayout::ParagraphImpl::layout(float) (0.10%)')" onclick="zoom(this)"><title >skia::textlayout::ParagraphImpl::layout(float) (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(217,114,18)" y="3587.0" ry="2" rx="2" x="1034.2401" height="15.0"/> | |
<text font-family="Verdana" x="1037.24" font-size="12" y="3597.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('skia::textlayout::ParagraphImpl::shapeTextIntoEndlessLine() (0.10%)')" class="func_g"><title >skia::textlayout::ParagraphImpl::shapeTextIntoEndlessLine() (0.10%)</title> | |
<rect rx="2" y="3571.0" height="15.0" width="1.1800537" ry="2" x="1034.2401" fill="rgb(214,12,38)"/> | |
<text font-size="12" y="3581.50" font-family="Verdana" x="1037.24"></text> | |
</g> | |
<g class="func_g" onmouseover="s('skia::textlayout::OneLineShaper::shape() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >skia::textlayout::OneLineShaper::shape() (0.10%)</title> | |
<rect height="15.0" y="3555.0" ry="2" width="1.1800537" rx="2" x="1034.2401" fill="rgb(253,202,28)"/> | |
<text y="3565.50" font-family="Verdana" x="1037.24" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('skia::textlayout::OneLineShaper::iterateThroughShapingRegions(std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)> const&) (0.10%)')" onclick="zoom(this)"><title >skia::textlayout::OneLineShaper::iterateThroughShapingRegions(std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)> const&) (0.10%)</title> | |
<rect fill="rgb(253,76,54)" x="1034.2401" y="3539.0" height="15.0" ry="2" width="1.1800537" rx="2"/> | |
<text y="3549.50" font-size="12" font-family="Verdana" x="1037.24"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const (0.10%)')" onmouseout="c()"><title >std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const (0.10%)</title> | |
<rect width="1.1800537" height="15.0" y="3523.0" ry="2" x="1034.2401" fill="rgb(234,167,25)" rx="2"/> | |
<text y="3533.50" x="1037.24" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0, std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0>, float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>&&, SkSpan<skia::textlayout::Block>&&, float&, unsigned long&&, unsigned char&&) (0.10%)')" class="func_g" onclick="zoom(this)"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0, std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0>, float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>&&, SkSpan<skia::textlayout::Block>&&, float&, unsigned long&&, unsigned char&&) (0.10%)</title> | |
<rect x="1034.2401" y="3507.0" ry="2" width="1.1800537" rx="2" height="15.0" fill="rgb(207,139,55)"/> | |
<text font-size="12" y="3517.50" x="1037.24" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('skia::textlayout::OneLineShaper::iterateThroughFontStyles(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, std::_fl::function<void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)> const&) (0.10%)')" class="func_g"><title >skia::textlayout::OneLineShaper::iterateThroughFontStyles(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, std::_fl::function<void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)> const&) (0.10%)</title> | |
<rect width="1.1800537" y="3491.0" fill="rgb(249,85,46)" ry="2" rx="2" height="15.0" x="1034.2401"/> | |
<text font-size="12" x="1037.24" y="3501.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>, void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>::operator()(skia::textlayout::Block&&, skia_private::TArray<SkShaper::Feature, true>&&) (0.10%)')" onmouseout="c()"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>, void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>::operator()(skia::textlayout::Block&&, skia_private::TArray<SkShaper::Feature, true>&&) (0.10%)</title> | |
<rect y="3475.0" fill="rgb(220,66,21)" height="15.0" width="1.1800537" ry="2" rx="2" x="1034.2401"/> | |
<text font-size="12" x="1037.24" y="3485.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('skia::textlayout::OneLineShaper::matchResolvedFonts(skia::textlayout::TextStyle const&, std::_fl::function<skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)> const&) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >skia::textlayout::OneLineShaper::matchResolvedFonts(skia::textlayout::TextStyle const&, std::_fl::function<skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)> const&) (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(207,177,3)" rx="2" ry="2" y="3459.0" height="15.0" x="1034.2401"/> | |
<text font-family="Verdana" font-size="12" x="1037.24" y="3469.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>)>, skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)>::operator()(sk_sp<SkTypeface>&&) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>)>, skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)>::operator()(sk_sp<SkTypeface>&&) (0.10%)</title> | |
<rect width="1.1800537" x="1034.2401" y="3443.0" rx="2" ry="2" height="15.0" fill="rgb(220,12,16)"/> | |
<text font-size="12" font-family="Verdana" y="3453.50" x="1037.24"></text> | |
</g> | |
<g onmouseover="s('(anonymous namespace)::ShaperHarfBuzz::shape(char const*, unsigned long, SkShaper::FontRunIterator&, SkShaper::BiDiRunIterator&, SkShaper::ScriptRunIterator&, SkShaper::LanguageRunIterator&, SkShaper::Feature const*, unsigned long, float, SkShaper::RunHandler*) const (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >(anonymous namespace)::ShaperHarfBuzz::shape(char const*, unsigned long, SkShaper::FontRunIterator&, SkShaper::BiDiRunIterator&, SkShaper::ScriptRunIterator&, SkShaper::LanguageRunIterator&, SkShaper::Feature const*, unsigned long, float, SkShaper::RunHandler*) const (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800537" fill="rgb(254,196,38)" x="1034.2401" y="3427.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1037.24" y="3437.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('(anonymous namespace)::ShapeDontWrapOrReorder::wrap(char const*, unsigned long, SkShaper::BiDiRunIterator const&, SkShaper::LanguageRunIterator const&, SkShaper::ScriptRunIterator const&, SkShaper::FontRunIterator const&, (anonymous namespace)::RunIteratorQueue&, SkShaper::Feature const*, unsigned long, float, SkShaper::RunHandler*) const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >(anonymous namespace)::ShapeDontWrapOrReorder::wrap(char const*, unsigned long, SkShaper::BiDiRunIterator const&, SkShaper::LanguageRunIterator const&, SkShaper::ScriptRunIterator const&, SkShaper::FontRunIterator const&, (anonymous namespace)::RunIteratorQueue&, SkShaper::Feature const*, unsigned long, float, SkShaper::RunHandler*) const (0.10%)</title> | |
<rect width="1.1800537" y="3411.0" ry="2" fill="rgb(207,108,53)" height="15.0" x="1034.2401" rx="2"/> | |
<text font-size="12" x="1037.24" font-family="Verdana" y="3421.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('(anonymous namespace)::ShaperHarfBuzz::shape(char const*, unsigned long, char const*, char const*, SkShaper::BiDiRunIterator const&, SkShaper::LanguageRunIterator const&, SkShaper::ScriptRunIterator const&, SkShaper::FontRunIterator const&, SkShaper::Feature const*, unsigned long) const (0.10%)')"><title >(anonymous namespace)::ShaperHarfBuzz::shape(char const*, unsigned long, char const*, char const*, SkShaper::BiDiRunIterator const&, SkShaper::LanguageRunIterator const&, SkShaper::ScriptRunIterator const&, SkShaper::FontRunIterator const&, SkShaper::Feature const*, unsigned long) const (0.10%)</title> | |
<rect y="3395.0" ry="2" width="1.1800537" x="1034.2401" rx="2" height="15.0" fill="rgb(216,23,54)"/> | |
<text y="3405.50" x="1037.24" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderTheater.performLayout (0.30%)')" class="func_g" onclick="zoom(this)"><title >RenderTheater.performLayout (0.30%)</title> | |
<rect width="3.540039" height="15.0" rx="2" ry="2" y="4355.0" x="1041.3201" fill="rgb(220,5,45)"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="4365.50"></text> | |
</g> | |
<g onmouseover="s('RenderTheaterMixin.layoutChild (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderTheaterMixin.layoutChild (0.30%)</title> | |
<rect height="15.0" y="4339.0" x="1041.3201" ry="2" width="3.540039" fill="rgb(239,127,24)" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="4349.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.30%)')" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect ry="2" fill="rgb(253,35,26)" height="15.0" y="4323.0" rx="2" width="3.540039" x="1041.3201"/> | |
<text y="4333.50" font-family="Verdana" font-size="12" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect ry="2" x="1041.3201" rx="2" fill="rgb(214,63,0)" height="15.0" y="4307.0" width="3.540039"/> | |
<text x="1044.32" font-size="12" y="4317.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect height="15.0" x="1041.3201" y="4291.0" fill="rgb(213,223,1)" width="3.540039" rx="2" ry="2"/> | |
<text y="4301.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderOffstage.performLayout (0.30%)')" class="func_g"><title >RenderOffstage.performLayout (0.30%)</title> | |
<rect rx="2" ry="2" y="4275.0" width="3.540039" height="15.0" fill="rgb(252,75,3)" x="1041.3201"/> | |
<text font-family="Verdana" y="4285.50" x="1044.32" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.30%)</title> | |
<rect ry="2" width="3.540039" height="15.0" x="1041.3201" y="4259.0" fill="rgb(255,180,48)" rx="2"/> | |
<text x="1044.32" y="4269.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect ry="2" y="4243.0" height="15.0" width="3.540039" rx="2" x="1041.3201" fill="rgb(250,121,3)"/> | |
<text font-size="12" font-family="Verdana" y="4253.50" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect fill="rgb(214,24,2)" x="1041.3201" y="4227.0" height="15.0" ry="2" width="3.540039" rx="2"/> | |
<text y="4237.50" x="1044.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect height="15.0" ry="2" y="4211.0" width="3.540039" fill="rgb(225,39,8)" x="1041.3201" rx="2"/> | |
<text y="4221.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.30%)')" class="func_g"><title >RenderObject.layout (0.30%)</title> | |
<rect y="4195.0" fill="rgb(211,107,13)" rx="2" width="3.540039" height="15.0" ry="2" x="1041.3201"/> | |
<text font-size="12" y="4205.50" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect fill="rgb(246,56,19)" height="15.0" rx="2" width="3.540039" ry="2" y="4179.0" x="1041.3201"/> | |
<text font-family="Verdana" y="4189.50" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect height="15.0" width="3.540039" rx="2" ry="2" x="1041.3201" fill="rgb(243,0,8)" y="4163.0"/> | |
<text x="1044.32" y="4173.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect y="4147.0" fill="rgb(240,153,46)" height="15.0" width="3.540039" ry="2" rx="2" x="1041.3201"/> | |
<text y="4157.50" x="1044.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect y="4131.0" x="1041.3201" rx="2" fill="rgb(214,163,6)" ry="2" width="3.540039" height="15.0"/> | |
<text font-size="12" y="4141.50" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect fill="rgb(221,163,48)" ry="2" x="1041.3201" height="15.0" width="3.540039" rx="2" y="4115.0"/> | |
<text x="1044.32" font-family="Verdana" font-size="12" y="4125.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.30%)')" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect width="3.540039" x="1041.3201" y="4099.0" rx="2" ry="2" height="15.0" fill="rgb(213,152,45)"/> | |
<text y="4109.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderStack.performLayout (0.30%)')" onmouseout="c()"><title >RenderStack.performLayout (0.30%)</title> | |
<rect ry="2" width="3.540039" y="4083.0" x="1041.3201" fill="rgb(233,74,34)" rx="2" height="15.0"/> | |
<text font-size="12" y="4093.50" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderStack._computeSize (0.30%)')"><title >RenderStack._computeSize (0.30%)</title> | |
<rect y="4067.0" width="3.540039" x="1041.3201" height="15.0" fill="rgb(214,144,17)" ry="2" rx="2"/> | |
<text font-size="12" y="4077.50" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ChildLayoutHelper.layoutChild (#2) (0.30%)')"><title >ChildLayoutHelper.layoutChild (#2) (0.30%)</title> | |
<rect y="4051.0" rx="2" width="3.540039" fill="rgb(253,39,2)" x="1041.3201" height="15.0" ry="2"/> | |
<text x="1044.32" font-size="12" font-family="Verdana" y="4061.50"></text> | |
</g> | |
<g onmouseover="s('ChildLayoutHelper.layoutChild (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >ChildLayoutHelper.layoutChild (0.30%)</title> | |
<rect x="1041.3201" y="4035.0" height="15.0" width="3.540039" fill="rgb(229,102,36)" rx="2" ry="2"/> | |
<text y="4045.50" x="1044.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect width="3.540039" fill="rgb(228,130,4)" y="4019.0" height="15.0" x="1041.3201" rx="2" ry="2"/> | |
<text y="4029.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect ry="2" fill="rgb(211,121,28)" width="3.540039" height="15.0" y="4003.0" rx="2" x="1041.3201"/> | |
<text font-family="Verdana" y="4013.50" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect fill="rgb(217,168,1)" rx="2" x="1041.3201" y="3987.0" width="3.540039" ry="2" height="15.0"/> | |
<text y="3997.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect fill="rgb(240,133,33)" x="1041.3201" y="3971.0" height="15.0" rx="2" width="3.540039" ry="2"/> | |
<text y="3981.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect x="1041.3201" ry="2" height="15.0" fill="rgb(223,163,7)" y="3955.0" rx="2" width="3.540039"/> | |
<text font-family="Verdana" y="3965.50" x="1044.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect y="3939.0" width="3.540039" ry="2" x="1041.3201" height="15.0" fill="rgb(228,172,13)" rx="2"/> | |
<text y="3949.50" font-family="Verdana" x="1044.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect height="15.0" fill="rgb(235,27,29)" rx="2" ry="2" width="3.540039" x="1041.3201" y="3923.0"/> | |
<text y="3933.50" font-family="Verdana" x="1044.32" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderCustomClip.performLayout (0.30%)')"><title >RenderCustomClip.performLayout (0.30%)</title> | |
<rect width="3.540039" rx="2" x="1041.3201" y="3907.0" height="15.0" ry="2" fill="rgb(228,141,10)"/> | |
<text x="1044.32" y="3917.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect width="3.540039" ry="2" y="3891.0" x="1041.3201" fill="rgb(213,172,53)" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="3901.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect height="15.0" fill="rgb(209,42,47)" rx="2" ry="2" y="3875.0" width="3.540039" x="1041.3201"/> | |
<text x="1044.32" font-size="12" font-family="Verdana" y="3885.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect ry="2" x="1041.3201" y="3859.0" fill="rgb(239,202,3)" width="3.540039" rx="2" height="15.0"/> | |
<text font-size="12" x="1044.32" y="3869.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.30%)')" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.30%)</title> | |
<rect rx="2" x="1041.3201" fill="rgb(237,143,8)" y="3843.0" height="15.0" ry="2" width="3.540039"/> | |
<text y="3853.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderCustomMultiChildLayoutBox.performLayout (0.30%)')"><title >RenderCustomMultiChildLayoutBox.performLayout (0.30%)</title> | |
<rect fill="rgb(227,6,13)" x="1041.3201" ry="2" rx="2" y="3827.0" height="15.0" width="3.540039"/> | |
<text font-family="Verdana" y="3837.50" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('MultiChildLayoutDelegate._callPerformLayout (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >MultiChildLayoutDelegate._callPerformLayout (0.30%)</title> | |
<rect y="3811.0" x="1041.3201" rx="2" ry="2" width="3.540039" height="15.0" fill="rgb(208,126,30)"/> | |
<text x="1044.32" font-family="Verdana" y="3821.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ScaffoldLayout.performLayout (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >ScaffoldLayout.performLayout (0.30%)</title> | |
<rect y="3795.0" width="3.540039" x="1041.3201" rx="2" height="15.0" ry="2" fill="rgb(254,195,3)"/> | |
<text font-size="12" font-family="Verdana" y="3805.50" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('MultiChildLayoutDelegate.layoutChild (0.30%)')" onclick="zoom(this)" class="func_g"><title >MultiChildLayoutDelegate.layoutChild (0.30%)</title> | |
<rect ry="2" x="1041.3201" width="3.540039" fill="rgb(234,125,19)" y="3779.0" height="15.0" rx="2"/> | |
<text x="1044.32" y="3789.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.30%)')" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect width="3.540039" fill="rgb(229,115,7)" rx="2" height="15.0" ry="2" y="3763.0" x="1041.3201"/> | |
<text font-size="12" y="3773.50" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderConstrainedBox.performLayout (0.30%)')" class="func_g"><title >RenderConstrainedBox.performLayout (0.30%)</title> | |
<rect height="15.0" x="1041.3201" width="3.540039" ry="2" rx="2" fill="rgb(255,173,8)" y="3747.0"/> | |
<text font-family="Verdana" font-size="12" y="3757.50" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.30%)</title> | |
<rect rx="2" y="3731.0" width="3.540039" height="15.0" fill="rgb(226,13,2)" x="1041.3201" ry="2"/> | |
<text y="3741.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect height="15.0" width="3.540039" y="3715.0" ry="2" fill="rgb(245,161,8)" rx="2" x="1041.3201"/> | |
<text font-family="Verdana" x="1044.32" y="3725.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.30%)')"><title >RenderObject.layout (0.30%)</title> | |
<rect y="3699.0" width="3.540039" ry="2" x="1041.3201" fill="rgb(216,203,35)" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="1044.32" y="3709.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect rx="2" fill="rgb(212,108,4)" ry="2" x="1041.3201" width="3.540039" height="15.0" y="3683.0"/> | |
<text y="3693.50" font-family="Verdana" font-size="12" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect width="3.540039" y="3667.0" height="15.0" rx="2" fill="rgb(228,203,19)" ry="2" x="1041.3201"/> | |
<text y="3677.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderCustomClip.performLayout (0.30%)')" class="func_g" onmouseout="c()"><title >RenderCustomClip.performLayout (0.30%)</title> | |
<rect ry="2" width="3.540039" x="1041.3201" rx="2" y="3651.0" height="15.0" fill="rgb(217,77,53)"/> | |
<text y="3661.50" font-family="Verdana" x="1044.32" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect height="15.0" fill="rgb(255,135,33)" x="1041.3201" rx="2" ry="2" y="3635.0" width="3.540039"/> | |
<text font-size="12" x="1044.32" y="3645.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect y="3619.0" ry="2" height="15.0" fill="rgb(236,215,33)" width="3.540039" x="1041.3201" rx="2"/> | |
<text y="3629.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect ry="2" width="3.540039" y="3603.0" rx="2" height="15.0" fill="rgb(241,27,1)" x="1041.3201"/> | |
<text font-family="Verdana" x="1044.32" y="3613.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect y="3587.0" ry="2" fill="rgb(227,58,50)" width="3.540039" height="15.0" rx="2" x="1041.3201"/> | |
<text x="1044.32" font-family="Verdana" font-size="12" y="3597.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect x="1041.3201" width="3.540039" fill="rgb(235,132,44)" rx="2" y="3571.0" height="15.0" ry="2"/> | |
<text y="3581.50" x="1044.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect ry="2" rx="2" fill="rgb(214,193,19)" y="3555.0" height="15.0" width="3.540039" x="1041.3201"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="3565.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderPositionedBox.performLayout (0.30%)')" onmouseout="c()" class="func_g"><title >RenderPositionedBox.performLayout (0.30%)</title> | |
<rect width="3.540039" fill="rgb(212,75,29)" y="3539.0" rx="2" ry="2" x="1041.3201" height="15.0"/> | |
<text y="3549.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.30%)')" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect rx="2" ry="2" width="3.540039" height="15.0" fill="rgb(220,159,15)" x="1041.3201" y="3523.0"/> | |
<text font-size="12" x="1044.32" y="3533.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderPadding.performLayout (0.30%)')"><title >RenderPadding.performLayout (0.30%)</title> | |
<rect y="3507.0" height="15.0" rx="2" width="3.540039" x="1041.3201" fill="rgb(240,43,55)" ry="2"/> | |
<text x="1044.32" y="3517.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.30%)')"><title >RenderObject.layout (0.30%)</title> | |
<rect height="15.0" ry="2" width="3.540039" rx="2" x="1041.3201" fill="rgb(229,144,30)" y="3491.0"/> | |
<text x="1044.32" font-family="Verdana" y="3501.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderCustomClip.performLayout (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderCustomClip.performLayout (0.30%)</title> | |
<rect ry="2" width="3.540039" height="15.0" rx="2" fill="rgb(210,186,31)" x="1041.3201" y="3475.0"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="3485.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.30%)</title> | |
<rect width="3.540039" x="1041.3201" rx="2" height="15.0" fill="rgb(212,105,24)" ry="2" y="3459.0"/> | |
<text font-size="12" x="1044.32" y="3469.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.30%)')" onmouseout="c()"><title >RenderObject.layout (0.30%)</title> | |
<rect x="1041.3201" ry="2" height="15.0" width="3.540039" y="3443.0" rx="2" fill="rgb(206,119,25)"/> | |
<text font-size="12" y="3453.50" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderCustomSingleChildLayoutBox.performLayout (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderCustomSingleChildLayoutBox.performLayout (0.30%)</title> | |
<rect fill="rgb(225,195,7)" width="3.540039" ry="2" y="3427.0" rx="2" height="15.0" x="1041.3201"/> | |
<text font-size="12" x="1044.32" font-family="Verdana" y="3437.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.30%)')"><title >RenderObject.layout (0.30%)</title> | |
<rect ry="2" rx="2" width="3.540039" y="3411.0" x="1041.3201" height="15.0" fill="rgb(218,175,51)"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="3421.50"></text> | |
</g> | |
<g onmouseover="s('RenderCustomMultiChildLayoutBox.performLayout (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderCustomMultiChildLayoutBox.performLayout (0.30%)</title> | |
<rect rx="2" fill="rgb(224,122,13)" ry="2" y="3395.0" width="3.540039" height="15.0" x="1041.3201"/> | |
<text y="3405.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('MultiChildLayoutDelegate._callPerformLayout (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >MultiChildLayoutDelegate._callPerformLayout (0.30%)</title> | |
<rect height="15.0" width="3.540039" y="3379.0" x="1041.3201" rx="2" ry="2" fill="rgb(238,23,7)"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="3389.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ToolbarLayout.performLayout (0.30%)')" onclick="zoom(this)" class="func_g"><title >ToolbarLayout.performLayout (0.30%)</title> | |
<rect width="3.540039" ry="2" height="15.0" rx="2" fill="rgb(232,16,14)" x="1041.3201" y="3363.0"/> | |
<text font-family="Verdana" x="1044.32" font-size="12" y="3373.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('MultiChildLayoutDelegate.layoutChild (0.30%)')" onclick="zoom(this)" class="func_g"><title >MultiChildLayoutDelegate.layoutChild (0.30%)</title> | |
<rect rx="2" fill="rgb(220,50,54)" height="15.0" x="1041.3201" y="3347.0" width="3.540039" ry="2"/> | |
<text y="3357.50" font-family="Verdana" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.30%)')" onclick="zoom(this)"><title >RenderObject.layout (0.30%)</title> | |
<rect width="3.540039" x="1041.3201" rx="2" ry="2" fill="rgb(223,187,18)" y="3331.0" height="15.0"/> | |
<text font-family="Verdana" y="3341.50" x="1044.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderConstrainedBox.performLayout (0.20%)')" onclick="zoom(this)"><title >RenderConstrainedBox.performLayout (0.20%)</title> | |
<rect ry="2" y="3315.0" width="2.3599854" height="15.0" rx="2" x="1041.3201" fill="rgb(215,48,8)"/> | |
<text x="1044.32" y="3325.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1041.3201" y="3299.0" height="15.0" width="2.3599854" ry="2" fill="rgb(240,112,10)" rx="2"/> | |
<text font-size="12" x="1044.32" y="3309.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderPositionedBox.performLayout (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderPositionedBox.performLayout (0.20%)</title> | |
<rect height="15.0" rx="2" x="1041.3201" y="3283.0" width="2.3599854" ry="2" fill="rgb(236,140,17)"/> | |
<text font-family="Verdana" x="1044.32" y="3293.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect rx="2" width="2.3599854" ry="2" y="3267.0" height="15.0" fill="rgb(223,175,2)" x="1041.3201"/> | |
<text x="1044.32" y="3277.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="3251.0" fill="rgb(255,10,48)" x="1041.3201" height="15.0" rx="2"/> | |
<text y="3261.50" x="1044.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect rx="2" fill="rgb(227,73,7)" y="3235.0" ry="2" width="2.3599854" height="15.0" x="1041.3201"/> | |
<text font-family="Verdana" x="1044.32" y="3245.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderInputPadding.performLayout (#2) (0.20%)')" onclick="zoom(this)"><title >RenderInputPadding.performLayout (#2) (0.20%)</title> | |
<rect y="3219.0" width="2.3599854" height="15.0" ry="2" rx="2" x="1041.3201" fill="rgb(233,38,2)"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="3229.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderInputPadding._computeSize (#2) (0.20%)')" onmouseout="c()"><title >RenderInputPadding._computeSize (#2) (0.20%)</title> | |
<rect ry="2" fill="rgb(248,78,5)" x="1041.3201" width="2.3599854" rx="2" y="3203.0" height="15.0"/> | |
<text y="3213.50" font-family="Verdana" x="1044.32" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ChildLayoutHelper.layoutChild (#2) (0.20%)')"><title >ChildLayoutHelper.layoutChild (#2) (0.20%)</title> | |
<rect rx="2" x="1041.3201" ry="2" y="3187.0" height="15.0" fill="rgb(251,42,53)" width="2.3599854"/> | |
<text x="1044.32" y="3197.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ChildLayoutHelper.layoutChild (0.20%)')" onmouseout="c()"><title >ChildLayoutHelper.layoutChild (0.20%)</title> | |
<rect x="1041.3201" fill="rgb(252,105,50)" rx="2" y="3171.0" ry="2" width="2.3599854" height="15.0"/> | |
<text font-size="12" x="1044.32" font-family="Verdana" y="3181.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect rx="2" height="15.0" x="1041.3201" width="2.3599854" ry="2" y="3155.0" fill="rgb(224,28,41)"/> | |
<text font-family="Verdana" x="1044.32" y="3165.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderConstrainedBox.performLayout (0.20%)')" onmouseout="c()"><title >RenderConstrainedBox.performLayout (0.20%)</title> | |
<rect height="15.0" x="1041.3201" y="3139.0" fill="rgb(209,208,36)" rx="2" width="2.3599854" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="3149.50" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect width="2.3599854" height="15.0" rx="2" x="1041.3201" ry="2" y="3123.0" fill="rgb(251,62,46)"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="3133.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderCustomClip.performLayout (0.20%)')" onmouseout="c()"><title >RenderCustomClip.performLayout (0.20%)</title> | |
<rect ry="2" x="1041.3201" y="3107.0" height="15.0" width="2.3599854" rx="2" fill="rgb(241,174,55)"/> | |
<text font-size="12" x="1044.32" y="3117.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect fill="rgb(217,146,8)" y="3091.0" x="1041.3201" width="2.3599854" rx="2" height="15.0" ry="2"/> | |
<text y="3101.50" font-family="Verdana" font-size="12" x="1044.32"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1041.3201" ry="2" height="15.0" y="3075.0" width="2.3599854" rx="2" fill="rgb(249,215,55)"/> | |
<text y="3085.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderCustomPaint.performLayout (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderCustomPaint.performLayout (0.20%)</title> | |
<rect height="15.0" x="1041.3201" rx="2" fill="rgb(233,69,22)" y="3059.0" width="2.3599854" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="3069.50" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" x="1041.3201" fill="rgb(222,184,5)" ry="2" y="3043.0" height="15.0" rx="2"/> | |
<text font-family="Verdana" y="3053.50" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" x="1041.3201" y="3027.0" rx="2" ry="2" width="2.3599854" fill="rgb(214,151,34)"/> | |
<text x="1044.32" y="3037.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect x="1041.3201" width="2.3599854" ry="2" y="3011.0" height="15.0" rx="2" fill="rgb(224,129,6)"/> | |
<text font-family="Verdana" x="1044.32" y="3021.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect width="2.3599854" y="2995.0" x="1041.3201" ry="2" fill="rgb(208,128,54)" rx="2" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="3005.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderLayoutSurrogateProxyBox.performLayout (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderLayoutSurrogateProxyBox.performLayout (0.20%)</title> | |
<rect height="15.0" fill="rgb(230,184,31)" y="2979.0" width="2.3599854" ry="2" rx="2" x="1041.3201"/> | |
<text y="2989.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" y="2963.0" x="1041.3201" rx="2" height="15.0" fill="rgb(238,103,49)" ry="2"/> | |
<text font-family="Verdana" y="2973.50" font-size="12" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1041.3201" rx="2" y="2947.0" width="2.3599854" ry="2" height="15.0" fill="rgb(227,192,36)"/> | |
<text font-size="12" x="1044.32" y="2957.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect ry="2" height="15.0" x="1041.3201" width="2.3599854" fill="rgb(224,180,55)" y="2931.0" rx="2"/> | |
<text font-family="Verdana" x="1044.32" y="2941.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect rx="2" width="2.3599854" ry="2" height="15.0" fill="rgb(231,127,35)" x="1041.3201" y="2915.0"/> | |
<text x="1044.32" y="2925.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" x="1041.3201" height="15.0" fill="rgb(250,209,32)" ry="2" rx="2" y="2899.0"/> | |
<text font-size="12" x="1044.32" y="2909.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect y="2883.0" rx="2" ry="2" height="15.0" x="1041.3201" fill="rgb(244,212,26)" width="2.3599854"/> | |
<text font-size="12" x="1044.32" font-family="Verdana" y="2893.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect rx="2" height="15.0" fill="rgb(231,9,12)" ry="2" y="2867.0" x="1041.3201" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="2877.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1041.3201" y="2851.0" ry="2" height="15.0" fill="rgb(205,135,10)" rx="2" width="2.3599854"/> | |
<text x="1044.32" font-family="Verdana" y="2861.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect y="2835.0" height="15.0" rx="2" x="1041.3201" ry="2" width="2.3599854" fill="rgb(215,85,27)"/> | |
<text font-size="12" font-family="Verdana" y="2845.50" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect fill="rgb(205,155,12)" width="2.3599854" x="1041.3201" rx="2" y="2819.0" height="15.0" ry="2"/> | |
<text font-family="Verdana" x="1044.32" font-size="12" y="2829.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect y="2803.0" height="15.0" width="2.3599854" x="1041.3201" rx="2" fill="rgb(251,3,5)" ry="2"/> | |
<text x="1044.32" font-size="12" y="2813.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect fill="rgb(240,177,46)" ry="2" height="15.0" rx="2" x="1041.3201" width="2.3599854" y="2787.0"/> | |
<text x="1044.32" font-size="12" font-family="Verdana" y="2797.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect height="15.0" fill="rgb(225,185,20)" rx="2" y="2771.0" ry="2" x="1041.3201" width="2.3599854"/> | |
<text y="2781.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" y="2755.0" x="1041.3201" rx="2" fill="rgb(217,170,6)" width="2.3599854" ry="2"/> | |
<text x="1044.32" font-family="Verdana" font-size="12" y="2765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect fill="rgb(225,122,35)" rx="2" x="1041.3201" y="2739.0" height="15.0" ry="2" width="2.3599854"/> | |
<text x="1044.32" y="2749.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect fill="rgb(233,98,8)" width="2.3599854" ry="2" y="2723.0" rx="2" height="15.0" x="1041.3201"/> | |
<text y="2733.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderPadding.performLayout (0.20%)')"><title >RenderPadding.performLayout (0.20%)</title> | |
<rect width="2.3599854" rx="2" x="1041.3201" height="15.0" ry="2" y="2707.0" fill="rgb(235,223,22)"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="2717.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1041.3201" height="15.0" fill="rgb(238,201,52)" ry="2" y="2691.0" rx="2" width="2.3599854"/> | |
<text font-size="12" x="1044.32" y="2701.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderPositionedBox.performLayout (0.20%)')"><title >RenderPositionedBox.performLayout (0.20%)</title> | |
<rect y="2675.0" x="1041.3201" ry="2" fill="rgb(248,143,2)" height="15.0" width="2.3599854" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="2685.50" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1041.3201" rx="2" height="15.0" width="2.3599854" y="2659.0" fill="rgb(211,91,6)" ry="2"/> | |
<text y="2669.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" height="15.0" fill="rgb(232,201,45)" rx="2" x="1041.3201" y="2643.0" ry="2"/> | |
<text x="1044.32" font-size="12" y="2653.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect ry="2" x="1041.3201" width="2.3599854" height="15.0" y="2627.0" fill="rgb(205,170,38)" rx="2"/> | |
<text y="2637.50" font-family="Verdana" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect width="2.3599854" height="15.0" fill="rgb(245,119,21)" y="2611.0" x="1041.3201" ry="2" rx="2"/> | |
<text y="2621.50" font-family="Verdana" font-size="12" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" width="2.3599854" y="2595.0" rx="2" x="1041.3201" fill="rgb(238,167,42)" ry="2"/> | |
<text x="1044.32" font-family="Verdana" y="2605.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect y="2579.0" rx="2" width="2.3599854" height="15.0" ry="2" x="1041.3201" fill="rgb(213,121,5)"/> | |
<text x="1044.32" font-size="12" y="2589.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1041.3201" fill="rgb(211,209,13)" width="2.3599854" rx="2" ry="2" y="2563.0" height="15.0"/> | |
<text y="2573.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderConstrainedBox.performLayout (0.20%)')" onclick="zoom(this)"><title >RenderConstrainedBox.performLayout (0.20%)</title> | |
<rect rx="2" y="2547.0" fill="rgb(251,27,36)" width="2.3599854" height="15.0" ry="2" x="1041.3201"/> | |
<text font-family="Verdana" y="2557.50" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect width="2.3599854" height="15.0" ry="2" x="1041.3201" y="2531.0" rx="2" fill="rgb(223,192,36)"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="2541.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderPositionedBox.performLayout (0.20%)')" class="func_g"><title >RenderPositionedBox.performLayout (0.20%)</title> | |
<rect width="2.3599854" y="2515.0" rx="2" x="1041.3201" height="15.0" fill="rgb(241,106,3)" ry="2"/> | |
<text font-family="Verdana" x="1044.32" y="2525.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()"><title >RenderObject.layout (0.20%)</title> | |
<rect y="2499.0" rx="2" x="1041.3201" height="15.0" fill="rgb(232,225,18)" ry="2" width="2.3599854"/> | |
<text y="2509.50" font-family="Verdana" font-size="12" x="1044.32"></text> | |
</g> | |
<g onmouseover="s('RenderParagraph.performLayout (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderParagraph.performLayout (0.20%)</title> | |
<rect fill="rgb(247,67,42)" y="2483.0" height="15.0" ry="2" rx="2" x="1041.3201" width="2.3599854"/> | |
<text font-family="Verdana" x="1044.32" font-size="12" y="2493.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderParagraph._layoutTextWithConstraints (0.20%)')" class="func_g" onmouseout="c()"><title >RenderParagraph._layoutTextWithConstraints (0.20%)</title> | |
<rect height="15.0" fill="rgb(220,41,7)" rx="2" x="1041.3201" ry="2" width="2.3599854" y="2467.0"/> | |
<text x="1044.32" font-family="Verdana" font-size="12" y="2477.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_NativeParagraph._layout (0.20%)')"><title >_NativeParagraph._layout (0.20%)</title> | |
<rect rx="2" ry="2" x="1041.3201" y="2451.0" height="15.0" width="2.3599854" fill="rgb(218,75,37)"/> | |
<text x="1044.32" y="2461.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('NativeParagraph.__layout$Method$FfiNative (0.20%)')" class="func_g"><title >NativeParagraph.__layout$Method$FfiNative (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="2435.0" rx="2" x="1041.3201" height="15.0" fill="rgb(226,2,30)"/> | |
<text x="1044.32" y="2445.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('skia::textlayout::ParagraphImpl::layout(float) (0.20%)')" onmouseout="c()"><title >skia::textlayout::ParagraphImpl::layout(float) (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(230,156,31)" rx="2" height="15.0" x="1041.3201" ry="2" y="2419.0"/> | |
<text font-size="12" y="2429.50" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('skia::textlayout::ParagraphImpl::shapeTextIntoEndlessLine() (0.10%)')"><title >skia::textlayout::ParagraphImpl::shapeTextIntoEndlessLine() (0.10%)</title> | |
<rect ry="2" fill="rgb(213,149,18)" x="1041.3201" height="15.0" y="2403.0" width="1.1800537" rx="2"/> | |
<text y="2413.50" x="1044.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('skia::textlayout::OneLineShaper::shape() (0.10%)')" onclick="zoom(this)" class="func_g"><title >skia::textlayout::OneLineShaper::shape() (0.10%)</title> | |
<rect height="15.0" y="2387.0" fill="rgb(239,124,14)" x="1041.3201" width="1.1800537" ry="2" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="2397.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('skia::textlayout::OneLineShaper::iterateThroughShapingRegions(std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)> const&) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >skia::textlayout::OneLineShaper::iterateThroughShapingRegions(std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)> const&) (0.10%)</title> | |
<rect height="15.0" width="1.1800537" x="1041.3201" fill="rgb(243,115,3)" rx="2" y="2371.0" ry="2"/> | |
<text y="2381.50" x="1044.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const (0.10%)</title> | |
<rect y="2355.0" height="15.0" rx="2" fill="rgb(211,37,4)" ry="2" x="1041.3201" width="1.1800537"/> | |
<text y="2365.50" font-family="Verdana" x="1044.32" font-size="12"></text> | |
</g> | |
<g onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0, std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0>, float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>&&, SkSpan<skia::textlayout::Block>&&, float&, unsigned long&&, unsigned char&&) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0, std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0>, float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>&&, SkSpan<skia::textlayout::Block>&&, float&, unsigned long&&, unsigned char&&) (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="2339.0" x="1041.3201" height="15.0" fill="rgb(241,110,22)" rx="2"/> | |
<text font-size="12" x="1044.32" font-family="Verdana" y="2349.50"></text> | |
</g> | |
<g onmouseover="s('skia::textlayout::OneLineShaper::iterateThroughFontStyles(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, std::_fl::function<void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)> const&) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >skia::textlayout::OneLineShaper::iterateThroughFontStyles(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, std::_fl::function<void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)> const&) (0.10%)</title> | |
<rect width="1.1800537" height="15.0" x="1041.3201" fill="rgb(236,53,23)" y="2323.0" rx="2" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1044.32" y="2333.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>, void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>::operator()(skia::textlayout::Block&&, skia_private::TArray<SkShaper::Feature, true>&&) (0.10%)')"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>, void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>::operator()(skia::textlayout::Block&&, skia_private::TArray<SkShaper::Feature, true>&&) (0.10%)</title> | |
<rect fill="rgb(254,217,20)" width="1.1800537" height="15.0" rx="2" ry="2" x="1041.3201" y="2307.0"/> | |
<text font-family="Verdana" font-size="12" x="1044.32" y="2317.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('skia::textlayout::OneLineShaper::matchResolvedFonts(skia::textlayout::TextStyle const&, std::_fl::function<skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)> const&) (0.10%)')"><title >skia::textlayout::OneLineShaper::matchResolvedFonts(skia::textlayout::TextStyle const&, std::_fl::function<skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)> const&) (0.10%)</title> | |
<rect x="1041.3201" height="15.0" width="1.1800537" y="2291.0" ry="2" fill="rgb(224,59,1)" rx="2"/> | |
<text font-size="12" y="2301.50" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('skia::textlayout::FontCollection::findTypefaces(std::_fl::vector<SkString, std::_fl::allocator<SkString>> const&, SkFontStyle, std::_fl::optional<skia::textlayout::FontArguments> const&) (0.10%)')" onmouseout="c()"><title >skia::textlayout::FontCollection::findTypefaces(std::_fl::vector<SkString, std::_fl::allocator<SkString>> const&, SkFontStyle, std::_fl::optional<skia::textlayout::FontArguments> const&) (0.10%)</title> | |
<rect y="2275.0" rx="2" ry="2" height="15.0" x="1041.3201" width="1.1800537" fill="rgb(212,134,33)"/> | |
<text font-family="Verdana" x="1044.32" y="2285.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('skia::textlayout::FontCollection::matchTypeface(SkString const&, SkFontStyle) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >skia::textlayout::FontCollection::matchTypeface(SkString const&, SkFontStyle) (0.10%)</title> | |
<rect height="15.0" width="1.1800537" rx="2" ry="2" y="2259.0" fill="rgb(205,89,47)" x="1041.3201"/> | |
<text x="1044.32" y="2269.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('SkFontStyleSet::matchStyleCSS3(SkFontStyle const&) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >SkFontStyleSet::matchStyleCSS3(SkFontStyle const&) (0.10%)</title> | |
<rect y="2243.0" fill="rgb(225,74,51)" ry="2" height="15.0" width="1.1800537" rx="2" x="1041.3201"/> | |
<text font-size="12" x="1044.32" font-family="Verdana" y="2253.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::AssetManagerFontStyleSet::getStyle(int, SkFontStyle*, SkString*) (0.10%)')"><title >flutter::AssetManagerFontStyleSet::getStyle(int, SkFontStyle*, SkString*) (0.10%)</title> | |
<rect y="2227.0" height="15.0" rx="2" ry="2" x="1041.3201" width="1.1800537" fill="rgb(228,207,37)"/> | |
<text y="2237.50" x="1044.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::AssetManagerFontStyleSet::createTypeface(int) (0.10%)')" onmouseout="c()" class="func_g"><title >flutter::AssetManagerFontStyleSet::createTypeface(int) (0.10%)</title> | |
<rect height="15.0" width="1.1800537" rx="2" x="1041.3201" fill="rgb(220,230,3)" ry="2" y="2211.0"/> | |
<text font-size="12" font-family="Verdana" y="2221.50" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('SkFontMgr::makeFromStream(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, int) const (0.10%)')" onmouseout="c()" class="func_g"><title >SkFontMgr::makeFromStream(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, int) const (0.10%)</title> | |
<rect ry="2" x="1041.3201" height="15.0" width="1.1800537" y="2195.0" fill="rgb(246,94,9)" rx="2"/> | |
<text y="2205.50" x="1044.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('SkFontMgr_Mac::onMakeFromStreamIndex(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, int) const (0.10%)')"><title >SkFontMgr_Mac::onMakeFromStreamIndex(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, int) const (0.10%)</title> | |
<rect y="2179.0" rx="2" ry="2" x="1041.3201" width="1.1800537" fill="rgb(206,197,44)" height="15.0"/> | |
<text font-size="12" x="1044.32" y="2189.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('SkFontMgr::makeFromStream(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, SkFontArguments const&) const (0.10%)')" class="func_g"><title >SkFontMgr::makeFromStream(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, SkFontArguments const&) const (0.10%)</title> | |
<rect y="2163.0" height="15.0" ry="2" width="1.1800537" fill="rgb(228,3,34)" x="1041.3201" rx="2"/> | |
<text x="1044.32" font-family="Verdana" font-size="12" y="2173.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('SkFontMgr_Mac::onMakeFromStreamArgs(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, SkFontArguments const&) const (0.10%)')" onmouseout="c()" class="func_g"><title >SkFontMgr_Mac::onMakeFromStreamArgs(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, SkFontArguments const&) const (0.10%)</title> | |
<rect rx="2" ry="2" x="1041.3201" fill="rgb(226,48,6)" y="2147.0" width="1.1800537" height="15.0"/> | |
<text font-size="12" x="1044.32" y="2157.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SkTypeface_Mac::MakeFromStream(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, SkFontArguments const&) (0.10%)')" onclick="zoom(this)" class="func_g"><title >SkTypeface_Mac::MakeFromStream(std::_fl::unique_ptr<SkStreamAsset, std::_fl::default_delete<SkStreamAsset>>, SkFontArguments const&) (0.10%)</title> | |
<rect height="15.0" fill="rgb(241,162,42)" rx="2" y="2131.0" x="1041.3201" width="1.1800537" ry="2"/> | |
<text x="1044.32" y="2141.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CTFontManagerCreateFontDescriptorFromData (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >CTFontManagerCreateFontDescriptorFromData (0.10%)</title> | |
<rect height="15.0" y="2115.0" fill="rgb(208,182,43)" ry="2" width="1.1800537" rx="2" x="1041.3201"/> | |
<text y="2125.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('CreateFontWithData(__CFData const*) (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >CreateFontWithData(__CFData const*) (0.10%)</title> | |
<rect width="1.1800537" y="2099.0" rx="2" fill="rgb(223,111,8)" ry="2" x="1041.3201" height="15.0"/> | |
<text y="2109.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('CGFontCreateWithDataProviderAndData (0.10%)')" onmouseout="c()" class="func_g"><title >CGFontCreateWithDataProviderAndData (0.10%)</title> | |
<rect height="15.0" y="2083.0" rx="2" width="1.1800537" ry="2" fill="rgb(228,7,33)" x="1041.3201"/> | |
<text font-size="12" y="2093.50" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('create_private_data_with_data_provider (0.10%)')" onmouseout="c()"><title >create_private_data_with_data_provider (0.10%)</title> | |
<rect x="1041.3201" rx="2" width="1.1800537" y="2067.0" fill="rgb(236,229,3)" ry="2" height="15.0"/> | |
<text y="2077.50" font-size="12" font-family="Verdana" x="1044.32"></text> | |
</g> | |
<g class="func_g" onmouseover="s('FPFontCreateWithDataAndExtra (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >FPFontCreateWithDataAndExtra (0.10%)</title> | |
<rect y="2051.0" x="1041.3201" width="1.1800537" ry="2" height="15.0" rx="2" fill="rgb(220,94,41)"/> | |
<text y="2061.50" font-size="12" x="1044.32" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('TFont::CreateFontEntitiesForDataStream(void const*, unsigned long, __CFData const*) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >TFont::CreateFontEntitiesForDataStream(void const*, unsigned long, __CFData const*) (0.10%)</title> | |
<rect fill="rgb(222,24,8)" height="15.0" rx="2" x="1041.3201" y="2035.0" width="1.1800537" ry="2"/> | |
<text font-size="12" x="1044.32" y="2045.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('TOpenTypeMemoryFont::TOpenTypeMemoryFont(TInMemoryDataReference&&) (0.10%)')"><title >TOpenTypeMemoryFont::TOpenTypeMemoryFont(TInMemoryDataReference&&) (0.10%)</title> | |
<rect y="2019.0" width="1.1800537" height="15.0" fill="rgb(222,184,50)" x="1041.3201" ry="2" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="2029.50" x="1044.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('TSFNTOpenTypeFont::TSFNTOpenTypeFont(TSFNTData const&) (0.10%)')" class="func_g" onmouseout="c()"><title >TSFNTOpenTypeFont::TSFNTOpenTypeFont(TSFNTData const&) (0.10%)</title> | |
<rect y="2003.0" ry="2" fill="rgb(250,65,5)" x="1041.3201" height="15.0" rx="2" width="1.1800537"/> | |
<text font-size="12" x="1044.32" font-family="Verdana" y="2013.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('TCFFParsingContext::ParseCFFdata(TType1CFFDescriptor const&) (0.10%)')" onclick="zoom(this)"><title >TCFFParsingContext::ParseCFFdata(TType1CFFDescriptor const&) (0.10%)</title> | |
<rect height="15.0" ry="2" width="1.1800537" y="1987.0" rx="2" x="1041.3201" fill="rgb(213,94,13)"/> | |
<text font-size="12" x="1044.32" font-family="Verdana" y="1997.50"></text> | |
</g> | |
<g onmouseover="s('TCFFParsingContext::CommenceParse(int*, unsigned int*) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >TCFFParsingContext::CommenceParse(int*, unsigned int*) (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(205,125,15)" height="15.0" ry="2" x="1041.3201" y="1971.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="1981.50" x="1044.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('TCFFFontInfo::EnumerateDict(DictID, void*, bool (*)(unsigned char const*, unsigned long, unsigned short, unsigned int, void*)) const (0.10%)')" class="func_g"><title >TCFFFontInfo::EnumerateDict(DictID, void*, bool (*)(unsigned char const*, unsigned long, unsigned short, unsigned int, void*)) const (0.10%)</title> | |
<rect height="15.0" rx="2" fill="rgb(220,230,13)" ry="2" width="1.1800537" x="1041.3201" y="1955.0"/> | |
<text font-size="12" font-family="Verdana" y="1965.50" x="1044.32"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('CharsetEnumerationCallback(unsigned char const*, unsigned long, unsigned short, unsigned int, void*) (0.10%)')"><title >CharsetEnumerationCallback(unsigned char const*, unsigned long, unsigned short, unsigned int, void*) (0.10%)</title> | |
<rect x="1041.3201" y="1939.0" width="1.1800537" ry="2" height="15.0" fill="rgb(210,46,33)" rx="2"/> | |
<text y="1949.50" font-family="Verdana" x="1044.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('PipelineOwner.flushCompositingBits (0.30%)')" onmouseout="c()"><title >PipelineOwner.flushCompositingBits (0.30%)</title> | |
<rect width="3.540039" height="15.0" rx="2" ry="2" y="4403.0" x="1046.04" fill="rgb(213,47,17)"/> | |
<text font-family="Verdana" font-size="12" x="1049.04" y="4413.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PipelineOwner.flushCompositingBits (0.20%)')" class="func_g" onclick="zoom(this)"><title >PipelineOwner.flushCompositingBits (0.20%)</title> | |
<rect height="15.0" y="4387.0" x="1046.04" ry="2" width="2.3599854" fill="rgb(243,34,9)" rx="2"/> | |
<text y="4397.50" font-size="12" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderObject._updateCompositingBits (0.20%)')"><title >RenderObject._updateCompositingBits (0.20%)</title> | |
<rect y="4371.0" height="15.0" width="2.3599854" fill="rgb(240,211,48)" x="1046.04" ry="2" rx="2"/> | |
<text y="4381.50" font-size="12" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObjectWithChildMixin.visitChildren (#3) (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObjectWithChildMixin.visitChildren (#3) (0.20%)</title> | |
<rect ry="2" height="15.0" fill="rgb(206,228,35)" rx="2" y="4355.0" width="2.3599854" x="1046.04"/> | |
<text y="4365.50" font-family="Verdana" font-size="12" x="1049.04"></text> | |
</g> | |
<g onmouseover="s('RenderObject._updateCompositingBits.<anonymous closure> (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject._updateCompositingBits.<anonymous closure> (0.20%)</title> | |
<rect ry="2" x="1046.04" fill="rgb(224,216,16)" y="4339.0" height="15.0" rx="2" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" y="4349.50" x="1049.04"></text> | |
</g> | |
<g onmouseover="s('RenderObject._updateCompositingBits (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._updateCompositingBits (0.20%)</title> | |
<rect ry="2" y="4323.0" height="15.0" width="2.3599854" rx="2" x="1046.04" fill="rgb(223,203,28)"/> | |
<text x="1049.04" font-size="12" y="4333.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderSliverMultiBoxAdaptor.visitChildren (0.20%)')" onmouseout="c()"><title >RenderSliverMultiBoxAdaptor.visitChildren (0.20%)</title> | |
<rect rx="2" fill="rgb(253,107,31)" ry="2" y="4307.0" width="2.3599854" height="15.0" x="1046.04"/> | |
<text font-family="Verdana" font-size="12" x="1049.04" y="4317.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ContainerRenderObjectMixin.visitChildren (0.20%)')" onmouseout="c()"><title >ContainerRenderObjectMixin.visitChildren (0.20%)</title> | |
<rect height="15.0" fill="rgb(248,206,1)" y="4291.0" width="2.3599854" ry="2" rx="2" x="1046.04"/> | |
<text x="1049.04" font-size="12" y="4301.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject._updateCompositingBits.<anonymous closure> (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObject._updateCompositingBits.<anonymous closure> (0.20%)</title> | |
<rect height="15.0" x="1046.04" rx="2" ry="2" fill="rgb(209,34,53)" width="2.3599854" y="4275.0"/> | |
<text y="4285.50" font-family="Verdana" font-size="12" x="1049.04"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject._updateCompositingBits (0.20%)')" onclick="zoom(this)"><title >RenderObject._updateCompositingBits (0.20%)</title> | |
<rect ry="2" x="1046.04" rx="2" fill="rgb(240,76,34)" height="15.0" y="4259.0" width="2.3599854"/> | |
<text x="1049.04" y="4269.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderObjectWithChildMixin.visitChildren (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObjectWithChildMixin.visitChildren (0.20%)</title> | |
<rect ry="2" width="2.3599854" height="15.0" x="1046.04" y="4243.0" fill="rgb(226,136,9)" rx="2"/> | |
<text y="4253.50" font-size="12" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onmouseover="s('RenderObject._updateCompositingBits.<anonymous closure> (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject._updateCompositingBits.<anonymous closure> (0.20%)</title> | |
<rect ry="2" fill="rgb(249,204,28)" x="1046.04" height="15.0" width="2.3599854" y="4227.0" rx="2"/> | |
<text x="1049.04" y="4237.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject._updateCompositingBits (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._updateCompositingBits (0.20%)</title> | |
<rect fill="rgb(213,140,35)" y="4211.0" x="1046.04" height="15.0" rx="2" ry="2" width="2.3599854"/> | |
<text y="4221.50" x="1049.04" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObjectWithChildMixin.visitChildren (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObjectWithChildMixin.visitChildren (0.20%)</title> | |
<rect fill="rgb(248,226,28)" height="15.0" rx="2" width="2.3599854" ry="2" y="4195.0" x="1046.04"/> | |
<text x="1049.04" y="4205.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject._updateCompositingBits.<anonymous closure> (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderObject._updateCompositingBits.<anonymous closure> (0.20%)</title> | |
<rect height="15.0" width="2.3599854" rx="2" ry="2" x="1046.04" fill="rgb(208,188,36)" y="4179.0"/> | |
<text y="4189.50" x="1049.04" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject._updateCompositingBits (0.20%)')" onclick="zoom(this)" class="func_g"><title >RenderObject._updateCompositingBits (0.20%)</title> | |
<rect y="4163.0" fill="rgb(233,152,37)" ry="2" width="2.3599854" x="1046.04" rx="2" height="15.0"/> | |
<text x="1049.04" font-size="12" font-family="Verdana" y="4173.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderObjectWithChildMixin.visitChildren (0.20%)')"><title >RenderObjectWithChildMixin.visitChildren (0.20%)</title> | |
<rect y="4147.0" fill="rgb(224,227,7)" width="2.3599854" ry="2" x="1046.04" height="15.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1049.04" y="4157.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject._updateCompositingBits.<anonymous closure> (0.20%)')"><title >RenderObject._updateCompositingBits.<anonymous closure> (0.20%)</title> | |
<rect rx="2" height="15.0" width="2.3599854" fill="rgb(213,18,31)" ry="2" y="4131.0" x="1046.04"/> | |
<text font-size="12" y="4141.50" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject._updateCompositingBits (0.20%)')" onclick="zoom(this)"><title >RenderObject._updateCompositingBits (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(210,158,0)" y="4115.0" height="15.0" x="1046.04" rx="2" ry="2"/> | |
<text x="1049.04" font-size="12" font-family="Verdana" y="4125.50"></text> | |
</g> | |
<g onmouseover="s('RenderObjectWithChildMixin.visitChildren (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObjectWithChildMixin.visitChildren (0.20%)</title> | |
<rect height="15.0" fill="rgb(221,189,24)" ry="2" width="2.3599854" rx="2" x="1046.04" y="4099.0"/> | |
<text font-size="12" y="4109.50" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject._updateCompositingBits.<anonymous closure> (0.20%)')"><title >RenderObject._updateCompositingBits.<anonymous closure> (0.20%)</title> | |
<rect fill="rgb(224,219,26)" x="1046.04" y="4083.0" height="15.0" rx="2" width="2.3599854" ry="2"/> | |
<text font-family="Verdana" y="4093.50" font-size="12" x="1049.04"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderObject._updateCompositingBits (0.20%)')"><title >RenderObject._updateCompositingBits (0.20%)</title> | |
<rect x="1046.04" ry="2" height="15.0" fill="rgb(239,56,42)" y="4067.0" rx="2" width="2.3599854"/> | |
<text x="1049.04" y="4077.50" font-family="Verdana" font-size="12"></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 height="15.0" y="4051.0" fill="rgb(251,30,40)" x="1046.04" ry="2" rx="2" width="2.3599854"/> | |
<text x="1049.04" y="4061.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('stub CallToRuntime (0.20%)')" class="func_g" onmouseout="c()"><title >stub CallToRuntime (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="4035.0" x="1046.04" fill="rgb(216,58,31)" rx="2" height="15.0"/> | |
<text x="1049.04" y="4045.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::DRT_AllocateClosure(dart::NativeArguments) (0.20%)')" class="func_g" onclick="zoom(this)"><title >dart::DRT_AllocateClosure(dart::NativeArguments) (0.20%)</title> | |
<rect x="1046.04" y="4019.0" rx="2" ry="2" height="15.0" fill="rgb(243,23,41)" width="2.3599854"/> | |
<text y="4029.50" font-size="12" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dart::Closure::New(dart::TypeArguments const&, dart::TypeArguments const&, dart::TypeArguments const&, dart::Function const&, dart::Object const&, dart::Heap::Space) (0.20%)')"><title >dart::Closure::New(dart::TypeArguments const&, dart::TypeArguments const&, dart::TypeArguments const&, dart::Function const&, dart::Object const&, dart::Heap::Space) (0.20%)</title> | |
<rect fill="rgb(250,132,48)" x="1046.04" y="4003.0" rx="2" height="15.0" ry="2" width="2.3599854"/> | |
<text y="4013.50" font-family="Verdana" x="1049.04" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.20%)')" class="func_g"><title >dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(230,52,48)" ry="2" rx="2" x="1046.04" y="3987.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1049.04" y="3997.50"></text> | |
</g> | |
<g onmouseover="s('dart::Heap::AllocateNew(dart::Thread*, long) (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dart::Heap::AllocateNew(dart::Thread*, long) (0.20%)</title> | |
<rect ry="2" width="2.3599854" height="15.0" x="1046.04" rx="2" fill="rgb(210,57,22)" y="3971.0"/> | |
<text font-size="12" y="3981.50" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.20%)')" onclick="zoom(this)" class="func_g"><title >dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.20%)</title> | |
<rect ry="2" x="1046.04" width="2.3599854" fill="rgb(211,104,16)" y="3955.0" height="15.0" rx="2"/> | |
<text x="1049.04" y="3965.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('dart::Scavenger::Scavenge(dart::Thread*, dart::GCType, dart::GCReason) (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dart::Scavenger::Scavenge(dart::Thread*, dart::GCType, dart::GCReason) (0.20%)</title> | |
<rect height="15.0" x="1046.04" width="2.3599854" ry="2" rx="2" fill="rgb(233,22,20)" y="3939.0"/> | |
<text font-size="12" y="3949.50" x="1049.04" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::Scavenger::ParallelScavenge(dart::SemiSpace*) (0.20%)')" onclick="zoom(this)" class="func_g"><title >dart::Scavenger::ParallelScavenge(dart::SemiSpace*) (0.20%)</title> | |
<rect y="3923.0" height="15.0" fill="rgb(206,44,31)" x="1046.04" rx="2" width="2.3599854" ry="2"/> | |
<text x="1049.04" y="3933.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (0.20%)</title> | |
<rect x="1046.04" width="2.3599854" fill="rgb(209,78,8)" height="15.0" ry="2" y="3907.0" rx="2"/> | |
<text y="3917.50" font-size="12" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dart::ParallelScavengerTask::RunEnteredIsolateGroup() (0.20%)')" onclick="zoom(this)"><title >dart::ParallelScavengerTask::RunEnteredIsolateGroup() (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="3891.0" fill="rgb(211,111,51)" x="1046.04" rx="2" height="15.0"/> | |
<text x="1049.04" font-family="Verdana" y="3901.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dart::ScavengerVisitorBase<true>::ProcessSurvivors() (0.20%)')"><title >dart::ScavengerVisitorBase<true>::ProcessSurvivors() (0.20%)</title> | |
<rect ry="2" width="2.3599854" x="1046.04" rx="2" y="3875.0" height="15.0" fill="rgb(225,202,7)"/> | |
<text font-size="12" font-family="Verdana" x="1049.04" y="3885.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('dart::ScavengerVisitorBase<true>::ProcessToSpace() (0.20%)')"><title >dart::ScavengerVisitorBase<true>::ProcessToSpace() (0.20%)</title> | |
<rect y="3859.0" x="1046.04" fill="rgb(244,14,55)" width="2.3599854" rx="2" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="3869.50" x="1049.04" font-size="12"></text> | |
</g> | |
<g onmouseover="s('dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::ScavengerVisitorBase<true>::VisitPointers(dart::ObjectPtr*, dart::ObjectPtr*) (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="3843.0" rx="2" height="15.0" fill="rgb(251,212,45)" x="1046.04"/> | |
<text y="3853.50" font-size="12" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('BuildOwner.buildScope (2.30%)')" onmouseout="c()" class="func_g"><title >BuildOwner.buildScope (2.30%)</title> | |
<rect width="27.140015" height="15.0" rx="2" ry="2" y="4419.0" x="1051.9401" fill="rgb(253,4,9)"/> | |
<text y="4429.50" font-family="Verdana" x="1054.94" font-size="12">B..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('BuildScope._flushDirtyElements (2.20%)')" onclick="zoom(this)" class="func_g"><title >BuildScope._flushDirtyElements (2.20%)</title> | |
<rect fill="rgb(236,155,15)" x="1051.9401" y="4403.0" rx="2" height="15.0" ry="2" width="25.95996"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="4413.50">B..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('BuildScope._tryRebuild (2.10%)')" onmouseout="c()"><title >BuildScope._tryRebuild (2.10%)</title> | |
<rect height="15.0" y="4387.0" x="1051.9401" ry="2" width="24.78003" fill="rgb(238,211,54)" rx="2"/> | |
<text font-family="Verdana" x="1054.94" y="4397.50" font-size="12">B..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.rebuild (2.10%)')" onclick="zoom(this)" class="func_g"><title >Element.rebuild (2.10%)</title> | |
<rect ry="2" width="24.78003" height="15.0" x="1051.9401" rx="2" fill="rgb(249,214,35)" y="4371.0"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="4381.50">E..</text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (2.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >StatefulElement.performRebuild (2.10%)</title> | |
<rect y="4355.0" height="15.0" width="24.78003" fill="rgb(251,13,18)" x="1051.9401" ry="2" rx="2"/> | |
<text x="1054.94" y="4365.50" font-family="Verdana" font-size="12">S..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (2.00%)')"><title >ComponentElement.performRebuild (2.00%)</title> | |
<rect ry="2" height="15.0" fill="rgb(226,48,26)" rx="2" y="4339.0" width="23.599976" x="1051.9401"/> | |
<text y="4349.50" font-size="12" font-family="Verdana" x="1054.94">C..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.updateChild (1.90%)')" class="func_g" onmouseout="c()"><title >Element.updateChild (1.90%)</title> | |
<rect width="22.420044" x="1051.9401" fill="rgb(245,139,38)" rx="2" ry="2" height="15.0" y="4323.0"/> | |
<text font-family="Verdana" y="4333.50" font-size="12" x="1054.94">E..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ProxyElement.update (1.40%)')"><title >ProxyElement.update (1.40%)</title> | |
<rect ry="2" x="1051.9401" y="4307.0" fill="rgb(251,196,21)" width="16.52002" rx="2" height="15.0"/> | |
<text y="4317.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.rebuild (1.40%)')" class="func_g" onmouseout="c()"><title >Element.rebuild (1.40%)</title> | |
<rect y="4291.0" width="16.52002" ry="2" x="1051.9401" height="15.0" fill="rgb(248,126,49)" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="4301.50" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (1.40%)')" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.40%)</title> | |
<rect x="1051.9401" height="15.0" fill="rgb(242,97,36)" y="4275.0" ry="2" width="16.52002" rx="2"/> | |
<text y="4285.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.updateChild (1.40%)')" onclick="zoom(this)" onmouseout="c()"><title >Element.updateChild (1.40%)</title> | |
<rect x="1051.9401" width="16.52002" fill="rgb(239,107,52)" height="15.0" ry="2" y="4259.0" rx="2"/> | |
<text x="1054.94" y="4269.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ProxyElement.update (1.40%)')" onclick="zoom(this)" onmouseout="c()"><title >ProxyElement.update (1.40%)</title> | |
<rect rx="2" fill="rgb(255,214,23)" ry="2" y="4243.0" width="16.52002" height="15.0" x="1051.9401"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="4253.50"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (1.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Element.rebuild (1.40%)</title> | |
<rect width="16.52002" fill="rgb(219,108,18)" rx="2" height="15.0" x="1051.9401" ry="2" y="4227.0"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="4237.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.40%)')" class="func_g"><title >ComponentElement.performRebuild (1.40%)</title> | |
<rect height="15.0" x="1051.9401" width="16.52002" ry="2" rx="2" fill="rgb(223,14,0)" y="4211.0"/> | |
<text y="4221.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.updateChild (1.40%)</title> | |
<rect ry="2" width="16.52002" height="15.0" x="1051.9401" y="4195.0" fill="rgb(249,17,47)" rx="2"/> | |
<text x="1054.94" font-family="Verdana" y="4205.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('SingleChildRenderObjectElement.update (1.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >SingleChildRenderObjectElement.update (1.40%)</title> | |
<rect rx="2" height="15.0" ry="2" x="1051.9401" y="4179.0" fill="rgb(223,136,20)" width="16.52002"/> | |
<text font-size="12" x="1054.94" y="4189.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.40%)')" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.40%)</title> | |
<rect rx="2" ry="2" width="16.52002" fill="rgb(207,59,50)" x="1051.9401" y="4163.0" height="15.0"/> | |
<text x="1054.94" font-family="Verdana" y="4173.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SingleChildRenderObjectElement.update (1.40%)')" class="func_g" onclick="zoom(this)"><title >SingleChildRenderObjectElement.update (1.40%)</title> | |
<rect width="16.52002" fill="rgb(205,203,0)" ry="2" height="15.0" y="4147.0" x="1051.9401" rx="2"/> | |
<text font-size="12" x="1054.94" y="4157.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect width="15.339966" fill="rgb(241,33,27)" y="4131.0" height="15.0" x="1051.9401" rx="2" ry="2"/> | |
<text font-size="12" y="4141.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('StatefulElement.update (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement.update (1.30%)</title> | |
<rect height="15.0" fill="rgb(249,25,2)" y="4115.0" width="15.339966" x="1051.9401" rx="2" ry="2"/> | |
<text font-family="Verdana" y="4125.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')" class="func_g" onmouseout="c()"><title >Element.rebuild (1.30%)</title> | |
<rect width="15.339966" height="15.0" y="4099.0" rx="2" fill="rgb(214,153,11)" x="1051.9401" ry="2"/> | |
<text font-size="12" x="1054.94" y="4109.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onmouseout="c()"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect rx="2" height="15.0" fill="rgb(248,10,11)" width="15.339966" ry="2" y="4083.0" x="1051.9401"/> | |
<text y="4093.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect fill="rgb(232,164,7)" x="1051.9401" ry="2" rx="2" y="4067.0" height="15.0" width="15.339966"/> | |
<text x="1054.94" y="4077.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect y="4051.0" width="15.339966" rx="2" x="1051.9401" ry="2" fill="rgb(242,62,30)" height="15.0"/> | |
<text y="4061.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('StatefulElement.update (1.30%)')"><title >StatefulElement.update (1.30%)</title> | |
<rect width="15.339966" x="1051.9401" y="4035.0" height="15.0" fill="rgb(206,160,46)" rx="2" ry="2"/> | |
<text y="4045.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect ry="2" width="15.339966" x="1051.9401" rx="2" y="4019.0" height="15.0" fill="rgb(208,189,0)"/> | |
<text x="1054.94" font-family="Verdana" y="4029.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect ry="2" width="15.339966" y="4003.0" rx="2" height="15.0" fill="rgb(229,14,49)" x="1051.9401"/> | |
<text font-size="12" font-family="Verdana" y="4013.50" x="1054.94"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect y="3987.0" height="15.0" width="15.339966" x="1051.9401" fill="rgb(243,28,21)" ry="2" rx="2"/> | |
<text font-size="12" y="3997.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect width="15.339966" fill="rgb(236,122,48)" y="3971.0" rx="2" ry="2" x="1051.9401" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="3981.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('InheritedNotifierElement.update (1.30%)')"><title >InheritedNotifierElement.update (1.30%)</title> | |
<rect rx="2" ry="2" width="15.339966" height="15.0" fill="rgb(213,117,29)" x="1051.9401" y="3955.0"/> | |
<text x="1054.94" font-family="Verdana" font-size="12" y="3965.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ProxyElement.update (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ProxyElement.update (1.30%)</title> | |
<rect fill="rgb(229,131,21)" width="15.339966" x="1051.9401" y="3939.0" height="15.0" rx="2" ry="2"/> | |
<text x="1054.94" font-family="Verdana" y="3949.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect width="15.339966" x="1051.9401" rx="2" height="15.0" fill="rgb(255,27,38)" ry="2" y="3923.0"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="3933.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect height="15.0" width="15.339966" fill="rgb(250,207,50)" ry="2" y="3907.0" rx="2" x="1051.9401"/> | |
<text font-family="Verdana" y="3917.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" width="15.339966" y="3891.0" x="1051.9401" rx="2" ry="2" fill="rgb(218,118,15)"/> | |
<text font-family="Verdana" y="3901.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('StatefulElement.update (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement.update (1.30%)</title> | |
<rect ry="2" width="15.339966" fill="rgb(238,133,47)" x="1051.9401" y="3875.0" rx="2" height="15.0"/> | |
<text font-size="12" y="3885.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect rx="2" fill="rgb(216,109,0)" height="15.0" x="1051.9401" y="3859.0" width="15.339966" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="3869.50"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" fill="rgb(233,122,31)" y="3843.0" ry="2" height="15.0" rx="2" width="15.339966"/> | |
<text font-family="Verdana" y="3853.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (1.30%)')" class="func_g" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect y="3827.0" height="15.0" x="1051.9401" width="15.339966" fill="rgb(253,129,13)" rx="2" ry="2"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="3837.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(234,183,27)" rx="2" height="15.0" ry="2" y="3811.0" x="1051.9401" width="15.339966"/> | |
<text y="3821.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('InheritedNotifierElement.update (1.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >InheritedNotifierElement.update (1.30%)</title> | |
<rect width="15.339966" ry="2" y="3795.0" fill="rgb(214,148,54)" x="1051.9401" height="15.0" rx="2"/> | |
<text x="1054.94" y="3805.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ProxyElement.update (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >ProxyElement.update (1.30%)</title> | |
<rect rx="2" fill="rgb(219,7,45)" y="3779.0" ry="2" width="15.339966" height="15.0" x="1051.9401"/> | |
<text y="3789.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect x="1051.9401" width="15.339966" ry="2" fill="rgb(211,187,52)" y="3763.0" rx="2" height="15.0"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="3773.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" ry="2" y="3747.0" height="15.0" fill="rgb(234,187,29)" width="15.339966"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="3757.50"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" y="3731.0" fill="rgb(237,121,12)" rx="2" width="15.339966" ry="2"/> | |
<text font-family="Verdana" x="1054.94" y="3741.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ProxyElement.update (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ProxyElement.update (1.30%)</title> | |
<rect ry="2" height="15.0" x="1051.9401" rx="2" y="3715.0" width="15.339966" fill="rgb(218,31,5)"/> | |
<text font-family="Verdana" x="1054.94" y="3725.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(208,10,16)" y="3699.0" x="1051.9401" width="15.339966" rx="2" height="15.0" ry="2"/> | |
<text font-size="12" x="1054.94" y="3709.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect rx="2" fill="rgb(246,214,24)" ry="2" y="3683.0" x="1051.9401" height="15.0" width="15.339966"/> | |
<text y="3693.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect width="15.339966" x="1051.9401" fill="rgb(207,66,1)" ry="2" y="3667.0" height="15.0" rx="2"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="3677.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('StatefulElement.update (1.30%)')" class="func_g" onmouseout="c()"><title >StatefulElement.update (1.30%)</title> | |
<rect height="15.0" x="1051.9401" width="15.339966" rx="2" ry="2" fill="rgb(212,168,42)" y="3651.0"/> | |
<text font-family="Verdana" x="1054.94" font-size="12" y="3661.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(252,94,51)" width="15.339966" rx="2" y="3635.0" ry="2" x="1051.9401" height="15.0"/> | |
<text font-size="12" y="3645.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect width="15.339966" y="3619.0" x="1051.9401" rx="2" height="15.0" fill="rgb(206,112,46)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="3629.50"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect height="15.0" y="3603.0" width="15.339966" fill="rgb(235,148,30)" rx="2" x="1051.9401" ry="2"/> | |
<text x="1054.94" y="3613.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(243,26,24)" width="15.339966" y="3587.0" rx="2" ry="2" height="15.0" x="1051.9401"/> | |
<text y="3597.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('MultiChildRenderObjectElement.update (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >MultiChildRenderObjectElement.update (1.30%)</title> | |
<rect rx="2" x="1051.9401" y="3571.0" width="15.339966" fill="rgb(228,182,43)" ry="2" height="15.0"/> | |
<text y="3581.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Element.updateChildren (1.30%)')"><title >Element.updateChildren (1.30%)</title> | |
<rect x="1051.9401" width="15.339966" rx="2" height="15.0" ry="2" y="3555.0" fill="rgb(247,127,44)"/> | |
<text x="1054.94" y="3565.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" class="func_g" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect ry="2" width="15.339966" height="15.0" fill="rgb(249,105,36)" rx="2" x="1051.9401" y="3539.0"/> | |
<text x="1054.94" font-size="12" y="3549.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('MultiChildRenderObjectElement.inflateWidget (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >MultiChildRenderObjectElement.inflateWidget (1.30%)</title> | |
<rect ry="2" rx="2" y="3523.0" x="1051.9401" fill="rgb(250,224,1)" width="15.339966" height="15.0"/> | |
<text y="3533.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Element.inflateWidget (1.30%)</title> | |
<rect fill="rgb(206,24,13)" ry="2" x="1051.9401" width="15.339966" rx="2" y="3507.0" height="15.0"/> | |
<text y="3517.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.mount (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect height="15.0" y="3491.0" width="15.339966" x="1051.9401" ry="2" fill="rgb(221,182,0)" rx="2"/> | |
<text y="3501.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('StatefulElement._firstBuild (1.30%)')"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect ry="2" width="15.339966" fill="rgb(227,139,48)" y="3475.0" height="15.0" x="1051.9401" rx="2"/> | |
<text x="1054.94" font-size="12" y="3485.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement._firstBuild (1.30%)')"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect height="15.0" rx="2" y="3459.0" fill="rgb(206,97,1)" x="1051.9401" ry="2" width="15.339966"/> | |
<text font-family="Verdana" x="1054.94" y="3469.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')" class="func_g" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect rx="2" y="3443.0" ry="2" height="15.0" width="15.339966" x="1051.9401" fill="rgb(234,60,3)"/> | |
<text font-family="Verdana" x="1054.94" y="3453.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('StatefulElement.performRebuild (1.30%)')"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect y="3427.0" width="15.339966" fill="rgb(248,17,22)" x="1051.9401" height="15.0" rx="2" ry="2"/> | |
<text font-size="12" x="1054.94" y="3437.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect y="3411.0" x="1051.9401" ry="2" fill="rgb(250,219,42)" height="15.0" width="15.339966" rx="2"/> | |
<text font-family="Verdana" x="1054.94" y="3421.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(238,50,21)" rx="2" height="15.0" ry="2" width="15.339966" x="1051.9401" y="3395.0"/> | |
<text font-family="Verdana" x="1054.94" font-size="12" y="3405.50"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect height="15.0" width="15.339966" y="3379.0" x="1051.9401" fill="rgb(228,78,0)" rx="2" ry="2"/> | |
<text x="1054.94" font-size="12" y="3389.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')" class="func_g" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect fill="rgb(237,129,41)" x="1051.9401" width="15.339966" ry="2" height="15.0" y="3363.0" rx="2"/> | |
<text font-family="Verdana" x="1054.94" font-size="12" y="3373.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('StatefulElement._firstBuild (1.30%)')" onclick="zoom(this)"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect x="1051.9401" ry="2" y="3347.0" width="15.339966" height="15.0" fill="rgb(243,104,44)" rx="2"/> | |
<text font-size="12" y="3357.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect y="3331.0" x="1051.9401" width="15.339966" rx="2" fill="rgb(205,156,16)" height="15.0" ry="2"/> | |
<text x="1054.94" y="3341.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect rx="2" ry="2" width="15.339966" x="1051.9401" fill="rgb(241,208,7)" height="15.0" y="3315.0"/> | |
<text x="1054.94" font-size="12" y="3325.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" ry="2" width="15.339966" rx="2" y="3299.0" fill="rgb(215,229,48)"/> | |
<text y="3309.50" x="1054.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect rx="2" ry="2" fill="rgb(234,43,30)" width="15.339966" y="3283.0" height="15.0" x="1051.9401"/> | |
<text y="3293.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(237,162,52)" ry="2" y="3267.0" width="15.339966" rx="2" x="1051.9401" height="15.0"/> | |
<text x="1054.94" font-family="Verdana" font-size="12" y="3277.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect y="3251.0" width="15.339966" height="15.0" rx="2" ry="2" x="1051.9401" fill="rgb(217,179,5)"/> | |
<text font-size="12" x="1054.94" y="3261.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect ry="2" y="3235.0" width="15.339966" x="1051.9401" height="15.0" fill="rgb(231,31,39)" rx="2"/> | |
<text font-size="12" x="1054.94" y="3245.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ComponentElement._firstBuild (1.30%)')"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" height="15.0" ry="2" fill="rgb(221,4,38)" y="3219.0" width="15.339966"/> | |
<text x="1054.94" y="3229.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(251,10,38)" ry="2" rx="2" x="1051.9401" y="3203.0" height="15.0" width="15.339966"/> | |
<text font-family="Verdana" font-size="12" y="3213.50" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect height="15.0" rx="2" y="3187.0" width="15.339966" ry="2" fill="rgb(224,139,38)" x="1051.9401"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="3197.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect rx="2" fill="rgb(239,177,13)" y="3171.0" height="15.0" ry="2" x="1051.9401" width="15.339966"/> | |
<text x="1054.94" y="3181.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect fill="rgb(236,19,4)" ry="2" rx="2" height="15.0" x="1051.9401" width="15.339966" y="3155.0"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="3165.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()" class="func_g"><title >ComponentElement.mount (1.30%)</title> | |
<rect x="1051.9401" height="15.0" fill="rgb(234,124,1)" y="3139.0" ry="2" width="15.339966" rx="2"/> | |
<text x="1054.94" y="3149.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement._firstBuild (1.30%)')" class="func_g"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect fill="rgb(219,225,37)" y="3123.0" width="15.339966" x="1051.9401" height="15.0" ry="2" rx="2"/> | |
<text x="1054.94" y="3133.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect y="3107.0" fill="rgb(251,197,29)" ry="2" height="15.0" width="15.339966" rx="2" x="1051.9401"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="3117.50"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" width="15.339966" rx="2" ry="2" y="3091.0" fill="rgb(247,47,35)"/> | |
<text font-size="12" y="3101.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect x="1051.9401" height="15.0" width="15.339966" ry="2" y="3075.0" fill="rgb(244,221,13)" rx="2"/> | |
<text y="3085.50" x="1054.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect rx="2" width="15.339966" ry="2" x="1051.9401" fill="rgb(223,47,5)" height="15.0" y="3059.0"/> | |
<text font-family="Verdana" y="3069.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect height="15.0" ry="2" fill="rgb(241,178,0)" width="15.339966" x="1051.9401" rx="2" y="3043.0"/> | |
<text y="3053.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" y="3027.0" width="15.339966" ry="2" fill="rgb(225,154,3)" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="3037.50" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" y="3011.0" width="15.339966" rx="2" ry="2" height="15.0" fill="rgb(214,31,52)"/> | |
<text x="1054.94" font-size="12" y="3021.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect ry="2" rx="2" y="2995.0" height="15.0" fill="rgb(249,115,23)" x="1051.9401" width="15.339966"/> | |
<text y="3005.50" x="1054.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('StatefulElement._firstBuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect ry="2" x="1051.9401" rx="2" fill="rgb(242,117,45)" width="15.339966" y="2979.0" height="15.0"/> | |
<text y="2989.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect width="15.339966" y="2963.0" fill="rgb(240,20,17)" ry="2" height="15.0" x="1051.9401" rx="2"/> | |
<text font-family="Verdana" y="2973.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" y="2947.0" ry="2" height="15.0" width="15.339966" fill="rgb(247,162,26)"/> | |
<text font-family="Verdana" y="2957.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('StatefulElement.performRebuild (1.30%)')" class="func_g" onmouseout="c()"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect width="15.339966" x="1051.9401" height="15.0" rx="2" ry="2" y="2931.0" fill="rgb(211,35,21)"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="2941.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect rx="2" y="2915.0" width="15.339966" height="15.0" fill="rgb(207,175,39)" ry="2" x="1051.9401"/> | |
<text font-family="Verdana" font-size="12" y="2925.50" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" ry="2" y="2899.0" fill="rgb(244,121,32)" x="1051.9401" rx="2" width="15.339966"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="2909.50"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect y="2883.0" ry="2" height="15.0" width="15.339966" fill="rgb(248,219,50)" rx="2" x="1051.9401"/> | |
<text font-size="12" y="2893.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect x="1051.9401" y="2867.0" height="15.0" ry="2" width="15.339966" rx="2" fill="rgb(237,24,43)"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="2877.50"></text> | |
</g> | |
<g onmouseover="s('StatefulElement._firstBuild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect fill="rgb(211,215,19)" width="15.339966" x="1051.9401" rx="2" ry="2" y="2851.0" height="15.0"/> | |
<text x="1054.94" y="2861.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect ry="2" y="2835.0" width="15.339966" height="15.0" rx="2" x="1051.9401" fill="rgb(228,151,28)"/> | |
<text font-size="12" y="2845.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect ry="2" x="1051.9401" height="15.0" y="2819.0" width="15.339966" rx="2" fill="rgb(237,73,28)"/> | |
<text x="1054.94" font-size="12" y="2829.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect y="2803.0" height="15.0" rx="2" width="15.339966" ry="2" x="1051.9401" fill="rgb(223,23,19)"/> | |
<text x="1054.94" y="2813.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')" class="func_g"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" ry="2" width="15.339966" height="15.0" y="2787.0" fill="rgb(245,6,25)" rx="2"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="2797.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" class="func_g" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect ry="2" y="2771.0" width="15.339966" height="15.0" x="1051.9401" fill="rgb(244,111,40)" rx="2"/> | |
<text x="1054.94" font-family="Verdana" y="2781.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" rx="2" width="15.339966" y="2755.0" fill="rgb(241,221,40)" height="15.0" ry="2"/> | |
<text font-size="12" y="2765.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect height="15.0" fill="rgb(254,219,9)" y="2739.0" x="1051.9401" width="15.339966" ry="2" rx="2"/> | |
<text y="2749.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('StatefulElement._firstBuild (1.30%)')" class="func_g"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect width="15.339966" y="2723.0" x="1051.9401" fill="rgb(224,162,6)" height="15.0" rx="2" ry="2"/> | |
<text y="2733.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement._firstBuild (1.30%)')" class="func_g" onmouseout="c()"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect x="1051.9401" y="2707.0" width="15.339966" rx="2" fill="rgb(208,79,36)" ry="2" height="15.0"/> | |
<text x="1054.94" y="2717.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(206,9,32)" width="15.339966" ry="2" x="1051.9401" rx="2" y="2691.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="2701.50"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect fill="rgb(245,175,46)" y="2675.0" width="15.339966" height="15.0" x="1051.9401" rx="2" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="2685.50" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect width="15.339966" fill="rgb(251,111,29)" rx="2" x="1051.9401" y="2659.0" ry="2" height="15.0"/> | |
<text y="2669.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect ry="2" rx="2" width="15.339966" fill="rgb(217,228,18)" y="2643.0" height="15.0" x="1051.9401"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="2653.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect y="2627.0" height="15.0" x="1051.9401" fill="rgb(222,172,19)" rx="2" width="15.339966" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="2637.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect fill="rgb(236,15,43)" height="15.0" x="1051.9401" y="2611.0" width="15.339966" rx="2" ry="2"/> | |
<text font-size="12" y="2621.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement._firstBuild (1.30%)')" class="func_g" onmouseout="c()"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect x="1051.9401" rx="2" y="2595.0" fill="rgb(212,73,2)" height="15.0" width="15.339966" ry="2"/> | |
<text x="1054.94" y="2605.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect height="15.0" fill="rgb(218,205,8)" ry="2" rx="2" y="2579.0" width="15.339966" x="1051.9401"/> | |
<text x="1054.94" font-size="12" y="2589.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect width="15.339966" height="15.0" x="1051.9401" rx="2" ry="2" fill="rgb(251,25,24)" y="2563.0"/> | |
<text font-size="12" x="1054.94" y="2573.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect x="1051.9401" rx="2" ry="2" height="15.0" fill="rgb(254,47,41)" y="2547.0" width="15.339966"/> | |
<text x="1054.94" font-size="12" y="2557.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" width="15.339966" rx="2" height="15.0" ry="2" y="2531.0" fill="rgb(213,125,25)"/> | |
<text x="1054.94" y="2541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect ry="2" height="15.0" width="15.339966" y="2515.0" rx="2" x="1051.9401" fill="rgb(218,19,53)"/> | |
<text y="2525.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect y="2499.0" height="15.0" width="15.339966" rx="2" x="1051.9401" fill="rgb(230,120,22)" ry="2"/> | |
<text font-size="12" x="1054.94" y="2509.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')" class="func_g" onmouseout="c()"><title >Element.rebuild (1.30%)</title> | |
<rect ry="2" width="15.339966" rx="2" height="15.0" x="1051.9401" y="2483.0" fill="rgb(226,98,20)"/> | |
<text x="1054.94" font-family="Verdana" font-size="12" y="2493.50"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" rx="2" ry="2" fill="rgb(214,139,27)" width="15.339966" y="2467.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="2477.50"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" fill="rgb(206,228,19)" width="15.339966" y="2451.0" x="1051.9401" ry="2" rx="2"/> | |
<text font-size="12" x="1054.94" y="2461.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect ry="2" width="15.339966" rx="2" y="2435.0" height="15.0" x="1051.9401" fill="rgb(215,147,43)"/> | |
<text y="2445.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" class="func_g" onmouseout="c()"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect fill="rgb(208,23,39)" y="2419.0" x="1051.9401" rx="2" ry="2" height="15.0" width="15.339966"/> | |
<text y="2429.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" class="func_g" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" width="15.339966" fill="rgb(254,135,14)" ry="2" x="1051.9401" y="2403.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="2413.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" height="15.0" fill="rgb(222,212,6)" width="15.339966" ry="2" rx="2" y="2387.0"/> | |
<text x="1054.94" y="2397.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')" class="func_g"><title >ComponentElement.mount (1.30%)</title> | |
<rect rx="2" y="2371.0" x="1051.9401" width="15.339966" height="15.0" ry="2" fill="rgb(253,2,5)"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="2381.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect y="2355.0" rx="2" fill="rgb(251,223,52)" x="1051.9401" width="15.339966" height="15.0" ry="2"/> | |
<text font-size="12" y="2365.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect x="1051.9401" fill="rgb(221,1,4)" width="15.339966" height="15.0" y="2339.0" rx="2" ry="2"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="2349.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (1.30%)')"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect y="2323.0" height="15.0" fill="rgb(208,153,16)" rx="2" x="1051.9401" width="15.339966" ry="2"/> | |
<text font-size="12" y="2333.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect y="2307.0" ry="2" x="1051.9401" fill="rgb(214,192,8)" height="15.0" width="15.339966" rx="2"/> | |
<text y="2317.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect ry="2" rx="2" x="1051.9401" width="15.339966" fill="rgb(255,75,29)" height="15.0" y="2291.0"/> | |
<text y="2301.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect y="2275.0" height="15.0" width="15.339966" fill="rgb(218,44,32)" x="1051.9401" rx="2" ry="2"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="2285.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect fill="rgb(225,25,45)" rx="2" ry="2" width="15.339966" height="15.0" y="2259.0" x="1051.9401"/> | |
<text font-family="Verdana" x="1054.94" y="2269.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()"><title >Element.rebuild (1.30%)</title> | |
<rect ry="2" y="2243.0" rx="2" x="1051.9401" width="15.339966" height="15.0" fill="rgb(219,200,45)"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="2253.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (1.30%)')"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" ry="2" rx="2" width="15.339966" y="2227.0" height="15.0" fill="rgb(255,222,39)"/> | |
<text font-family="Verdana" font-size="12" y="2237.50" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(212,0,48)" rx="2" height="15.0" x="1051.9401" y="2211.0" width="15.339966" ry="2"/> | |
<text y="2221.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect ry="2" width="15.339966" rx="2" x="1051.9401" fill="rgb(207,115,43)" y="2195.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="2205.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect fill="rgb(219,188,7)" ry="2" x="1051.9401" y="2179.0" width="15.339966" height="15.0" rx="2"/> | |
<text y="2189.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('StatefulElement._firstBuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect y="2163.0" width="15.339966" rx="2" x="1051.9401" ry="2" height="15.0" fill="rgb(219,218,2)"/> | |
<text x="1054.94" y="2173.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect ry="2" fill="rgb(219,61,41)" y="2147.0" rx="2" height="15.0" x="1051.9401" width="15.339966"/> | |
<text x="1054.94" y="2157.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" y="2131.0" width="15.339966" fill="rgb(240,176,7)" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="2141.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect y="2115.0" fill="rgb(225,44,1)" height="15.0" ry="2" x="1051.9401" width="15.339966" rx="2"/> | |
<text y="2125.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect fill="rgb(242,12,14)" ry="2" width="15.339966" rx="2" height="15.0" x="1051.9401" y="2099.0"/> | |
<text y="2109.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect x="1051.9401" height="15.0" fill="rgb(238,60,49)" y="2083.0" width="15.339966" rx="2" ry="2"/> | |
<text x="1054.94" y="2093.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect y="2067.0" height="15.0" ry="2" x="1051.9401" rx="2" fill="rgb(245,165,16)" width="15.339966"/> | |
<text y="2077.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')" class="func_g" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect y="2051.0" width="15.339966" x="1051.9401" height="15.0" fill="rgb(235,187,24)" rx="2" ry="2"/> | |
<text y="2061.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" height="15.0" y="2035.0" width="15.339966" fill="rgb(233,56,14)" ry="2"/> | |
<text font-family="Verdana" x="1054.94" y="2045.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(221,78,37)" y="2019.0" x="1051.9401" rx="2" ry="2" width="15.339966" height="15.0"/> | |
<text y="2029.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect rx="2" height="15.0" x="1051.9401" fill="rgb(232,17,2)" ry="2" width="15.339966" y="2003.0"/> | |
<text y="2013.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(218,40,16)" y="1987.0" height="15.0" rx="2" ry="2" x="1051.9401" width="15.339966"/> | |
<text font-size="12" y="1997.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect y="1971.0" width="15.339966" fill="rgb(231,4,16)" rx="2" ry="2" x="1051.9401" height="15.0"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="1981.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect rx="2" x="1051.9401" fill="rgb(252,194,30)" width="15.339966" ry="2" y="1955.0" height="15.0"/> | |
<text x="1054.94" font-size="12" y="1965.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect height="15.0" ry="2" y="1939.0" fill="rgb(237,123,28)" width="15.339966" rx="2" x="1051.9401"/> | |
<text x="1054.94" y="1949.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect height="15.0" y="1923.0" width="15.339966" rx="2" ry="2" fill="rgb(237,103,27)" x="1051.9401"/> | |
<text font-family="Verdana" y="1933.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" fill="rgb(236,32,32)" width="15.339966" y="1907.0" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="1917.50" x="1054.94"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect ry="2" height="15.0" y="1891.0" width="15.339966" fill="rgb(227,199,49)" x="1051.9401" rx="2"/> | |
<text y="1901.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect width="15.339966" rx="2" height="15.0" fill="rgb(228,0,41)" y="1875.0" ry="2" x="1051.9401"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="1885.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')"><title >ComponentElement.mount (1.30%)</title> | |
<rect ry="2" x="1051.9401" width="15.339966" height="15.0" fill="rgb(235,170,30)" y="1859.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="1869.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('StatefulElement._firstBuild (1.30%)')"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" ry="2" rx="2" width="15.339966" fill="rgb(225,60,50)" y="1843.0"/> | |
<text font-size="12" x="1054.94" y="1853.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement._firstBuild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect rx="2" height="15.0" width="15.339966" ry="2" fill="rgb(217,19,49)" y="1827.0" x="1051.9401"/> | |
<text font-family="Verdana" y="1837.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(239,126,41)" rx="2" y="1811.0" width="15.339966" ry="2" height="15.0" x="1051.9401"/> | |
<text font-family="Verdana" font-size="12" y="1821.50" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.performRebuild (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect fill="rgb(220,191,34)" ry="2" y="1795.0" width="15.339966" height="15.0" x="1051.9401" rx="2"/> | |
<text y="1805.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect y="1779.0" width="15.339966" fill="rgb(216,94,36)" ry="2" rx="2" height="15.0" x="1051.9401"/> | |
<text font-family="Verdana" y="1789.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" rx="2" x="1051.9401" y="1763.0" fill="rgb(238,71,47)" ry="2" width="15.339966"/> | |
<text font-size="12" font-family="Verdana" y="1773.50" x="1054.94"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect fill="rgb(208,15,13)" ry="2" width="15.339966" x="1051.9401" rx="2" y="1747.0" height="15.0"/> | |
<text x="1054.94" y="1757.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" onmouseout="c()"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect fill="rgb(229,46,46)" x="1051.9401" ry="2" rx="2" y="1731.0" width="15.339966" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="1741.50"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect width="15.339966" rx="2" y="1715.0" height="15.0" x="1051.9401" fill="rgb(224,122,0)" ry="2"/> | |
<text y="1725.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" y="1699.0" fill="rgb(208,155,1)" rx="2" ry="2" width="15.339966" height="15.0"/> | |
<text font-family="Verdana" x="1054.94" y="1709.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect height="15.0" rx="2" ry="2" width="15.339966" y="1683.0" fill="rgb(239,18,0)" x="1051.9401"/> | |
<text font-size="12" font-family="Verdana" y="1693.50" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('ComponentElement._firstBuild (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect x="1051.9401" rx="2" width="15.339966" height="15.0" y="1667.0" fill="rgb(226,92,17)" ry="2"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="1677.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" fill="rgb(205,0,35)" height="15.0" ry="2" y="1651.0" width="15.339966"/> | |
<text x="1054.94" y="1661.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect ry="2" width="15.339966" x="1051.9401" height="15.0" y="1635.0" fill="rgb(239,217,50)" rx="2"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="1645.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect ry="2" y="1619.0" x="1051.9401" width="15.339966" fill="rgb(218,120,46)" height="15.0" rx="2"/> | |
<text y="1629.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect ry="2" y="1603.0" x="1051.9401" width="15.339966" fill="rgb(210,27,39)" rx="2" height="15.0"/> | |
<text font-family="Verdana" y="1613.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" onmouseout="c()" class="func_g"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect y="1587.0" width="15.339966" ry="2" x="1051.9401" height="15.0" fill="rgb(255,193,20)" rx="2"/> | |
<text x="1054.94" y="1597.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect y="1571.0" fill="rgb(205,146,53)" width="15.339966" rx="2" height="15.0" ry="2" x="1051.9401"/> | |
<text y="1581.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect height="15.0" y="1555.0" x="1051.9401" fill="rgb(212,227,14)" rx="2" ry="2" width="15.339966"/> | |
<text x="1054.94" y="1565.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')"><title >ComponentElement.mount (1.30%)</title> | |
<rect x="1051.9401" height="15.0" fill="rgb(241,19,19)" y="1539.0" width="15.339966" ry="2" rx="2"/> | |
<text x="1054.94" y="1549.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('StatefulElement._firstBuild (1.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect x="1051.9401" y="1523.0" width="15.339966" height="15.0" rx="2" fill="rgb(211,130,49)" ry="2"/> | |
<text font-family="Verdana" y="1533.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('ComponentElement._firstBuild (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect x="1051.9401" rx="2" height="15.0" ry="2" fill="rgb(232,89,19)" y="1507.0" width="15.339966"/> | |
<text x="1054.94" font-family="Verdana" y="1517.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (1.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(239,30,38)" rx="2" x="1051.9401" width="15.339966" y="1491.0" height="15.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="1501.50" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" ry="2" y="1475.0" width="15.339966" fill="rgb(253,58,38)" rx="2"/> | |
<text font-family="Verdana" y="1485.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" class="func_g"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect y="1459.0" x="1051.9401" width="15.339966" height="15.0" fill="rgb(223,97,37)" rx="2" ry="2"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="1469.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')" class="func_g" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" width="15.339966" y="1443.0" rx="2" fill="rgb(232,113,47)" ry="2"/> | |
<text x="1054.94" y="1453.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()"><title >Element.inflateWidget (1.30%)</title> | |
<rect ry="2" x="1051.9401" y="1427.0" width="15.339966" height="15.0" rx="2" fill="rgb(255,106,10)"/> | |
<text y="1437.50" x="1054.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect fill="rgb(226,22,21)" height="15.0" ry="2" rx="2" y="1411.0" width="15.339966" x="1051.9401"/> | |
<text x="1054.94" y="1421.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('StatefulElement._firstBuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect ry="2" fill="rgb(244,193,39)" width="15.339966" height="15.0" rx="2" x="1051.9401" y="1395.0"/> | |
<text x="1054.94" y="1405.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect height="15.0" rx="2" width="15.339966" ry="2" x="1051.9401" fill="rgb(209,59,2)" y="1379.0"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="1389.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect y="1363.0" ry="2" fill="rgb(208,60,37)" x="1051.9401" width="15.339966" rx="2" height="15.0"/> | |
<text x="1054.94" y="1373.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('StatefulElement.performRebuild (1.30%)')"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect ry="2" y="1347.0" height="15.0" fill="rgb(252,174,36)" x="1051.9401" rx="2" width="15.339966"/> | |
<text font-family="Verdana" y="1357.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" width="15.339966" ry="2" rx="2" y="1331.0" fill="rgb(238,157,25)"/> | |
<text font-family="Verdana" y="1341.50" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect rx="2" fill="rgb(214,28,26)" width="15.339966" height="15.0" y="1315.0" x="1051.9401" ry="2"/> | |
<text y="1325.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" y="1299.0" fill="rgb(222,146,30)" ry="2" height="15.0" rx="2" width="15.339966"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="1309.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')"><title >ComponentElement.mount (1.30%)</title> | |
<rect ry="2" fill="rgb(233,19,32)" y="1283.0" width="15.339966" rx="2" height="15.0" x="1051.9401"/> | |
<text y="1293.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('StatefulElement._firstBuild (1.30%)')" onmouseout="c()"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect height="15.0" ry="2" y="1267.0" x="1051.9401" width="15.339966" rx="2" fill="rgb(221,96,49)"/> | |
<text y="1277.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect width="15.339966" y="1251.0" x="1051.9401" ry="2" fill="rgb(238,137,10)" rx="2" height="15.0"/> | |
<text y="1261.50" x="1054.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >Element.rebuild (1.30%)</title> | |
<rect width="15.339966" height="15.0" y="1235.0" rx="2" fill="rgb(239,74,24)" x="1051.9401" ry="2"/> | |
<text x="1054.94" font-size="12" y="1245.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('StatefulElement.performRebuild (1.30%)')"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect ry="2" y="1219.0" rx="2" height="15.0" fill="rgb(220,145,3)" x="1051.9401" width="15.339966"/> | |
<text x="1054.94" y="1229.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect fill="rgb(224,211,25)" ry="2" x="1051.9401" y="1203.0" width="15.339966" height="15.0" rx="2"/> | |
<text y="1213.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(225,21,55)" x="1051.9401" ry="2" height="15.0" y="1187.0" rx="2" width="15.339966"/> | |
<text font-size="12" x="1054.94" y="1197.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect y="1171.0" rx="2" ry="2" x="1051.9401" width="15.339966" height="15.0" fill="rgb(223,191,25)"/> | |
<text x="1054.94" font-family="Verdana" y="1181.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.mount (1.30%)')"><title >ComponentElement.mount (1.30%)</title> | |
<rect height="15.0" ry="2" y="1155.0" width="15.339966" rx="2" x="1051.9401" fill="rgb(254,10,29)"/> | |
<text y="1165.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('StatefulElement._firstBuild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect y="1139.0" height="15.0" width="15.339966" x="1051.9401" rx="2" ry="2" fill="rgb(233,159,41)"/> | |
<text x="1054.94" font-size="12" y="1149.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement._firstBuild (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect y="1123.0" rx="2" ry="2" fill="rgb(219,32,35)" x="1051.9401" height="15.0" width="15.339966"/> | |
<text x="1054.94" font-family="Verdana" y="1133.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect y="1107.0" height="15.0" fill="rgb(230,205,48)" width="15.339966" ry="2" x="1051.9401" rx="2"/> | |
<text font-size="12" y="1117.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onmouseout="c()"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" fill="rgb(233,138,38)" ry="2" width="15.339966" y="1091.0" height="15.0" rx="2"/> | |
<text y="1101.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (1.30%)')"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" width="15.339966" ry="2" fill="rgb(222,215,14)" height="15.0" y="1075.0"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="1085.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Element.updateChild (1.30%)')" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect y="1059.0" rx="2" fill="rgb(218,110,49)" x="1051.9401" height="15.0" ry="2" width="15.339966"/> | |
<text x="1054.94" y="1069.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect height="15.0" x="1051.9401" rx="2" width="15.339966" ry="2" y="1043.0" fill="rgb(231,103,42)"/> | |
<text x="1054.94" font-size="12" y="1053.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect width="15.339966" y="1027.0" fill="rgb(235,118,53)" rx="2" ry="2" x="1051.9401" height="15.0"/> | |
<text y="1037.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect y="1011.0" height="15.0" fill="rgb(231,85,49)" ry="2" x="1051.9401" width="15.339966" rx="2"/> | |
<text x="1054.94" font-size="12" y="1021.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect width="15.339966" ry="2" fill="rgb(250,37,16)" y="995.0" height="15.0" rx="2" x="1051.9401"/> | |
<text y="1005.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect height="15.0" fill="rgb(231,150,20)" rx="2" y="979.0" ry="2" width="15.339966" x="1051.9401"/> | |
<text x="1054.94" font-size="12" y="989.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('StatefulElement._firstBuild (1.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect fill="rgb(212,147,7)" width="15.339966" rx="2" height="15.0" ry="2" y="963.0" x="1051.9401"/> | |
<text font-size="12" y="973.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect fill="rgb(253,115,43)" height="15.0" ry="2" x="1051.9401" y="947.0" rx="2" width="15.339966"/> | |
<text y="957.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()"><title >Element.rebuild (1.30%)</title> | |
<rect width="15.339966" rx="2" height="15.0" x="1051.9401" fill="rgb(208,27,25)" y="931.0" ry="2"/> | |
<text font-family="Verdana" y="941.50" font-size="12" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect width="15.339966" rx="2" fill="rgb(213,104,18)" ry="2" y="915.0" x="1051.9401" height="15.0"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="925.50"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect rx="2" x="1051.9401" ry="2" height="15.0" y="899.0" fill="rgb(208,138,15)" width="15.339966"/> | |
<text font-family="Verdana" x="1054.94" y="909.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect y="883.0" width="15.339966" fill="rgb(221,23,24)" x="1051.9401" height="15.0" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="893.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')" class="func_g" onmouseout="c()"><title >Element.inflateWidget (1.30%)</title> | |
<rect height="15.0" x="1051.9401" width="15.339966" rx="2" y="867.0" fill="rgb(231,142,37)" ry="2"/> | |
<text font-family="Verdana" x="1054.94" y="877.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" onclick="zoom(this)" class="func_g"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect y="851.0" height="15.0" ry="2" rx="2" fill="rgb(218,179,26)" x="1051.9401" width="15.339966"/> | |
<text y="861.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect rx="2" width="15.339966" y="835.0" x="1051.9401" height="15.0" ry="2" fill="rgb(236,8,47)"/> | |
<text font-size="12" y="845.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect rx="2" width="15.339966" ry="2" x="1051.9401" y="819.0" fill="rgb(243,62,11)" height="15.0"/> | |
<text font-size="12" y="829.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.mount (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect rx="2" x="1051.9401" y="803.0" width="15.339966" fill="rgb(248,174,19)" ry="2" height="15.0"/> | |
<text x="1054.94" font-family="Verdana" y="813.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('StatefulElement._firstBuild (1.30%)')" class="func_g"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect rx="2" fill="rgb(235,144,24)" x="1051.9401" y="787.0" width="15.339966" ry="2" height="15.0"/> | |
<text y="797.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement._firstBuild (1.30%)')" class="func_g" onmouseout="c()"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect x="1051.9401" rx="2" height="15.0" width="15.339966" y="771.0" fill="rgb(218,181,23)" ry="2"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="781.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect fill="rgb(214,153,32)" height="15.0" x="1051.9401" y="755.0" width="15.339966" rx="2" ry="2"/> | |
<text y="765.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" height="15.0" fill="rgb(216,6,37)" rx="2" ry="2" y="739.0" width="15.339966"/> | |
<text x="1054.94" y="749.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" class="func_g"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect height="15.0" rx="2" ry="2" y="723.0" width="15.339966" x="1051.9401" fill="rgb(245,86,25)"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="733.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect fill="rgb(255,188,55)" ry="2" width="15.339966" x="1051.9401" height="15.0" y="707.0" rx="2"/> | |
<text x="1054.94" y="717.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()"><title >Element.inflateWidget (1.30%)</title> | |
<rect height="15.0" ry="2" y="691.0" x="1051.9401" fill="rgb(252,33,33)" rx="2" width="15.339966"/> | |
<text y="701.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect fill="rgb(231,73,52)" x="1051.9401" ry="2" height="15.0" y="675.0" rx="2" width="15.339966"/> | |
<text y="685.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect x="1051.9401" height="15.0" rx="2" fill="rgb(215,122,25)" y="659.0" ry="2" width="15.339966"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="669.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect ry="2" height="15.0" x="1051.9401" width="15.339966" y="643.0" fill="rgb(213,209,14)" rx="2"/> | |
<text font-family="Verdana" x="1054.94" font-size="12" y="653.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ComponentElement.mount (1.30%)')" onmouseout="c()"><title >ComponentElement.mount (1.30%)</title> | |
<rect rx="2" height="15.0" ry="2" y="627.0" width="15.339966" x="1051.9401" fill="rgb(225,36,26)"/> | |
<text font-size="12" x="1054.94" y="637.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('StatefulElement._firstBuild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect y="611.0" width="15.339966" fill="rgb(219,158,37)" rx="2" x="1051.9401" height="15.0" ry="2"/> | |
<text font-size="12" x="1054.94" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('ComponentElement._firstBuild (1.30%)')"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect rx="2" width="15.339966" height="15.0" ry="2" x="1051.9401" y="595.0" fill="rgb(208,153,14)"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="605.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.rebuild (1.30%)')" class="func_g" onclick="zoom(this)"><title >Element.rebuild (1.30%)</title> | |
<rect x="1051.9401" width="15.339966" fill="rgb(251,158,34)" y="579.0" ry="2" height="15.0" rx="2"/> | |
<text x="1054.94" font-size="12" font-family="Verdana" y="589.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect ry="2" height="15.0" y="563.0" rx="2" x="1051.9401" width="15.339966" fill="rgb(210,39,30)"/> | |
<text x="1054.94" font-size="12" y="573.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onclick="zoom(this)" class="func_g"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" height="15.0" y="547.0" ry="2" fill="rgb(222,14,27)" width="15.339966" rx="2"/> | |
<text font-size="12" y="557.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" width="15.339966" rx="2" x="1051.9401" y="531.0" fill="rgb(232,63,38)" ry="2"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect y="515.0" ry="2" x="1051.9401" fill="rgb(248,88,42)" rx="2" height="15.0" width="15.339966"/> | |
<text y="525.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('MultiChildRenderObjectElement.mount (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >MultiChildRenderObjectElement.mount (1.30%)</title> | |
<rect height="15.0" y="499.0" fill="rgb(229,211,8)" ry="2" x="1051.9401" width="15.339966" rx="2"/> | |
<text font-size="12" x="1054.94" y="509.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('MultiChildRenderObjectElement.inflateWidget (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >MultiChildRenderObjectElement.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" rx="2" height="15.0" y="483.0" width="15.339966" fill="rgb(248,126,17)" ry="2"/> | |
<text x="1054.94" font-size="12" y="493.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect width="15.339966" rx="2" y="467.0" x="1051.9401" height="15.0" fill="rgb(205,112,3)" ry="2"/> | |
<text font-size="12" y="477.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.mount (1.30%)')"><title >ComponentElement.mount (1.30%)</title> | |
<rect height="15.0" rx="2" y="451.0" width="15.339966" ry="2" x="1051.9401" fill="rgb(216,77,5)"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="461.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('StatefulElement._firstBuild (1.30%)')" class="func_g" onmouseout="c()"><title >StatefulElement._firstBuild (1.30%)</title> | |
<rect height="15.0" fill="rgb(237,127,39)" width="15.339966" rx="2" y="435.0" x="1051.9401" ry="2"/> | |
<text x="1054.94" font-size="12" y="445.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement._firstBuild (1.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect fill="rgb(209,189,33)" width="15.339966" height="15.0" ry="2" rx="2" x="1051.9401" y="419.0"/> | |
<text x="1054.94" y="429.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.rebuild (1.30%)')" onmouseout="c()" class="func_g"><title >Element.rebuild (1.30%)</title> | |
<rect width="15.339966" rx="2" ry="2" x="1051.9401" y="403.0" height="15.0" fill="rgb(205,26,31)"/> | |
<text y="413.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('StatefulElement.performRebuild (1.30%)')" onclick="zoom(this)"><title >StatefulElement.performRebuild (1.30%)</title> | |
<rect height="15.0" fill="rgb(235,144,14)" ry="2" x="1051.9401" y="387.0" rx="2" width="15.339966"/> | |
<text y="397.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect x="1051.9401" rx="2" ry="2" fill="rgb(238,193,55)" y="371.0" width="15.339966" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1054.94" y="381.50"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect width="15.339966" y="355.0" x="1051.9401" height="15.0" rx="2" ry="2" fill="rgb(248,47,31)"/> | |
<text y="365.50" x="1054.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" y="339.0" ry="2" height="15.0" width="15.339966" fill="rgb(236,164,13)" rx="2"/> | |
<text y="349.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" onmouseout="c()"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect ry="2" x="1051.9401" rx="2" y="323.0" width="15.339966" height="15.0" fill="rgb(212,42,27)"/> | |
<text y="333.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" x="1051.9401" rx="2" width="15.339966" fill="rgb(250,75,49)" ry="2" y="307.0"/> | |
<text y="317.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')" class="func_g" onmouseout="c()"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" y="291.0" width="15.339966" rx="2" fill="rgb(210,211,32)" height="15.0" ry="2"/> | |
<text y="301.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect fill="rgb(213,217,21)" ry="2" x="1051.9401" width="15.339966" y="275.0" rx="2" height="15.0"/> | |
<text font-size="12" y="285.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect width="15.339966" ry="2" height="15.0" fill="rgb(240,33,47)" y="259.0" x="1051.9401" rx="2"/> | |
<text x="1054.94" font-size="12" y="269.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()" class="func_g"><title >Element.inflateWidget (1.30%)</title> | |
<rect rx="2" x="1051.9401" height="15.0" fill="rgb(219,146,8)" width="15.339966" y="243.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1054.94" y="253.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('ComponentElement.mount (1.30%)')" class="func_g" onclick="zoom(this)"><title >ComponentElement.mount (1.30%)</title> | |
<rect rx="2" fill="rgb(252,60,6)" x="1051.9401" y="227.0" width="15.339966" ry="2" height="15.0"/> | |
<text y="237.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement._firstBuild (1.30%)')"><title >ComponentElement._firstBuild (1.30%)</title> | |
<rect fill="rgb(231,204,46)" height="15.0" ry="2" y="211.0" width="15.339966" rx="2" x="1051.9401"/> | |
<text x="1054.94" y="221.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.rebuild (1.30%)')"><title >Element.rebuild (1.30%)</title> | |
<rect rx="2" height="15.0" width="15.339966" ry="2" x="1051.9401" y="195.0" fill="rgb(212,113,52)"/> | |
<text y="205.50" font-family="Verdana" x="1054.94" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.performRebuild (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.performRebuild (1.30%)</title> | |
<rect ry="2" fill="rgb(230,46,29)" height="15.0" rx="2" y="179.0" x="1051.9401" width="15.339966"/> | |
<text x="1054.94" font-family="Verdana" y="189.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')" onmouseout="c()"><title >Element.updateChild (1.30%)</title> | |
<rect y="163.0" height="15.0" x="1051.9401" width="15.339966" fill="rgb(222,82,32)" rx="2" ry="2"/> | |
<text y="173.50" x="1054.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Element.inflateWidget (1.30%)')"><title >Element.inflateWidget (1.30%)</title> | |
<rect rx="2" ry="2" y="147.0" width="15.339966" x="1051.9401" height="15.0" fill="rgb(209,40,17)"/> | |
<text font-family="Verdana" x="1054.94" y="157.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('SingleChildRenderObjectElement.mount (1.30%)')"><title >SingleChildRenderObjectElement.mount (1.30%)</title> | |
<rect fill="rgb(245,153,8)" width="15.339966" rx="2" x="1051.9401" height="15.0" y="131.0" ry="2"/> | |
<text y="141.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.updateChild (1.30%)')"><title >Element.updateChild (1.30%)</title> | |
<rect height="15.0" width="15.339966" fill="rgb(235,97,37)" x="1051.9401" rx="2" ry="2" y="115.0"/> | |
<text x="1054.94" font-family="Verdana" font-size="12" y="125.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Element.inflateWidget (1.30%)')" onmouseout="c()"><title >Element.inflateWidget (1.30%)</title> | |
<rect x="1051.9401" rx="2" y="99.0" fill="rgb(205,84,11)" height="15.0" ry="2" width="15.339966"/> | |
<text font-size="12" y="109.50" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('StatefulWidget.createElement (1.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >StatefulWidget.createElement (1.30%)</title> | |
<rect fill="rgb(236,73,22)" height="15.0" rx="2" x="1051.9401" y="83.0" width="15.339966" ry="2"/> | |
<text y="93.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('new StatefulElement (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >new StatefulElement (1.30%)</title> | |
<rect rx="2" ry="2" x="1051.9401" height="15.0" y="67.0" width="15.339966" fill="rgb(226,178,40)"/> | |
<text y="77.50" x="1054.94" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('VeryLongPictureScrollingPerf.createState (1.30%)')"><title >VeryLongPictureScrollingPerf.createState (1.30%)</title> | |
<rect y="51.0" height="15.0" rx="2" width="15.339966" x="1051.9401" fill="rgb(227,18,12)" ry="2"/> | |
<text y="61.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('new VeryLongPictureScrollingPerfState (1.30%)')"><title >new VeryLongPictureScrollingPerfState (1.30%)</title> | |
<rect height="15.0" x="1051.9401" width="15.339966" rx="2" y="35.0" fill="rgb(212,92,39)" ry="2"/> | |
<text y="45.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('assert type is VeryLongPictureScrollingPerf (1.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >assert type is VeryLongPictureScrollingPerf (1.30%)</title> | |
<rect ry="2" y="19.0" width="15.339966" height="15.0" fill="rgb(240,34,10)" x="1051.9401" rx="2"/> | |
<text font-size="12" x="1054.94" font-family="Verdana" y="29.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('assert type is VeryLongPictureScrollingPerf (1.30%)')" onclick="zoom(this)" onmouseout="c()"><title >assert type is VeryLongPictureScrollingPerf (1.30%)</title> | |
<rect x="1051.9401" y="3.0" width="15.339966" rx="2" height="15.0" fill="rgb(250,140,0)" ry="2"/> | |
<text font-size="12" y="13.50" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('StatefulElement.update (0.40%)')" onmouseout="c()" class="func_g"><title >StatefulElement.update (0.40%)</title> | |
<rect fill="rgb(216,57,18)" rx="2" ry="2" width="4.7199707" height="15.0" y="4307.0" x="1068.4601"/> | |
<text font-family="Verdana" x="1071.46" y="4317.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('Element.rebuild (0.40%)')" onclick="zoom(this)"><title >Element.rebuild (0.40%)</title> | |
<rect width="4.7199707" y="4291.0" height="15.0" fill="rgb(217,85,52)" ry="2" rx="2" x="1068.4601"/> | |
<text font-size="12" x="1071.46" font-family="Verdana" y="4301.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('StatefulElement.performRebuild (0.40%)')"><title >StatefulElement.performRebuild (0.40%)</title> | |
<rect x="1068.4601" width="4.7199707" fill="rgb(234,75,19)" y="4275.0" rx="2" ry="2" height="15.0"/> | |
<text x="1071.46" font-size="12" y="4285.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (0.40%)')" class="func_g"><title >ComponentElement.performRebuild (0.40%)</title> | |
<rect y="4259.0" rx="2" fill="rgb(207,85,18)" ry="2" x="1068.4601" width="4.7199707" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1071.46" y="4269.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.updateChild (0.30%)')" onmouseout="c()" class="func_g"><title >Element.updateChild (0.30%)</title> | |
<rect ry="2" width="3.540039" rx="2" x="1068.4601" fill="rgb(218,101,10)" y="4243.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="4253.50" x="1071.46"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.update (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >StatefulElement.update (0.30%)</title> | |
<rect height="15.0" y="4227.0" fill="rgb(251,58,42)" rx="2" width="3.540039" ry="2" x="1068.4601"/> | |
<text font-family="Verdana" y="4237.50" x="1071.46" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.rebuild (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >Element.rebuild (0.30%)</title> | |
<rect ry="2" fill="rgb(244,48,7)" y="4211.0" rx="2" height="15.0" x="1068.4601" width="3.540039"/> | |
<text font-size="12" y="4221.50" font-family="Verdana" x="1071.46"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('StatefulElement.performRebuild (0.30%)')" onclick="zoom(this)"><title >StatefulElement.performRebuild (0.30%)</title> | |
<rect rx="2" x="1068.4601" y="4195.0" width="3.540039" fill="rgb(242,75,2)" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="4205.50" font-size="12" x="1071.46"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (0.30%)')"><title >ComponentElement.performRebuild (0.30%)</title> | |
<rect fill="rgb(249,101,31)" ry="2" width="3.540039" rx="2" height="15.0" x="1068.4601" y="4179.0"/> | |
<text y="4189.50" x="1071.46" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Element.updateChild (0.30%)')"><title >Element.updateChild (0.30%)</title> | |
<rect y="4163.0" ry="2" height="15.0" x="1068.4601" width="3.540039" fill="rgb(242,99,8)" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="4173.50" x="1071.46"></text> | |
</g> | |
<g onmouseover="s('StatefulElement.update (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >StatefulElement.update (0.20%)</title> | |
<rect y="4147.0" width="2.3599854" x="1068.4601" height="15.0" fill="rgb(221,122,23)" rx="2" ry="2"/> | |
<text x="1071.46" y="4157.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Element.rebuild (0.20%)</title> | |
<rect height="15.0" x="1068.4601" width="2.3599854" y="4131.0" rx="2" fill="rgb(214,65,5)" ry="2"/> | |
<text font-family="Verdana" x="1071.46" font-size="12" y="4141.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('StatefulElement.performRebuild (0.20%)')" onmouseout="c()"><title >StatefulElement.performRebuild (0.20%)</title> | |
<rect rx="2" height="15.0" x="1068.4601" fill="rgb(234,173,36)" ry="2" width="2.3599854" y="4115.0"/> | |
<text font-family="Verdana" y="4125.50" font-size="12" x="1071.46"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.performRebuild (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.performRebuild (0.20%)</title> | |
<rect x="1068.4601" width="2.3599854" rx="2" y="4099.0" ry="2" height="15.0" fill="rgb(220,111,6)"/> | |
<text font-size="12" font-family="Verdana" x="1071.46" y="4109.50"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Element.updateChild (0.20%)</title> | |
<rect rx="2" x="1068.4601" fill="rgb(238,91,5)" width="2.3599854" ry="2" y="4083.0" height="15.0"/> | |
<text y="4093.50" x="1071.46" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('SingleChildRenderObjectElement.update (0.20%)')" onmouseout="c()" class="func_g"><title >SingleChildRenderObjectElement.update (0.20%)</title> | |
<rect rx="2" ry="2" y="4067.0" width="2.3599854" fill="rgb(231,51,33)" x="1068.4601" height="15.0"/> | |
<text font-size="12" x="1071.46" y="4077.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.updateChild (0.20%)')" class="func_g"><title >Element.updateChild (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(247,122,9)" rx="2" y="4051.0" ry="2" x="1068.4601" height="15.0"/> | |
<text font-family="Verdana" y="4061.50" font-size="12" x="1071.46"></text> | |
</g> | |
<g class="func_g" onmouseover="s('StatefulElement.update (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >StatefulElement.update (0.20%)</title> | |
<rect rx="2" width="2.3599854" y="4035.0" fill="rgb(242,30,54)" ry="2" height="15.0" x="1068.4601"/> | |
<text font-family="Verdana" x="1071.46" font-size="12" y="4045.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Element.rebuild (0.20%)')"><title >Element.rebuild (0.20%)</title> | |
<rect ry="2" x="1068.4601" width="2.3599854" height="15.0" fill="rgb(231,17,7)" y="4019.0" rx="2"/> | |
<text y="4029.50" x="1071.46" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('StatefulElement.performRebuild (0.20%)')"><title >StatefulElement.performRebuild (0.20%)</title> | |
<rect height="15.0" x="1068.4601" ry="2" rx="2" width="2.3599854" fill="rgb(252,56,39)" y="4003.0"/> | |
<text font-family="Verdana" font-size="12" x="1071.46" y="4013.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.performRebuild (0.20%)')" class="func_g" onmouseout="c()"><title >ComponentElement.performRebuild (0.20%)</title> | |
<rect y="3987.0" rx="2" x="1068.4601" width="2.3599854" height="15.0" fill="rgb(239,153,51)" ry="2"/> | |
<text font-family="Verdana" y="3997.50" x="1071.46" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Element.updateChild (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.updateChild (0.20%)</title> | |
<rect x="1068.4601" y="3971.0" height="15.0" fill="rgb(240,192,12)" ry="2" rx="2" width="2.3599854"/> | |
<text font-family="Verdana" x="1071.46" y="3981.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('SingleChildRenderObjectElement.update (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >SingleChildRenderObjectElement.update (0.20%)</title> | |
<rect height="15.0" rx="2" x="1068.4601" y="3955.0" fill="rgb(206,76,11)" ry="2" width="2.3599854"/> | |
<text y="3965.50" font-family="Verdana" font-size="12" x="1071.46"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Element.updateChild (0.20%)')"><title >Element.updateChild (0.20%)</title> | |
<rect height="15.0" rx="2" y="3939.0" x="1068.4601" fill="rgb(245,170,47)" width="2.3599854" ry="2"/> | |
<text y="3949.50" x="1071.46" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('StatefulElement.update (0.20%)')" class="func_g" onclick="zoom(this)"><title >StatefulElement.update (0.20%)</title> | |
<rect width="2.3599854" rx="2" y="3923.0" height="15.0" x="1068.4601" fill="rgb(220,164,9)" ry="2"/> | |
<text font-family="Verdana" x="1071.46" y="3933.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Element.rebuild (0.20%)')" onmouseout="c()"><title >Element.rebuild (0.20%)</title> | |
<rect ry="2" height="15.0" x="1068.4601" rx="2" fill="rgb(208,41,5)" width="2.3599854" y="3907.0"/> | |
<text x="1071.46" y="3917.50" font-family="Verdana" font-size="12"></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="1068.4601" rx="2" width="2.3599854" height="15.0" y="3891.0" fill="rgb(250,158,26)" ry="2"/> | |
<text y="3901.50" font-size="12" font-family="Verdana" x="1071.46"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.performRebuild (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >ComponentElement.performRebuild (0.20%)</title> | |
<rect rx="2" ry="2" width="2.3599854" height="15.0" x="1068.4601" y="3875.0" fill="rgb(233,162,40)"/> | |
<text font-family="Verdana" x="1071.46" y="3885.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('Element.updateChild (0.20%)')" class="func_g"><title >Element.updateChild (0.20%)</title> | |
<rect ry="2" width="2.3599854" x="1068.4601" height="15.0" y="3859.0" fill="rgb(252,7,45)" rx="2"/> | |
<text y="3869.50" font-size="12" font-family="Verdana" x="1071.46"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('SingleChildRenderObjectElement.update (0.20%)')"><title >SingleChildRenderObjectElement.update (0.20%)</title> | |
<rect width="2.3599854" y="3843.0" fill="rgb(249,144,48)" ry="2" x="1068.4601" rx="2" height="15.0"/> | |
<text font-family="Verdana" y="3853.50" x="1071.46" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Element.updateChild (0.10%)')" onclick="zoom(this)" class="func_g"><title >Element.updateChild (0.10%)</title> | |
<rect y="3827.0" fill="rgb(207,116,29)" width="1.1800537" rx="2" height="15.0" ry="2" x="1068.4601"/> | |
<text x="1071.46" font-size="12" font-family="Verdana" y="3837.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('StatefulElement.update (0.10%)')"><title >StatefulElement.update (0.10%)</title> | |
<rect width="1.1800537" y="3811.0" height="15.0" x="1068.4601" fill="rgb(232,158,9)" rx="2" ry="2"/> | |
<text x="1071.46" y="3821.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.rebuild (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Element.rebuild (0.10%)</title> | |
<rect x="1068.4601" y="3795.0" width="1.1800537" height="15.0" rx="2" fill="rgb(216,136,54)" ry="2"/> | |
<text y="3805.50" x="1071.46" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('StatefulElement.performRebuild (0.10%)')" class="func_g" onclick="zoom(this)"><title >StatefulElement.performRebuild (0.10%)</title> | |
<rect fill="rgb(246,56,21)" rx="2" x="1068.4601" width="1.1800537" y="3779.0" height="15.0" ry="2"/> | |
<text font-size="12" x="1071.46" y="3789.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.performRebuild (0.10%)')"><title >ComponentElement.performRebuild (0.10%)</title> | |
<rect rx="2" fill="rgb(211,171,28)" height="15.0" width="1.1800537" y="3763.0" ry="2" x="1068.4601"/> | |
<text y="3773.50" font-family="Verdana" font-size="12" x="1071.46"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.updateChild (0.10%)')" onmouseout="c()" class="func_g"><title >Element.updateChild (0.10%)</title> | |
<rect y="3747.0" x="1068.4601" width="1.1800537" height="15.0" fill="rgb(254,47,0)" rx="2" ry="2"/> | |
<text font-size="12" x="1071.46" y="3757.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('MultiChildRenderObjectElement.update (0.10%)')"><title >MultiChildRenderObjectElement.update (0.10%)</title> | |
<rect rx="2" y="3731.0" x="1068.4601" width="1.1800537" fill="rgb(253,53,51)" height="15.0" ry="2"/> | |
<text x="1071.46" y="3741.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Element.updateChildren (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >Element.updateChildren (0.10%)</title> | |
<rect ry="2" fill="rgb(252,1,10)" width="1.1800537" height="15.0" rx="2" x="1068.4601" y="3715.0"/> | |
<text font-size="12" font-family="Verdana" y="3725.50" x="1071.46"></text> | |
</g> | |
<g onmouseover="s('HeroController._maybeStartHeroTransition.<anonymous closure> (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >HeroController._maybeStartHeroTransition.<anonymous closure> (0.10%)</title> | |
<rect fill="rgb(253,186,43)" rx="2" ry="2" width="1.1800537" height="15.0" y="4467.0" x="1080.26"/> | |
<text font-size="12" y="4477.50" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('HeroController._startHeroTransition (0.10%)')" onclick="zoom(this)" class="func_g"><title >HeroController._startHeroTransition (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(245,70,26)" y="4451.0" ry="2" x="1080.26" height="15.0" rx="2"/> | |
<text font-family="Verdana" y="4461.50" font-size="12" x="1083.26"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Hero._allHeroesFor (0.10%)</title> | |
<rect x="1080.26" height="15.0" fill="rgb(217,156,17)" y="4435.0" width="1.1800537" ry="2" rx="2"/> | |
<text y="4445.50" font-family="Verdana" font-size="12" x="1083.26"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('Element.visitChildElements (0.10%)')" onmouseout="c()" class="func_g"><title >Element.visitChildElements (0.10%)</title> | |
<rect fill="rgb(206,193,35)" height="15.0" ry="2" rx="2" y="4419.0" width="1.1800537" x="1080.26"/> | |
<text y="4429.50" font-size="12" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('SingleChildRenderObjectElement.visitChildren (0.10%)')" onclick="zoom(this)"><title >SingleChildRenderObjectElement.visitChildren (0.10%)</title> | |
<rect fill="rgb(216,57,1)" ry="2" rx="2" y="4403.0" height="15.0" width="1.1800537" x="1080.26"/> | |
<text font-family="Verdana" y="4413.50" x="1083.26" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect fill="rgb(215,156,19)" rx="2" width="1.1800537" height="15.0" x="1080.26" ry="2" y="4387.0"/> | |
<text y="4397.50" x="1083.26" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('ComponentElement.visitChildren (0.10%)')"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect width="1.1800537" y="4371.0" height="15.0" x="1080.26" fill="rgb(243,212,20)" rx="2" ry="2"/> | |
<text y="4381.50" font-size="12" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" class="func_g" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect rx="2" y="4355.0" x="1080.26" width="1.1800537" fill="rgb(255,218,12)" height="15.0" ry="2"/> | |
<text font-family="Verdana" x="1083.26" y="4365.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('SingleChildRenderObjectElement.visitChildren (0.10%)')"><title >SingleChildRenderObjectElement.visitChildren (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(244,102,36)" rx="2" y="4339.0" ry="2" x="1080.26" height="15.0"/> | |
<text x="1083.26" y="4349.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect rx="2" height="15.0" fill="rgb(232,185,47)" y="4323.0" ry="2" width="1.1800537" x="1080.26"/> | |
<text font-family="Verdana" font-size="12" x="1083.26" y="4333.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect ry="2" width="1.1800537" x="1080.26" height="15.0" fill="rgb(214,51,9)" y="4307.0" rx="2"/> | |
<text font-size="12" y="4317.50" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect y="4291.0" rx="2" x="1080.26" width="1.1800537" height="15.0" fill="rgb(219,120,18)" ry="2"/> | |
<text y="4301.50" font-size="12" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.visitChildren (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect fill="rgb(212,122,23)" height="15.0" width="1.1800537" rx="2" ry="2" y="4275.0" x="1080.26"/> | |
<text font-family="Verdana" x="1083.26" font-size="12" y="4285.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onclick="zoom(this)" class="func_g"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect ry="2" fill="rgb(218,106,42)" y="4259.0" rx="2" height="15.0" x="1080.26" width="1.1800537"/> | |
<text font-family="Verdana" y="4269.50" font-size="12" x="1083.26"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.visitChildren (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect ry="2" x="1080.26" width="1.1800537" height="15.0" fill="rgb(245,17,35)" y="4243.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="1083.26" y="4253.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onclick="zoom(this)" class="func_g"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect width="1.1800537" y="4227.0" x="1080.26" height="15.0" rx="2" ry="2" fill="rgb(236,173,3)"/> | |
<text x="1083.26" y="4237.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect rx="2" x="1080.26" y="4211.0" width="1.1800537" fill="rgb(252,219,3)" ry="2" height="15.0"/> | |
<text y="4221.50" font-family="Verdana" x="1083.26" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect rx="2" height="15.0" x="1080.26" fill="rgb(228,98,27)" ry="2" width="1.1800537" y="4195.0"/> | |
<text y="4205.50" x="1083.26" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.visitChildren (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect x="1080.26" width="1.1800537" rx="2" y="4179.0" ry="2" height="15.0" fill="rgb(231,101,32)"/> | |
<text y="4189.50" x="1083.26" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect height="15.0" x="1080.26" ry="2" rx="2" width="1.1800537" fill="rgb(226,94,41)" y="4163.0"/> | |
<text font-family="Verdana" font-size="12" y="4173.50" x="1083.26"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.visitChildren (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect height="15.0" rx="2" x="1080.26" y="4147.0" fill="rgb(215,216,50)" ry="2" width="1.1800537"/> | |
<text font-size="12" font-family="Verdana" y="4157.50" x="1083.26"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect width="1.1800537" rx="2" y="4131.0" height="15.0" x="1080.26" fill="rgb(242,204,26)" ry="2"/> | |
<text x="1083.26" y="4141.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.visitChildren (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect x="1080.26" rx="2" width="1.1800537" height="15.0" y="4115.0" fill="rgb(228,172,1)" ry="2"/> | |
<text font-family="Verdana" x="1083.26" y="4125.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect fill="rgb(242,191,50)" height="15.0" ry="2" x="1080.26" y="4099.0" width="1.1800537" rx="2"/> | |
<text x="1083.26" y="4109.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.visitChildren (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" x="1080.26" y="4083.0" width="1.1800537" fill="rgb(240,131,24)"/> | |
<text x="1083.26" font-family="Verdana" y="4093.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect ry="2" fill="rgb(236,11,50)" width="1.1800537" height="15.0" rx="2" x="1080.26" y="4067.0"/> | |
<text y="4077.50" font-size="12" x="1083.26" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('ComponentElement.visitChildren (0.10%)')"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect width="1.1800537" y="4051.0" ry="2" x="1080.26" height="15.0" rx="2" fill="rgb(251,51,37)"/> | |
<text y="4061.50" x="1083.26" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect height="15.0" x="1080.26" width="1.1800537" ry="2" rx="2" y="4035.0" fill="rgb(254,3,13)"/> | |
<text y="4045.50" x="1083.26" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('SingleChildRenderObjectElement.visitChildren (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >SingleChildRenderObjectElement.visitChildren (0.10%)</title> | |
<rect rx="2" fill="rgb(229,144,52)" width="1.1800537" height="15.0" y="4019.0" x="1080.26" ry="2"/> | |
<text x="1083.26" y="4029.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect ry="2" fill="rgb(254,72,46)" y="4003.0" width="1.1800537" rx="2" height="15.0" x="1080.26"/> | |
<text font-size="12" y="4013.50" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onmouseout="c()"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect height="15.0" ry="2" y="3987.0" x="1080.26" width="1.1800537" rx="2" fill="rgb(233,226,8)"/> | |
<text font-size="12" x="1083.26" y="3997.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect x="1080.26" y="3971.0" width="1.1800537" rx="2" height="15.0" ry="2" fill="rgb(220,17,2)"/> | |
<text y="3981.50" x="1083.26" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('SingleChildRenderObjectElement.visitChildren (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >SingleChildRenderObjectElement.visitChildren (0.10%)</title> | |
<rect x="1080.26" y="3955.0" ry="2" width="1.1800537" fill="rgb(215,5,10)" height="15.0" rx="2"/> | |
<text y="3965.50" font-family="Verdana" font-size="12" x="1083.26"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect x="1080.26" fill="rgb(224,224,0)" ry="2" rx="2" y="3939.0" width="1.1800537" height="15.0"/> | |
<text x="1083.26" font-size="12" y="3949.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect x="1080.26" y="3923.0" fill="rgb(222,56,38)" width="1.1800537" rx="2" ry="2" height="15.0"/> | |
<text y="3933.50" font-size="12" x="1083.26" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect y="3907.0" rx="2" ry="2" fill="rgb(231,108,43)" x="1080.26" height="15.0" width="1.1800537"/> | |
<text y="3917.50" x="1083.26" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('ComponentElement.visitChildren (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect height="15.0" x="1080.26" fill="rgb(217,218,5)" ry="2" y="3891.0" width="1.1800537" rx="2"/> | |
<text y="3901.50" x="1083.26" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect rx="2" x="1080.26" width="1.1800537" ry="2" fill="rgb(207,222,6)" height="15.0" y="3875.0"/> | |
<text y="3885.50" font-size="12" x="1083.26" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onmouseout="c()" class="func_g"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect y="3859.0" rx="2" fill="rgb(227,119,47)" x="1080.26" height="15.0" ry="2" width="1.1800537"/> | |
<text x="1083.26" font-family="Verdana" font-size="12" y="3869.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="3843.0" height="15.0" fill="rgb(234,189,52)" rx="2" x="1080.26"/> | |
<text font-family="Verdana" font-size="12" x="1083.26" y="3853.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onmouseout="c()"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect y="3827.0" height="15.0" fill="rgb(242,36,55)" ry="2" x="1080.26" width="1.1800537" rx="2"/> | |
<text font-family="Verdana" y="3837.50" font-size="12" x="1083.26"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect y="3811.0" height="15.0" rx="2" ry="2" x="1080.26" width="1.1800537" fill="rgb(216,183,26)"/> | |
<text y="3821.50" font-size="12" x="1083.26" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect rx="2" fill="rgb(219,167,18)" ry="2" width="1.1800537" height="15.0" x="1080.26" y="3795.0"/> | |
<text x="1083.26" y="3805.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect fill="rgb(225,189,40)" y="3779.0" width="1.1800537" rx="2" x="1080.26" height="15.0" ry="2"/> | |
<text x="1083.26" y="3789.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('MultiChildRenderObjectElement.visitChildren (0.10%)')"><title >MultiChildRenderObjectElement.visitChildren (0.10%)</title> | |
<rect y="3763.0" fill="rgb(217,131,13)" rx="2" ry="2" width="1.1800537" height="15.0" x="1080.26"/> | |
<text font-family="Verdana" font-size="12" x="1083.26" y="3773.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect y="3747.0" width="1.1800537" height="15.0" rx="2" ry="2" fill="rgb(251,121,34)" x="1080.26"/> | |
<text font-family="Verdana" font-size="12" x="1083.26" y="3757.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('ComponentElement.visitChildren (0.10%)')"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect y="3731.0" x="1080.26" rx="2" width="1.1800537" ry="2" height="15.0" fill="rgb(254,125,51)"/> | |
<text font-size="12" y="3741.50" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect rx="2" width="1.1800537" ry="2" x="1080.26" y="3715.0" fill="rgb(210,140,22)" height="15.0"/> | |
<text y="3725.50" font-size="12" font-family="Verdana" x="1083.26"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.visitChildren (0.10%)')" onclick="zoom(this)"><title >ComponentElement.visitChildren (0.10%)</title> | |
<rect rx="2" x="1080.26" y="3699.0" width="1.1800537" fill="rgb(215,31,53)" ry="2" height="15.0"/> | |
<text x="1083.26" font-family="Verdana" y="3709.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Hero._allHeroesFor.visitor (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >Hero._allHeroesFor.visitor (0.10%)</title> | |
<rect y="3683.0" height="15.0" rx="2" x="1080.26" fill="rgb(226,49,10)" width="1.1800537" ry="2"/> | |
<text font-family="Verdana" x="1083.26" y="3693.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('tonic::DartInvoke(_Dart_Handle*, std::initializer_list<_Dart_Handle*>) (0.60%)')" class="func_g" onclick="zoom(this)"><title >tonic::DartInvoke(_Dart_Handle*, std::initializer_list<_Dart_Handle*>) (0.60%)</title> | |
<rect height="15.0" rx="2" x="1083.7999" y="4675.0" fill="rgb(210,182,10)" ry="2" width="7.079956"/> | |
<text font-size="12" x="1086.80" font-family="Verdana" y="4685.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('Dart_InvokeClosure (0.60%)')"><title >Dart_InvokeClosure (0.60%)</title> | |
<rect fill="rgb(232,112,19)" rx="2" ry="2" width="7.079956" height="15.0" y="4659.0" x="1083.7999"/> | |
<text x="1086.80" y="4669.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&) (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&) (0.50%)</title> | |
<rect width="5.9000244" fill="rgb(209,149,39)" y="4643.0" ry="2" x="1083.7999" height="15.0" rx="2"/> | |
<text y="4653.50" x="1086.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.40%)</title> | |
<rect x="1083.7999" y="4627.0" fill="rgb(226,0,2)" ry="2" height="15.0" rx="2" width="4.7199707"/> | |
<text font-family="Verdana" x="1086.80" y="4637.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('stub InvokeDartCode (0.40%)')"><title >stub InvokeDartCode (0.40%)</title> | |
<rect x="1083.7999" height="15.0" fill="rgb(205,203,1)" y="4611.0" width="4.7199707" ry="2" rx="2"/> | |
<text font-size="12" x="1086.80" y="4621.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('beginFrame (#2) (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >beginFrame (#2) (0.40%)</title> | |
<rect rx="2" width="4.7199707" y="4595.0" x="1083.7999" height="15.0" ry="2" fill="rgb(233,61,53)"/> | |
<text font-family="Verdana" font-size="12" y="4605.50" x="1086.80"></text> | |
</g> | |
<g onmouseover="s('beginFrame (0.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >beginFrame (0.40%)</title> | |
<rect ry="2" y="4579.0" height="15.0" fill="rgb(246,174,36)" x="1083.7999" rx="2" width="4.7199707"/> | |
<text font-family="Verdana" y="4589.50" font-size="12" x="1086.80"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('PlatformDispatcher._beginFrame (0.40%)')" onmouseout="c()"><title >PlatformDispatcher._beginFrame (0.40%)</title> | |
<rect fill="rgb(213,187,40)" rx="2" width="4.7199707" height="15.0" x="1083.7999" ry="2" y="4563.0"/> | |
<text font-family="Verdana" font-size="12" y="4573.50" x="1086.80"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('invoke1 (0.40%)')" class="func_g" onclick="zoom(this)"><title >invoke1 (0.40%)</title> | |
<rect fill="rgb(228,33,47)" ry="2" rx="2" y="4547.0" height="15.0" width="4.7199707" x="1083.7999"/> | |
<text y="4557.50" x="1086.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('SchedulerBinding._handleBeginFrame (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >SchedulerBinding._handleBeginFrame (0.40%)</title> | |
<rect width="4.7199707" y="4531.0" height="15.0" x="1083.7999" fill="rgb(226,16,11)" rx="2" ry="2"/> | |
<text y="4541.50" x="1086.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('SchedulerBinding._handleBeginFrame (#2) (0.40%)')"><title >SchedulerBinding._handleBeginFrame (#2) (0.40%)</title> | |
<rect width="4.7199707" fill="rgb(207,196,18)" rx="2" y="4515.0" ry="2" x="1083.7999" height="15.0"/> | |
<text font-size="12" y="4525.50" font-family="Verdana" x="1086.80"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('SchedulerBinding.handleBeginFrame (0.40%)')"><title >SchedulerBinding.handleBeginFrame (0.40%)</title> | |
<rect rx="2" height="15.0" fill="rgb(224,223,3)" y="4499.0" ry="2" width="4.7199707" x="1083.7999"/> | |
<text x="1086.80" font-family="Verdana" y="4509.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('LinkedHashMapMixin.forEach (#2) (0.30%)')" onclick="zoom(this)"><title >LinkedHashMapMixin.forEach (#2) (0.30%)</title> | |
<rect ry="2" height="15.0" y="4483.0" width="3.540039" x="1083.7999" fill="rgb(234,180,39)" rx="2"/> | |
<text x="1086.80" y="4493.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('SchedulerBinding.handleBeginFrame.<anonymous closure> (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >SchedulerBinding.handleBeginFrame.<anonymous closure> (0.30%)</title> | |
<rect x="1083.7999" y="4467.0" height="15.0" rx="2" fill="rgb(219,3,52)" ry="2" width="3.540039"/> | |
<text y="4477.50" x="1086.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('SchedulerBinding._invokeFrameCallback (0.30%)')"><title >SchedulerBinding._invokeFrameCallback (0.30%)</title> | |
<rect x="1083.7999" y="4451.0" width="3.540039" rx="2" height="15.0" ry="2" fill="rgb(229,103,39)"/> | |
<text font-size="12" font-family="Verdana" y="4461.50" x="1086.80"></text> | |
</g> | |
<g onmouseover="s('Ticker._tick (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >Ticker._tick (0.30%)</title> | |
<rect fill="rgb(255,35,33)" y="4435.0" width="3.540039" rx="2" x="1083.7999" height="15.0" ry="2"/> | |
<text x="1086.80" y="4445.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Ticker._tick (#2) (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >Ticker._tick (#2) (0.30%)</title> | |
<rect y="4419.0" rx="2" x="1083.7999" width="3.540039" height="15.0" fill="rgb(241,82,55)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1086.80" y="4429.50"></text> | |
</g> | |
<g onmouseover="s('AnimationController._tick (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >AnimationController._tick (0.20%)</title> | |
<rect height="15.0" rx="2" ry="2" width="2.3599854" x="1083.7999" y="4403.0" fill="rgb(228,175,26)"/> | |
<text y="4413.50" font-family="Verdana" x="1086.80" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('AnimationController._tick (#2) (0.20%)')"><title >AnimationController._tick (#2) (0.20%)</title> | |
<rect height="15.0" x="1083.7999" width="2.3599854" y="4387.0" fill="rgb(224,33,41)" rx="2" ry="2"/> | |
<text x="1086.80" font-family="Verdana" y="4397.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('AnimationLocalListenersMixin.notifyListeners (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >AnimationLocalListenersMixin.notifyListeners (0.10%)</title> | |
<rect ry="2" fill="rgb(213,154,45)" y="4371.0" rx="2" height="15.0" x="1083.7999" width="1.1800537"/> | |
<text font-family="Verdana" y="4381.50" font-size="12" x="1086.80"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::Array::NewUninitialized(long, long, dart::Heap::Space) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::Array::NewUninitialized(long, long, dart::Heap::Space) (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(211,158,54)" y="4643.0" ry="2" x="1089.7" height="15.0" rx="2"/> | |
<text y="4653.50" x="1092.70" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::Object::Allocate(long, long, dart::Heap::Space, bool, unsigned long, unsigned long) (0.10%)</title> | |
<rect x="1089.7" height="15.0" fill="rgb(221,0,42)" y="4627.0" width="1.1800537" ry="2" rx="2"/> | |
<text font-family="Verdana" x="1092.70" y="4637.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('dart::Heap::AllocateNew(dart::Thread*, long) (0.10%)')"><title >dart::Heap::AllocateNew(dart::Thread*, long) (0.10%)</title> | |
<rect rx="2" width="1.1800537" y="4611.0" x="1089.7" height="15.0" ry="2" fill="rgb(227,209,4)"/> | |
<text font-size="12" x="1092.70" y="4621.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::Scavenger::TryAllocateNewTLAB(dart::Thread*, long, bool) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >dart::Scavenger::TryAllocateNewTLAB(dart::Thread*, long, bool) (0.10%)</title> | |
<rect ry="2" y="4595.0" height="15.0" fill="rgb(237,10,23)" x="1089.7" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" y="4605.50" x="1092.70"></text> | |
</g> | |
<g onmouseover="s('dart::Heap::CollectOldSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dart::Heap::CollectOldSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.10%)</title> | |
<rect fill="rgb(212,112,30)" rx="2" width="1.1800537" height="15.0" x="1089.7" ry="2" y="4579.0"/> | |
<text font-family="Verdana" y="4589.50" font-size="12" x="1092.70"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('dart::PageSpace::CollectGarbage(dart::Thread*, bool, bool) (0.10%)')" onmouseout="c()"><title >dart::PageSpace::CollectGarbage(dart::Thread*, bool, bool) (0.10%)</title> | |
<rect fill="rgb(207,24,51)" ry="2" rx="2" y="4563.0" height="15.0" width="1.1800537" x="1089.7"/> | |
<text font-family="Verdana" font-size="12" y="4573.50" x="1092.70"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::PageSpace::CollectGarbageHelper(dart::Thread*, bool, bool) (0.10%)')" class="func_g" onclick="zoom(this)"><title >dart::PageSpace::CollectGarbageHelper(dart::Thread*, bool, bool) (0.10%)</title> | |
<rect width="1.1800537" y="4547.0" height="15.0" x="1089.7" fill="rgb(219,39,41)" rx="2" ry="2"/> | |
<text y="4557.50" x="1092.70" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::Animator::AwaitVSync() (0.40%)')" class="func_g" onclick="zoom(this)"><title >flutter::Animator::AwaitVSync() (0.40%)</title> | |
<rect height="15.0" rx="2" x="1094.4199" y="4755.0" fill="rgb(217,141,42)" ry="2" width="4.7199707"/> | |
<text font-size="12" x="1097.42" font-family="Verdana" y="4765.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::VsyncWaiter::AsyncWaitForVsync(std::_fl::function<void (std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>)> const&) (0.20%)')"><title >flutter::VsyncWaiter::AsyncWaitForVsync(std::_fl::function<void (std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>)> const&) (0.20%)</title> | |
<rect fill="rgb(218,125,28)" rx="2" ry="2" width="2.3599854" height="15.0" y="4739.0" x="1094.4199"/> | |
<text x="1097.42" y="4749.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::VsyncWaiterIOS::AwaitVSync() (0.10%)')" onclick="zoom(this)" class="func_g"><title >flutter::VsyncWaiterIOS::AwaitVSync() (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(232,196,1)" y="4723.0" ry="2" x="1094.4199" height="15.0" rx="2"/> | |
<text y="4733.50" font-family="Verdana" font-size="12" x="1097.42"></text> | |
</g> | |
<g class="func_g" onmouseover="s('+[DisplayLinkManager displayRefreshRate] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >+[DisplayLinkManager displayRefreshRate] (0.10%)</title> | |
<rect x="1094.4199" y="4707.0" fill="rgb(226,45,0)" ry="2" height="15.0" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" x="1097.42" y="4717.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('+[CADisplayLink(CADisplayLinkPrivate) displayLinkWithDisplay:target:selector:] (0.10%)')"><title >+[CADisplayLink(CADisplayLinkPrivate) displayLinkWithDisplay:target:selector:] (0.10%)</title> | |
<rect x="1094.4199" height="15.0" fill="rgb(222,19,24)" y="4691.0" width="1.1800537" ry="2" rx="2"/> | |
<text font-size="12" x="1097.42" y="4701.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::RuntimeController::NotifyIdle(fml::TimeDelta) (0.10%)')"><title >flutter::RuntimeController::NotifyIdle(fml::TimeDelta) (0.10%)</title> | |
<rect fill="rgb(223,36,17)" rx="2" ry="2" width="1.1800537" height="15.0" y="4739.0" x="1096.7799"/> | |
<text x="1099.78" y="4749.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Dart_NotifyIdle (0.10%)')" onclick="zoom(this)" class="func_g"><title >Dart_NotifyIdle (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(235,198,53)" y="4723.0" ry="2" x="1096.7799" height="15.0" rx="2"/> | |
<text y="4733.50" font-family="Verdana" font-size="12" x="1099.78"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::IdleTimeHandler::NotifyIdle(long long) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::IdleTimeHandler::NotifyIdle(long long) (0.10%)</title> | |
<rect x="1096.7799" y="4707.0" fill="rgb(230,96,17)" ry="2" height="15.0" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" x="1099.78" y="4717.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('dart::Heap::NotifyIdle(long long) (0.10%)')"><title >dart::Heap::NotifyIdle(long long) (0.10%)</title> | |
<rect x="1096.7799" height="15.0" fill="rgb(207,42,28)" y="4691.0" width="1.1800537" ry="2" rx="2"/> | |
<text font-size="12" x="1099.78" y="4701.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >dart::Heap::CollectNewSpaceGarbage(dart::Thread*, dart::GCType, dart::GCReason) (0.10%)</title> | |
<rect ry="2" y="4675.0" height="15.0" fill="rgb(244,164,11)" x="1096.7799" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" y="4685.50" x="1099.78"></text> | |
</g> | |
<g onmouseover="s('dart::Scavenger::Scavenge(dart::Thread*, dart::GCType, dart::GCReason) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dart::Scavenger::Scavenge(dart::Thread*, dart::GCType, dart::GCReason) (0.10%)</title> | |
<rect ry="2" height="15.0" y="4659.0" width="1.1800537" x="1096.7799" fill="rgb(226,45,9)" rx="2"/> | |
<text font-family="Verdana" y="4669.50" font-size="12" x="1099.78"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('dart::Scavenger::ParallelScavenge(dart::SemiSpace*) (0.10%)')" onmouseout="c()"><title >dart::Scavenger::ParallelScavenge(dart::SemiSpace*) (0.10%)</title> | |
<rect x="1096.7799" y="4643.0" height="15.0" rx="2" fill="rgb(213,228,34)" ry="2" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" y="4653.50" x="1099.78"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (0.10%)')" class="func_g" onclick="zoom(this)"><title >dart::SafepointHandler::RunTasks(dart::IntrusiveDList<dart::SafepointTask, 1>*) (0.10%)</title> | |
<rect fill="rgb(212,88,4)" y="4627.0" width="1.1800537" rx="2" x="1096.7799" height="15.0" ry="2"/> | |
<text y="4637.50" x="1099.78" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::ParallelScavengerTask::RunEnteredIsolateGroup() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::ParallelScavengerTask::RunEnteredIsolateGroup() (0.10%)</title> | |
<rect y="4611.0" rx="2" x="1096.7799" width="1.1800537" height="15.0" fill="rgb(221,186,47)" ry="2"/> | |
<text y="4621.50" x="1099.78" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::ScavengerVisitorBase<true>::ProcessSurvivors() (0.10%)')"><title >dart::ScavengerVisitorBase<true>::ProcessSurvivors() (0.10%)</title> | |
<rect height="15.0" rx="2" ry="2" width="1.1800537" x="1096.7799" y="4595.0" fill="rgb(245,91,44)"/> | |
<text font-size="12" y="4605.50" font-family="Verdana" x="1099.78"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dart::ScavengerVisitorBase<true>::ProcessPromotedList() (0.10%)')"><title >dart::ScavengerVisitorBase<true>::ProcessPromotedList() (0.10%)</title> | |
<rect ry="2" fill="rgb(246,154,2)" y="4579.0" rx="2" height="15.0" x="1096.7799" width="1.1800537"/> | |
<text font-family="Verdana" y="4589.50" font-size="12" x="1099.78"></text> | |
</g> | |
<g onmouseout="c()" 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.50%)')" class="func_g" 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.50%)</title> | |
<rect height="15.0" rx="2" x="1099.1399" y="4755.0" fill="rgb(215,40,54)" ry="2" width="5.9000244"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="4765.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_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.50%)')"><title >std::_fl::__function::__func<tonic::DartMessageHandler::OnMessage(tonic::DartState*)::$_0, std::_fl::allocator<tonic::DartMessageHandler::OnMessage(tonic::DartState*)::$_0>, void ()>::operator()() (0.50%)</title> | |
<rect width="5.9000244" fill="rgb(239,196,43)" y="4739.0" ry="2" x="1099.1399" height="15.0" rx="2"/> | |
<text x="1102.14" y="4749.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('tonic::DartMessageHandler::OnHandleMessage(tonic::DartState*) (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >tonic::DartMessageHandler::OnHandleMessage(tonic::DartState*) (0.50%)</title> | |
<rect x="1099.1399" y="4723.0" fill="rgb(235,120,47)" ry="2" height="15.0" rx="2" width="5.9000244"/> | |
<text y="4733.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('Dart_HandleMessage (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >Dart_HandleMessage (0.50%)</title> | |
<rect x="1099.1399" height="15.0" fill="rgb(222,164,40)" y="4707.0" width="5.9000244" ry="2" rx="2"/> | |
<text font-family="Verdana" x="1102.14" y="4717.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dart::MessageHandler::HandleNextMessage() (0.50%)')" onclick="zoom(this)"><title >dart::MessageHandler::HandleNextMessage() (0.50%)</title> | |
<rect x="1099.1399" y="4691.0" height="15.0" rx="2" fill="rgb(236,181,49)" ry="2" width="5.9000244"/> | |
<text font-size="12" x="1102.14" y="4701.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool) (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool) (0.50%)</title> | |
<rect ry="2" height="15.0" y="4675.0" width="5.9000244" x="1099.1399" fill="rgb(215,106,9)" rx="2"/> | |
<text y="4685.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('dart::IsolateMessageHandler::HandleMessage(std::_fl::unique_ptr<dart::Message, std::_fl::default_delete<dart::Message>>) (0.50%)')" onmouseout="c()"><title >dart::IsolateMessageHandler::HandleMessage(std::_fl::unique_ptr<dart::Message, std::_fl::default_delete<dart::Message>>) (0.50%)</title> | |
<rect height="15.0" rx="2" ry="2" width="5.9000244" x="1099.1399" y="4659.0" fill="rgb(230,58,4)"/> | |
<text font-family="Verdana" font-size="12" y="4669.50" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::DartLibraryCalls::HandleMessage(long long, dart::Instance const&) (0.50%)')" class="func_g" onclick="zoom(this)"><title >dart::DartLibraryCalls::HandleMessage(long long, dart::Instance const&) (0.50%)</title> | |
<rect height="15.0" ry="2" rx="2" y="4643.0" fill="rgb(251,32,37)" x="1099.1399" width="5.9000244"/> | |
<text y="4653.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.50%)</title> | |
<rect ry="2" x="1099.1399" height="15.0" rx="2" y="4627.0" width="5.9000244" fill="rgb(246,170,52)"/> | |
<text y="4637.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('stub InvokeDartCode (0.50%)')"><title >stub InvokeDartCode (0.50%)</title> | |
<rect width="5.9000244" ry="2" y="4611.0" rx="2" fill="rgb(214,76,32)" x="1099.1399" height="15.0"/> | |
<text font-size="12" y="4621.50" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RawReceivePort._handleMessage (0.50%)')"><title >RawReceivePort._handleMessage (0.50%)</title> | |
<rect width="5.9000244" rx="2" y="4595.0" height="15.0" x="1099.1399" fill="rgb(235,140,38)" ry="2"/> | |
<text font-size="12" x="1102.14" y="4605.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Closure.call (#2) (0.50%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >Closure.call (#2) (0.50%)</title> | |
<rect ry="2" height="15.0" x="1099.1399" rx="2" fill="rgb(227,10,30)" width="5.9000244" y="4579.0"/> | |
<text font-size="12" y="4589.50" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('Timer._handleMessage (0.50%)')"><title >Timer._handleMessage (0.50%)</title> | |
<rect x="1099.1399" rx="2" ry="2" width="5.9000244" height="15.0" y="4563.0" fill="rgb(244,34,45)"/> | |
<text x="1102.14" y="4573.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('Timer._handleMessage (#2) (0.50%)')" onmouseout="c()"><title >Timer._handleMessage (#2) (0.50%)</title> | |
<rect fill="rgb(205,146,18)" ry="2" rx="2" x="1099.1399" width="5.9000244" height="15.0" y="4547.0"/> | |
<text font-family="Verdana" font-size="12" x="1102.14" y="4557.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Timer._runTimers (0.50%)')"><title >Timer._runTimers (0.50%)</title> | |
<rect rx="2" x="1099.1399" height="15.0" ry="2" width="5.9000244" fill="rgb(211,229,40)" y="4531.0"/> | |
<text font-family="Verdana" y="4541.50" x="1102.14" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Timer._createTimer.<anonymous closure> (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Timer._createTimer.<anonymous closure> (0.50%)</title> | |
<rect height="15.0" rx="2" y="4515.0" x="1099.1399" fill="rgb(213,80,9)" width="5.9000244" ry="2"/> | |
<text y="4525.50" x="1102.14" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('PlatformDispatcher.scheduleWarmUpFrame.<anonymous closure> (0.50%)')" onclick="zoom(this)" class="func_g"><title >PlatformDispatcher.scheduleWarmUpFrame.<anonymous closure> (0.50%)</title> | |
<rect fill="rgb(237,225,29)" ry="2" x="1099.1399" y="4499.0" rx="2" height="15.0" width="5.9000244"/> | |
<text x="1102.14" font-family="Verdana" y="4509.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('SchedulerBinding.scheduleWarmUpFrame.<anonymous closure> (#2) (0.50%)')" onmouseout="c()"><title >SchedulerBinding.scheduleWarmUpFrame.<anonymous closure> (#2) (0.50%)</title> | |
<rect height="15.0" fill="rgb(250,64,52)" rx="2" ry="2" width="5.9000244" x="1099.1399" y="4483.0"/> | |
<text y="4493.50" font-size="12" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('SchedulerBinding.handleDrawFrame (0.50%)')" onclick="zoom(this)" class="func_g"><title >SchedulerBinding.handleDrawFrame (0.50%)</title> | |
<rect ry="2" width="5.9000244" y="4467.0" height="15.0" fill="rgb(217,48,13)" rx="2" x="1099.1399"/> | |
<text y="4477.50" font-size="12" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('SchedulerBinding._invokeFrameCallback (0.50%)')" onclick="zoom(this)"><title >SchedulerBinding._invokeFrameCallback (0.50%)</title> | |
<rect x="1099.1399" rx="2" y="4451.0" height="15.0" width="5.9000244" ry="2" fill="rgb(207,171,20)"/> | |
<text font-size="12" x="1102.14" y="4461.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RendererBinding._handlePersistentFrameCallback (0.50%)')" onmouseout="c()"><title >RendererBinding._handlePersistentFrameCallback (0.50%)</title> | |
<rect width="5.9000244" fill="rgb(222,159,12)" ry="2" height="15.0" y="4435.0" x="1099.1399" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1102.14" y="4445.50"></text> | |
</g> | |
<g onmouseover="s('RendererBinding._handlePersistentFrameCallback (#2) (0.50%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RendererBinding._handlePersistentFrameCallback (#2) (0.50%)</title> | |
<rect fill="rgb(244,148,35)" width="5.9000244" height="15.0" x="1099.1399" ry="2" y="4419.0" rx="2"/> | |
<text x="1102.14" y="4429.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WidgetsBinding.drawFrame (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >WidgetsBinding.drawFrame (0.50%)</title> | |
<rect width="5.9000244" fill="rgb(207,107,11)" y="4403.0" x="1099.1399" ry="2" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="1102.14" y="4413.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RendererBinding.drawFrame (0.50%)')" onclick="zoom(this)"><title >RendererBinding.drawFrame (0.50%)</title> | |
<rect fill="rgb(250,148,55)" height="15.0" x="1099.1399" y="4387.0" width="5.9000244" rx="2" ry="2"/> | |
<text font-family="Verdana" x="1102.14" y="4397.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('PipelineOwner.flushLayout (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >PipelineOwner.flushLayout (0.40%)</title> | |
<rect fill="rgb(212,166,50)" ry="2" width="4.7199707" x="1099.1399" height="15.0" y="4371.0" rx="2"/> | |
<text x="1102.14" y="4381.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('PipelineOwner.flushLayout (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >PipelineOwner.flushLayout (0.40%)</title> | |
<rect x="1099.1399" height="15.0" y="4355.0" fill="rgb(220,229,8)" width="4.7199707" rx="2" ry="2"/> | |
<text x="1102.14" font-size="12" y="4365.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject._layoutWithoutResize (0.40%)')" onclick="zoom(this)"><title >RenderObject._layoutWithoutResize (0.40%)</title> | |
<rect y="4339.0" width="4.7199707" rx="2" fill="rgb(234,53,32)" ry="2" height="15.0" x="1099.1399"/> | |
<text font-family="Verdana" x="1102.14" font-size="12" y="4349.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderView.performLayout (0.40%)')" onmouseout="c()"><title >RenderView.performLayout (0.40%)</title> | |
<rect rx="2" height="15.0" ry="2" y="4323.0" width="4.7199707" x="1099.1399" fill="rgb(205,130,12)"/> | |
<text font-size="12" font-family="Verdana" y="4333.50" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.40%)')" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.40%)</title> | |
<rect rx="2" width="4.7199707" height="15.0" ry="2" x="1099.1399" y="4307.0" fill="rgb(222,102,40)"/> | |
<text font-size="12" x="1102.14" y="4317.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect fill="rgb(220,81,31)" width="4.7199707" height="15.0" rx="2" ry="2" x="1099.1399" y="4291.0"/> | |
<text font-family="Verdana" font-size="12" y="4301.50" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.40%)')" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.40%)</title> | |
<rect x="1099.1399" height="15.0" y="4275.0" ry="2" fill="rgb(224,16,53)" width="4.7199707" rx="2"/> | |
<text y="4285.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect y="4259.0" width="4.7199707" x="1099.1399" height="15.0" ry="2" fill="rgb(233,17,19)" rx="2"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="4269.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect width="4.7199707" ry="2" rx="2" y="4243.0" height="15.0" x="1099.1399" fill="rgb(209,41,23)"/> | |
<text x="1102.14" font-size="12" font-family="Verdana" y="4253.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect y="4227.0" fill="rgb(226,67,40)" height="15.0" width="4.7199707" x="1099.1399" rx="2" ry="2"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="4237.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.40%)')"><title >RenderObject.layout (0.40%)</title> | |
<rect height="15.0" rx="2" y="4211.0" width="4.7199707" ry="2" x="1099.1399" fill="rgb(226,147,55)"/> | |
<text y="4221.50" font-size="12" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect height="15.0" ry="2" width="4.7199707" x="1099.1399" y="4195.0" fill="rgb(230,72,34)" rx="2"/> | |
<text x="1102.14" font-size="12" y="4205.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.40%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.40%)</title> | |
<rect ry="2" height="15.0" fill="rgb(221,207,21)" y="4179.0" width="4.7199707" rx="2" x="1099.1399"/> | |
<text y="4189.50" font-family="Verdana" x="1102.14" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect width="4.7199707" y="4163.0" x="1099.1399" height="15.0" rx="2" ry="2" fill="rgb(226,122,40)"/> | |
<text x="1102.14" y="4173.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.40%)')" onclick="zoom(this)"><title >RenderObject.layout (0.40%)</title> | |
<rect rx="2" x="1099.1399" y="4147.0" width="4.7199707" height="15.0" fill="rgb(244,95,50)" ry="2"/> | |
<text font-size="12" x="1102.14" y="4157.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect x="1099.1399" y="4131.0" width="4.7199707" rx="2" fill="rgb(206,121,35)" height="15.0" ry="2"/> | |
<text y="4141.50" font-size="12" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.40%)</title> | |
<rect fill="rgb(253,202,10)" ry="2" x="1099.1399" width="4.7199707" y="4115.0" rx="2" height="15.0"/> | |
<text font-size="12" y="4125.50" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect height="15.0" fill="rgb(221,171,45)" y="4099.0" x="1099.1399" ry="2" width="4.7199707" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="4109.50" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.40%)')" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.40%)</title> | |
<rect rx="2" fill="rgb(226,81,18)" x="1099.1399" y="4083.0" width="4.7199707" ry="2" height="15.0"/> | |
<text x="1102.14" font-size="12" font-family="Verdana" y="4093.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" class="func_g" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect rx="2" y="4067.0" width="4.7199707" ry="2" height="15.0" fill="rgb(247,105,10)" x="1099.1399"/> | |
<text x="1102.14" y="4077.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect fill="rgb(206,147,45)" height="15.0" x="1099.1399" width="4.7199707" y="4051.0" ry="2" rx="2"/> | |
<text y="4061.50" x="1102.14" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect fill="rgb(241,165,45)" width="4.7199707" rx="2" x="1099.1399" height="15.0" y="4035.0" ry="2"/> | |
<text font-family="Verdana" y="4045.50" font-size="12" x="1102.14"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.40%)</title> | |
<rect x="1099.1399" fill="rgb(244,127,15)" width="4.7199707" rx="2" height="15.0" ry="2" y="4019.0"/> | |
<text y="4029.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect fill="rgb(208,86,38)" height="15.0" rx="2" x="1099.1399" y="4003.0" width="4.7199707" ry="2"/> | |
<text x="1102.14" font-size="12" y="4013.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.40%)')" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect fill="rgb(254,115,32)" x="1099.1399" width="4.7199707" y="3987.0" ry="2" height="15.0" rx="2"/> | |
<text font-size="12" y="3997.50" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderTheater.performLayout (0.40%)')" class="func_g" onmouseout="c()"><title >RenderTheater.performLayout (0.40%)</title> | |
<rect ry="2" y="3971.0" width="4.7199707" height="15.0" fill="rgb(228,122,37)" x="1099.1399" rx="2"/> | |
<text y="3981.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderTheaterMixin.layoutChild (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderTheaterMixin.layoutChild (0.40%)</title> | |
<rect rx="2" fill="rgb(221,193,19)" ry="2" y="3955.0" x="1099.1399" width="4.7199707" height="15.0"/> | |
<text font-size="12" y="3965.50" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.40%)')" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect ry="2" fill="rgb(222,122,34)" y="3939.0" width="4.7199707" x="1099.1399" height="15.0" rx="2"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="3949.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect y="3923.0" rx="2" height="15.0" x="1099.1399" fill="rgb(235,101,39)" width="4.7199707" ry="2"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="3933.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.40%)')" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect rx="2" y="3907.0" ry="2" fill="rgb(255,81,2)" x="1099.1399" height="15.0" width="4.7199707"/> | |
<text font-size="12" font-family="Verdana" y="3917.50" x="1102.14"></text> | |
</g> | |
<g onmouseover="s('RenderOffstage.performLayout (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderOffstage.performLayout (0.40%)</title> | |
<rect rx="2" y="3891.0" fill="rgb(214,212,19)" ry="2" x="1099.1399" height="15.0" width="4.7199707"/> | |
<text y="3901.50" font-family="Verdana" x="1102.14" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect y="3875.0" width="4.7199707" rx="2" ry="2" x="1099.1399" fill="rgb(222,182,40)" height="15.0"/> | |
<text font-family="Verdana" y="3885.50" x="1102.14" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.40%)')"><title >RenderObject.layout (0.40%)</title> | |
<rect width="4.7199707" height="15.0" rx="2" y="3859.0" ry="2" fill="rgb(247,35,12)" x="1099.1399"/> | |
<text x="1102.14" font-size="12" font-family="Verdana" y="3869.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect y="3843.0" rx="2" height="15.0" ry="2" x="1099.1399" width="4.7199707" fill="rgb(230,16,31)"/> | |
<text x="1102.14" y="3853.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect rx="2" ry="2" height="15.0" x="1099.1399" fill="rgb(252,112,11)" y="3827.0" width="4.7199707"/> | |
<text font-family="Verdana" x="1102.14" y="3837.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect fill="rgb(217,228,55)" rx="2" width="4.7199707" height="15.0" ry="2" x="1099.1399" y="3811.0"/> | |
<text font-family="Verdana" y="3821.50" font-size="12" x="1102.14"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.40%)</title> | |
<rect x="1099.1399" rx="2" fill="rgb(218,130,21)" width="4.7199707" height="15.0" y="3795.0" ry="2"/> | |
<text font-family="Verdana" y="3805.50" x="1102.14" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect height="15.0" fill="rgb(227,141,5)" rx="2" y="3779.0" width="4.7199707" ry="2" x="1099.1399"/> | |
<text font-family="Verdana" font-size="12" x="1102.14" y="3789.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.40%)</title> | |
<rect y="3763.0" rx="2" fill="rgb(232,198,25)" ry="2" height="15.0" x="1099.1399" width="4.7199707"/> | |
<text x="1102.14" y="3773.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect height="15.0" y="3747.0" x="1099.1399" fill="rgb(227,149,50)" width="4.7199707" ry="2" rx="2"/> | |
<text y="3757.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.40%)')" class="func_g"><title >RenderObject.layout (0.40%)</title> | |
<rect height="15.0" fill="rgb(213,70,36)" rx="2" x="1099.1399" y="3731.0" width="4.7199707" ry="2"/> | |
<text font-family="Verdana" x="1102.14" font-size="12" y="3741.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect y="3715.0" height="15.0" ry="2" x="1099.1399" rx="2" width="4.7199707" fill="rgb(210,159,1)"/> | |
<text font-size="12" font-family="Verdana" x="1102.14" y="3725.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.40%)</title> | |
<rect y="3699.0" x="1099.1399" height="15.0" ry="2" fill="rgb(244,57,5)" width="4.7199707" rx="2"/> | |
<text x="1102.14" font-family="Verdana" y="3709.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderStack.performLayout (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderStack.performLayout (0.40%)</title> | |
<rect fill="rgb(255,96,3)" x="1099.1399" y="3683.0" rx="2" width="4.7199707" ry="2" height="15.0"/> | |
<text x="1102.14" y="3693.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderStack._computeSize (0.40%)')" onclick="zoom(this)"><title >RenderStack._computeSize (0.40%)</title> | |
<rect height="15.0" rx="2" x="1099.1399" fill="rgb(239,219,25)" ry="2" y="3667.0" width="4.7199707"/> | |
<text font-family="Verdana" font-size="12" y="3677.50" x="1102.14"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ChildLayoutHelper.layoutChild (#2) (0.40%)')" class="func_g" onmouseout="c()"><title >ChildLayoutHelper.layoutChild (#2) (0.40%)</title> | |
<rect x="1099.1399" fill="rgb(209,100,1)" y="3651.0" rx="2" ry="2" width="4.7199707" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="3661.50" x="1102.14"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ChildLayoutHelper.layoutChild (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >ChildLayoutHelper.layoutChild (0.40%)</title> | |
<rect fill="rgb(211,8,40)" width="4.7199707" ry="2" height="15.0" x="1099.1399" rx="2" y="3635.0"/> | |
<text font-size="12" x="1102.14" y="3645.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect x="1099.1399" ry="2" width="4.7199707" height="15.0" fill="rgb(248,4,29)" rx="2" y="3619.0"/> | |
<text x="1102.14" y="3629.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect rx="2" height="15.0" ry="2" x="1099.1399" y="3603.0" width="4.7199707" fill="rgb(245,81,16)"/> | |
<text x="1102.14" font-size="12" y="3613.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.40%)')" class="func_g"><title >RenderObject.layout (0.40%)</title> | |
<rect height="15.0" fill="rgb(234,39,46)" ry="2" x="1099.1399" rx="2" width="4.7199707" y="3587.0"/> | |
<text y="3597.50" font-size="12" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" class="func_g" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect width="4.7199707" height="15.0" ry="2" fill="rgb(229,9,49)" rx="2" x="1099.1399" y="3571.0"/> | |
<text x="1102.14" font-family="Verdana" font-size="12" y="3581.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.40%)</title> | |
<rect height="15.0" width="4.7199707" x="1099.1399" ry="2" y="3555.0" rx="2" fill="rgb(225,86,35)"/> | |
<text font-family="Verdana" x="1102.14" y="3565.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect fill="rgb(229,166,45)" rx="2" ry="2" y="3539.0" height="15.0" x="1099.1399" width="4.7199707"/> | |
<text font-family="Verdana" font-size="12" x="1102.14" y="3549.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.40%)</title> | |
<rect height="15.0" width="4.7199707" x="1099.1399" y="3523.0" fill="rgb(230,151,20)" rx="2" ry="2"/> | |
<text font-family="Verdana" y="3533.50" x="1102.14" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderCustomClip.performLayout (0.40%)')" onclick="zoom(this)" class="func_g"><title >RenderCustomClip.performLayout (0.40%)</title> | |
<rect x="1099.1399" width="4.7199707" rx="2" ry="2" height="15.0" fill="rgb(252,134,46)" y="3507.0"/> | |
<text x="1102.14" font-family="Verdana" font-size="12" y="3517.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect rx="2" y="3491.0" width="4.7199707" height="15.0" ry="2" x="1099.1399" fill="rgb(218,121,29)"/> | |
<text font-family="Verdana" x="1102.14" y="3501.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.40%)')"><title >RenderObject.layout (0.40%)</title> | |
<rect rx="2" width="4.7199707" height="15.0" ry="2" y="3475.0" x="1099.1399" fill="rgb(219,41,44)"/> | |
<text x="1102.14" font-size="12" font-family="Verdana" y="3485.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.40%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.40%)</title> | |
<rect height="15.0" rx="2" x="1099.1399" fill="rgb(246,148,46)" y="3459.0" ry="2" width="4.7199707"/> | |
<text font-size="12" y="3469.50" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.40%)')" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.40%)</title> | |
<rect y="3443.0" width="4.7199707" height="15.0" x="1099.1399" ry="2" fill="rgb(220,114,12)" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1102.14" y="3453.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderCustomMultiChildLayoutBox.performLayout (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderCustomMultiChildLayoutBox.performLayout (0.40%)</title> | |
<rect height="15.0" y="3427.0" x="1099.1399" rx="2" ry="2" width="4.7199707" fill="rgb(222,79,13)"/> | |
<text y="3437.50" x="1102.14" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('MultiChildLayoutDelegate._callPerformLayout (0.40%)')" onclick="zoom(this)"><title >MultiChildLayoutDelegate._callPerformLayout (0.40%)</title> | |
<rect width="4.7199707" x="1099.1399" rx="2" height="15.0" y="3411.0" fill="rgb(245,134,17)" ry="2"/> | |
<text x="1102.14" font-family="Verdana" y="3421.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('ScaffoldLayout.performLayout (0.40%)')" onclick="zoom(this)"><title >ScaffoldLayout.performLayout (0.40%)</title> | |
<rect fill="rgb(237,74,2)" height="15.0" ry="2" x="1099.1399" y="3395.0" rx="2" width="4.7199707"/> | |
<text font-size="12" font-family="Verdana" y="3405.50" x="1102.14"></text> | |
</g> | |
<g onmouseover="s('MultiChildLayoutDelegate.layoutChild (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >MultiChildLayoutDelegate.layoutChild (0.40%)</title> | |
<rect y="3379.0" width="4.7199707" x="1099.1399" rx="2" height="15.0" fill="rgb(243,222,15)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1102.14" y="3389.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.40%)')"><title >RenderObject.layout (0.40%)</title> | |
<rect x="1099.1399" width="4.7199707" rx="2" y="3363.0" ry="2" fill="rgb(221,163,7)" height="15.0"/> | |
<text x="1102.14" font-family="Verdana" y="3373.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect ry="2" height="15.0" y="3347.0" fill="rgb(234,207,31)" x="1099.1399" rx="2" width="2.3599854"/> | |
<text x="1102.14" font-size="12" font-family="Verdana" y="3357.50"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" rx="2" x="1099.1399" width="2.3599854" ry="2" y="3331.0" fill="rgb(216,152,27)"/> | |
<text x="1102.14" y="3341.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect rx="2" ry="2" width="2.3599854" x="1099.1399" y="3315.0" height="15.0" fill="rgb(222,52,5)"/> | |
<text y="3325.50" font-size="12" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect y="3299.0" width="2.3599854" fill="rgb(213,71,39)" ry="2" x="1099.1399" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1102.14" y="3309.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect x="1099.1399" y="3283.0" fill="rgb(216,177,16)" height="15.0" ry="2" width="2.3599854" rx="2"/> | |
<text x="1102.14" font-size="12" y="3293.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect y="3267.0" height="15.0" ry="2" fill="rgb(230,130,12)" rx="2" x="1099.1399" width="2.3599854"/> | |
<text y="3277.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect ry="2" x="1099.1399" fill="rgb(213,173,39)" height="15.0" width="2.3599854" rx="2" y="3251.0"/> | |
<text y="3261.50" font-size="12" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderObject.layout (0.20%)</title> | |
<rect fill="rgb(209,192,49)" width="2.3599854" rx="2" ry="2" x="1099.1399" height="15.0" y="3235.0"/> | |
<text x="1102.14" y="3245.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect rx="2" ry="2" x="1099.1399" width="2.3599854" height="15.0" y="3219.0" fill="rgb(213,143,0)"/> | |
<text y="3229.50" font-family="Verdana" font-size="12" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderObject.layout (0.20%)')" onclick="zoom(this)" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect x="1099.1399" height="15.0" y="3203.0" ry="2" width="2.3599854" fill="rgb(218,222,4)" rx="2"/> | |
<text y="3213.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.20%)')"><title >RenderProxyBoxMixin.performLayout (0.20%)</title> | |
<rect height="15.0" y="3187.0" x="1099.1399" width="2.3599854" rx="2" fill="rgb(206,144,24)" ry="2"/> | |
<text x="1102.14" font-family="Verdana" font-size="12" y="3197.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect height="15.0" width="2.3599854" rx="2" fill="rgb(212,22,20)" x="1099.1399" y="3171.0" ry="2"/> | |
<text x="1102.14" y="3181.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderViewport.performLayout (0.20%)')" onclick="zoom(this)"><title >RenderViewport.performLayout (0.20%)</title> | |
<rect rx="2" height="15.0" fill="rgb(227,16,35)" y="3155.0" ry="2" x="1099.1399" width="2.3599854"/> | |
<text y="3165.50" font-size="12" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderViewport._attemptLayout (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderViewport._attemptLayout (0.20%)</title> | |
<rect y="3139.0" height="15.0" rx="2" x="1099.1399" width="2.3599854" fill="rgb(233,2,14)" ry="2"/> | |
<text font-size="12" x="1102.14" y="3149.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderViewportBase.layoutChildSequence (0.20%)')"><title >RenderViewportBase.layoutChildSequence (0.20%)</title> | |
<rect fill="rgb(249,20,23)" x="1099.1399" rx="2" y="3123.0" height="15.0" ry="2" width="2.3599854"/> | |
<text font-size="12" y="3133.50" x="1102.14" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderObject.layout (0.20%)</title> | |
<rect fill="rgb(243,50,3)" x="1099.1399" width="2.3599854" height="15.0" y="3107.0" rx="2" ry="2"/> | |
<text y="3117.50" font-family="Verdana" font-size="12" x="1102.14"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderSliverPadding.performLayout (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderSliverPadding.performLayout (0.20%)</title> | |
<rect x="1099.1399" height="15.0" y="3091.0" rx="2" width="2.3599854" fill="rgb(224,87,10)" ry="2"/> | |
<text x="1102.14" font-size="12" font-family="Verdana" y="3101.50"></text> | |
</g> | |
<g onmouseover="s('RenderSliverEdgeInsetsPadding.performLayout (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >RenderSliverEdgeInsetsPadding.performLayout (0.20%)</title> | |
<rect height="15.0" x="1099.1399" fill="rgb(236,14,27)" width="2.3599854" ry="2" y="3075.0" rx="2"/> | |
<text y="3085.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderObject.layout (0.20%)')"><title >RenderObject.layout (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="3059.0" fill="rgb(229,128,33)" rx="2" height="15.0" x="1099.1399"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="3069.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderSliverList.performLayout (0.20%)')" onmouseout="c()" class="func_g"><title >RenderSliverList.performLayout (0.20%)</title> | |
<rect rx="2" y="3043.0" width="2.3599854" x="1099.1399" height="15.0" fill="rgb(242,15,11)" ry="2"/> | |
<text y="3053.50" font-family="Verdana" font-size="12" x="1102.14"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderSliverList.performLayout.advance (0.10%)')"><title >RenderSliverList.performLayout.advance (0.10%)</title> | |
<rect y="3027.0" fill="rgb(234,214,11)" width="1.1800537" height="15.0" x="1099.1399" ry="2" rx="2"/> | |
<text font-size="12" y="3037.50" font-family="Verdana" x="1102.14"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('RenderSliverMultiBoxAdaptor.insertAndLayoutChild (0.10%)')"><title >RenderSliverMultiBoxAdaptor.insertAndLayoutChild (0.10%)</title> | |
<rect fill="rgb(218,84,16)" ry="2" rx="2" x="1099.1399" y="3011.0" width="1.1800537" height="15.0"/> | |
<text y="3021.50" x="1102.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('RenderConstrainedBox.performLayout (0.10%)')"><title >RenderConstrainedBox.performLayout (0.10%)</title> | |
<rect x="1101.4999" height="15.0" y="3347.0" ry="2" width="1.1800537" fill="rgb(206,23,38)" rx="2"/> | |
<text x="1104.50" y="3357.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" class="func_g"><title >RenderObject.layout (0.10%)</title> | |
<rect fill="rgb(243,139,52)" x="1101.4999" rx="2" y="3331.0" height="15.0" ry="2" width="1.1800537"/> | |
<text font-size="12" y="3341.50" font-family="Verdana" x="1104.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect y="3315.0" fill="rgb(232,31,50)" width="1.1800537" height="15.0" x="1101.4999" ry="2" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1104.50" y="3325.50"></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(205,141,34)" ry="2" rx="2" x="1101.4999" y="3299.0" width="1.1800537" height="15.0"/> | |
<text y="3309.50" x="1104.50" 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" x="1101.4999" width="1.1800537" ry="2" fill="rgb(227,229,27)" y="3283.0" height="15.0"/> | |
<text y="3293.50" font-size="12" font-family="Verdana" x="1104.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 height="15.0" rx="2" x="1101.4999" width="1.1800537" ry="2" y="3267.0" fill="rgb(223,137,2)"/> | |
<text x="1104.50" y="3277.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderCustomClip.performLayout (0.10%)')" onclick="zoom(this)" class="func_g"><title >RenderCustomClip.performLayout (0.10%)</title> | |
<rect height="15.0" width="1.1800537" rx="2" fill="rgb(214,12,14)" x="1101.4999" y="3251.0" ry="2"/> | |
<text x="1104.50" y="3261.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 ry="2" rx="2" width="1.1800537" y="3235.0" height="15.0" fill="rgb(231,27,48)" x="1101.4999"/> | |
<text font-family="Verdana" x="1104.50" y="3245.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect fill="rgb(227,129,2)" y="3219.0" rx="2" ry="2" width="1.1800537" height="15.0" x="1101.4999"/> | |
<text y="3229.50" font-size="12" x="1104.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect x="1101.4999" y="3203.0" height="15.0" rx="2" fill="rgb(228,81,50)" width="1.1800537" ry="2"/> | |
<text x="1104.50" font-size="12" y="3213.50" 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 rx="2" height="15.0" fill="rgb(233,159,51)" ry="2" x="1101.4999" y="3187.0" width="1.1800537"/> | |
<text y="3197.50" font-size="12" font-family="Verdana" x="1104.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)" class="func_g"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" x="1101.4999" height="15.0" y="3171.0" fill="rgb(233,68,42)" ry="2" width="1.1800537"/> | |
<text x="1104.50" font-family="Verdana" font-size="12" y="3181.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 ry="2" y="3155.0" width="1.1800537" x="1101.4999" rx="2" fill="rgb(224,72,44)" height="15.0"/> | |
<text y="3165.50" font-family="Verdana" x="1104.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderPositionedBox.performLayout (0.10%)')" onclick="zoom(this)"><title >RenderPositionedBox.performLayout (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(218,126,40)" height="15.0" rx="2" ry="2" y="3139.0" x="1101.4999"/> | |
<text font-size="12" x="1104.50" y="3149.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect rx="2" x="1101.4999" fill="rgb(245,141,55)" ry="2" width="1.1800537" y="3123.0" height="15.0"/> | |
<text y="3133.50" font-size="12" x="1104.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderPadding.performLayout (0.10%)')" class="func_g" onclick="zoom(this)"><title >RenderPadding.performLayout (0.10%)</title> | |
<rect x="1101.4999" ry="2" fill="rgb(224,57,21)" rx="2" width="1.1800537" y="3107.0" height="15.0"/> | |
<text font-size="12" x="1104.50" font-family="Verdana" y="3117.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderObject.layout (0.10%)')" class="func_g" onmouseout="c()"><title >RenderObject.layout (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" fill="rgb(228,76,39)" x="1101.4999" y="3091.0" width="1.1800537"/> | |
<text font-family="Verdana" x="1104.50" font-size="12" y="3101.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderCustomClip.performLayout (0.10%)')"><title >RenderCustomClip.performLayout (0.10%)</title> | |
<rect x="1101.4999" ry="2" fill="rgb(243,28,22)" rx="2" y="3075.0" width="1.1800537" height="15.0"/> | |
<text y="3085.50" font-size="12" font-family="Verdana" x="1104.50"></text> | |
</g> | |
<g onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect rx="2" ry="2" height="15.0" x="1101.4999" fill="rgb(211,35,15)" y="3059.0" width="1.1800537"/> | |
<text x="1104.50" y="3069.50" font-size="12" 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 height="15.0" ry="2" y="3043.0" fill="rgb(231,123,8)" rx="2" x="1101.4999" width="1.1800537"/> | |
<text y="3053.50" x="1104.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('RenderCustomSingleChildLayoutBox.performLayout (0.10%)')" onmouseout="c()" class="func_g"><title >RenderCustomSingleChildLayoutBox.performLayout (0.10%)</title> | |
<rect x="1101.4999" height="15.0" rx="2" fill="rgb(206,140,34)" ry="2" width="1.1800537" y="3027.0"/> | |
<text font-family="Verdana" font-size="12" x="1104.50" y="3037.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect ry="2" width="1.1800537" height="15.0" rx="2" x="1101.4999" fill="rgb(250,161,30)" y="3011.0"/> | |
<text font-family="Verdana" y="3021.50" font-size="12" x="1104.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderCustomMultiChildLayoutBox.performLayout (0.10%)')" onclick="zoom(this)" class="func_g"><title >RenderCustomMultiChildLayoutBox.performLayout (0.10%)</title> | |
<rect x="1101.4999" width="1.1800537" height="15.0" ry="2" fill="rgb(244,160,13)" y="2995.0" rx="2"/> | |
<text y="3005.50" font-size="12" font-family="Verdana" x="1104.50"></text> | |
</g> | |
<g onmouseover="s('MultiChildLayoutDelegate._callPerformLayout (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >MultiChildLayoutDelegate._callPerformLayout (0.10%)</title> | |
<rect y="2979.0" x="1101.4999" height="15.0" ry="2" fill="rgb(209,105,21)" rx="2" width="1.1800537"/> | |
<text x="1104.50" font-size="12" y="2989.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('ToolbarLayout.performLayout (0.10%)')" onmouseout="c()"><title >ToolbarLayout.performLayout (0.10%)</title> | |
<rect height="15.0" y="2963.0" rx="2" x="1101.4999" width="1.1800537" fill="rgb(219,68,24)" ry="2"/> | |
<text font-family="Verdana" x="1104.50" font-size="12" y="2973.50"></text> | |
</g> | |
<g onmouseover="s('MultiChildLayoutDelegate.layoutChild (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >MultiChildLayoutDelegate.layoutChild (0.10%)</title> | |
<rect width="1.1800537" rx="2" x="1101.4999" height="15.0" y="2947.0" fill="rgb(205,27,14)" ry="2"/> | |
<text font-family="Verdana" y="2957.50" x="1104.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.10%)')" onclick="zoom(this)"><title >RenderObject.layout (0.10%)</title> | |
<rect ry="2" y="2931.0" rx="2" width="1.1800537" height="15.0" x="1101.4999" fill="rgb(206,8,2)"/> | |
<text font-family="Verdana" y="2941.50" x="1104.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RenderProxyBoxMixin.performLayout (0.10%)')" onclick="zoom(this)"><title >RenderProxyBoxMixin.performLayout (0.10%)</title> | |
<rect x="1101.4999" ry="2" height="15.0" fill="rgb(226,189,42)" y="2915.0" width="1.1800537" rx="2"/> | |
<text font-family="Verdana" y="2925.50" x="1104.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('RenderObject.layout (0.10%)')"><title >RenderObject.layout (0.10%)</title> | |
<rect rx="2" x="1101.4999" width="1.1800537" fill="rgb(209,222,39)" ry="2" height="15.0" y="2899.0"/> | |
<text x="1104.50" font-family="Verdana" y="2909.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('RenderAppBarTitleBox.performLayout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >RenderAppBarTitleBox.performLayout (0.10%)</title> | |
<rect x="1101.4999" fill="rgb(216,116,50)" y="2883.0" rx="2" height="15.0" ry="2" width="1.1800537"/> | |
<text x="1104.50" font-family="Verdana" y="2893.50" 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 y="2867.0" width="1.1800537" rx="2" ry="2" x="1101.4999" height="15.0" fill="rgb(212,70,28)"/> | |
<text x="1104.50" y="2877.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('RenderParagraph.performLayout (0.10%)')" class="func_g" onclick="zoom(this)"><title >RenderParagraph.performLayout (0.10%)</title> | |
<rect y="2851.0" rx="2" height="15.0" ry="2" x="1101.4999" fill="rgb(219,132,40)" width="1.1800537"/> | |
<text x="1104.50" font-size="12" font-family="Verdana" y="2861.50"></text> | |
</g> | |
<g onmouseover="s('RenderParagraph._layoutTextWithConstraints (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >RenderParagraph._layoutTextWithConstraints (0.10%)</title> | |
<rect rx="2" height="15.0" width="1.1800537" ry="2" y="2835.0" x="1101.4999" fill="rgb(206,89,26)"/> | |
<text x="1104.50" font-size="12" y="2845.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_NativeParagraph._layout (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_NativeParagraph._layout (0.10%)</title> | |
<rect fill="rgb(208,184,41)" rx="2" ry="2" y="2819.0" width="1.1800537" height="15.0" x="1101.4999"/> | |
<text font-family="Verdana" x="1104.50" font-size="12" y="2829.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('NativeParagraph.__layout$Method$FfiNative (0.10%)')" class="func_g" onmouseout="c()"><title >NativeParagraph.__layout$Method$FfiNative (0.10%)</title> | |
<rect ry="2" x="1101.4999" fill="rgb(252,142,26)" height="15.0" rx="2" y="2803.0" width="1.1800537"/> | |
<text font-size="12" y="2813.50" font-family="Verdana" x="1104.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('skia::textlayout::ParagraphImpl::layout(float) (0.10%)')"><title >skia::textlayout::ParagraphImpl::layout(float) (0.10%)</title> | |
<rect y="2787.0" rx="2" ry="2" x="1101.4999" width="1.1800537" height="15.0" fill="rgb(229,125,51)"/> | |
<text font-family="Verdana" y="2797.50" x="1104.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('skia::textlayout::ParagraphImpl::shapeTextIntoEndlessLine() (0.10%)')"><title >skia::textlayout::ParagraphImpl::shapeTextIntoEndlessLine() (0.10%)</title> | |
<rect x="1101.4999" width="1.1800537" rx="2" height="15.0" ry="2" fill="rgb(215,164,51)" y="2771.0"/> | |
<text x="1104.50" font-family="Verdana" y="2781.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('skia::textlayout::OneLineShaper::shape() (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >skia::textlayout::OneLineShaper::shape() (0.10%)</title> | |
<rect rx="2" width="1.1800537" x="1101.4999" height="15.0" y="2755.0" ry="2" fill="rgb(245,137,42)"/> | |
<text y="2765.50" font-size="12" font-family="Verdana" x="1104.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('skia::textlayout::OneLineShaper::iterateThroughShapingRegions(std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)> const&) (0.10%)')" onclick="zoom(this)"><title >skia::textlayout::OneLineShaper::iterateThroughShapingRegions(std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)> const&) (0.10%)</title> | |
<rect fill="rgb(224,152,20)" width="1.1800537" rx="2" ry="2" y="2739.0" x="1101.4999" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1104.50" y="2749.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const (0.10%)')" class="func_g"><title >std::_fl::function<float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const (0.10%)</title> | |
<rect ry="2" x="1101.4999" width="1.1800537" y="2723.0" height="15.0" rx="2" fill="rgb(208,179,48)"/> | |
<text font-size="12" font-family="Verdana" x="1104.50" y="2733.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0, std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0>, float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>&&, SkSpan<skia::textlayout::Block>&&, float&, unsigned long&&, unsigned char&&) (0.10%)')"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0, std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0>, float (skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char)>::operator()(skia::textlayout::SkRange<unsigned long>&&, SkSpan<skia::textlayout::Block>&&, float&, unsigned long&&, unsigned char&&) (0.10%)</title> | |
<rect rx="2" width="1.1800537" y="2707.0" x="1101.4999" height="15.0" fill="rgb(242,132,13)" ry="2"/> | |
<text y="2717.50" font-family="Verdana" x="1104.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('skia::textlayout::OneLineShaper::iterateThroughFontStyles(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, std::_fl::function<void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)> const&) (0.10%)')"><title >skia::textlayout::OneLineShaper::iterateThroughFontStyles(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, std::_fl::function<void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)> const&) (0.10%)</title> | |
<rect fill="rgb(232,155,54)" width="1.1800537" height="15.0" ry="2" y="2691.0" rx="2" x="1101.4999"/> | |
<text font-size="12" x="1104.50" y="2701.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>, void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>::operator()(skia::textlayout::Block&&, skia_private::TArray<SkShaper::Feature, true>&&) (0.10%)')"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>, void (skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)>::operator()(skia::textlayout::Block&&, skia_private::TArray<SkShaper::Feature, true>&&) (0.10%)</title> | |
<rect height="15.0" width="1.1800537" fill="rgb(232,177,53)" rx="2" x="1101.4999" y="2675.0" ry="2"/> | |
<text y="2685.50" font-size="12" font-family="Verdana" x="1104.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('skia::textlayout::OneLineShaper::matchResolvedFonts(skia::textlayout::TextStyle const&, std::_fl::function<skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)> const&) (0.10%)')" onclick="zoom(this)"><title >skia::textlayout::OneLineShaper::matchResolvedFonts(skia::textlayout::TextStyle const&, std::_fl::function<skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)> const&) (0.10%)</title> | |
<rect rx="2" ry="2" y="2659.0" width="1.1800537" height="15.0" x="1101.4999" fill="rgb(222,134,44)"/> | |
<text font-family="Verdana" y="2669.50" font-size="12" x="1104.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>)>, skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)>::operator()(sk_sp<SkTypeface>&&) (0.10%)')" onmouseout="c()"><title >std::_fl::__function::__func<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>), std::_fl::allocator<skia::textlayout::OneLineShaper::shape()::$_0::operator()(skia::textlayout::SkRange<unsigned long>, SkSpan<skia::textlayout::Block>, float&, unsigned long, unsigned char) const::'lambda'(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>)::operator()(skia::textlayout::Block, skia_private::TArray<SkShaper::Feature, true>) const::'lambda'(sk_sp<SkTypeface>)>, skia::textlayout::OneLineShaper::Resolved (sk_sp<SkTypeface>)>::operator()(sk_sp<SkTypeface>&&) (0.10%)</title> | |
<rect rx="2" x="1101.4999" ry="2" y="2643.0" width="1.1800537" height="15.0" fill="rgb(224,83,19)"/> | |
<text font-size="12" font-family="Verdana" x="1104.50" y="2653.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('(anonymous namespace)::ShaperHarfBuzz::shape(char const*, unsigned long, SkShaper::FontRunIterator&, SkShaper::BiDiRunIterator&, SkShaper::ScriptRunIterator&, SkShaper::LanguageRunIterator&, SkShaper::Feature const*, unsigned long, float, SkShaper::RunHandler*) const (0.10%)')" class="func_g"><title >(anonymous namespace)::ShaperHarfBuzz::shape(char const*, unsigned long, SkShaper::FontRunIterator&, SkShaper::BiDiRunIterator&, SkShaper::ScriptRunIterator&, SkShaper::LanguageRunIterator&, SkShaper::Feature const*, unsigned long, float, SkShaper::RunHandler*) const (0.10%)</title> | |
<rect fill="rgb(214,144,27)" x="1101.4999" y="2627.0" ry="2" width="1.1800537" height="15.0" rx="2"/> | |
<text y="2637.50" font-family="Verdana" font-size="12" x="1104.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('fml::MessageLoopTaskQueues::GetNextTaskToRun(fml::TaskQueueId, fml::TimePoint) (0.10%)')" class="func_g" onclick="zoom(this)"><title >fml::MessageLoopTaskQueues::GetNextTaskToRun(fml::TaskQueueId, fml::TimePoint) (0.10%)</title> | |
<rect height="15.0" rx="2" x="1105.0399" y="4755.0" fill="rgb(211,17,31)" ry="2" width="1.1800537"/> | |
<text font-size="12" x="1108.04" font-family="Verdana" y="4765.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('fml::MessageLoopTaskQueues::WakeUpUnlocked(fml::TaskQueueId, fml::TimePoint) const (0.10%)')"><title >fml::MessageLoopTaskQueues::WakeUpUnlocked(fml::TaskQueueId, fml::TimePoint) const (0.10%)</title> | |
<rect fill="rgb(227,18,20)" ry="2" x="1105.0399" y="4739.0" rx="2" height="15.0" width="1.1800537"/> | |
<text x="1108.04" y="4749.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CFRunLoopTimerSetNextFireDate (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >CFRunLoopTimerSetNextFireDate (0.10%)</title> | |
<rect fill="rgb(234,38,25)" rx="2" ry="2" width="1.1800537" height="15.0" y="4723.0" x="1105.0399"/> | |
<text y="4733.50" x="1108.04" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('tonic::DartMicrotaskQueue::RunMicrotasks() (0.10%)')" class="func_g" onclick="zoom(this)"><title >tonic::DartMicrotaskQueue::RunMicrotasks() (0.10%)</title> | |
<rect height="15.0" rx="2" x="1106.22" y="4755.0" fill="rgb(253,102,31)" ry="2" width="1.1800537"/> | |
<text font-size="12" x="1109.22" font-family="Verdana" y="4765.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('__CFRunLoopDoSources0 (4.20%)')" class="func_g" onclick="zoom(this)"><title >__CFRunLoopDoSources0 (4.20%)</title> | |
<rect height="15.0" rx="2" x="1112.12" y="4835.0" fill="rgb(215,172,39)" ry="2" width="49.559937"/> | |
<text font-size="12" x="1115.12" font-family="Verdana" y="4845.50">__CF..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__CFRunLoopDoSource0 (4.20%)')"><title >__CFRunLoopDoSource0 (4.20%)</title> | |
<rect fill="rgb(242,192,45)" ry="2" x="1112.12" y="4819.0" rx="2" height="15.0" width="49.559937"/> | |
<text x="1115.12" y="4829.50" font-family="Verdana" font-size="12">__CF..</text> | |
</g> | |
<g class="func_g" onmouseover="s('__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ (4.20%)')" onmouseout="c()" onclick="zoom(this)"><title >__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ (4.20%)</title> | |
<rect fill="rgb(211,21,10)" rx="2" ry="2" width="49.559937" height="15.0" y="4803.0" x="1112.12"/> | |
<text y="4813.50" x="1115.12" font-size="12" font-family="Verdana">__CF..</text> | |
</g> | |
<g class="func_g" onmouseover="s('runloopSourceCallback (2.10%)')" onmouseout="c()" onclick="zoom(this)"><title >runloopSourceCallback (2.10%)</title> | |
<rect width="24.78003" fill="rgb(209,49,42)" y="4787.0" ry="2" x="1112.12" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="1115.12" y="4797.50" font-size="12">r..</text> | |
</g> | |
<g onmouseover="s('schedulerStepScheduledMainSection (2.00%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >schedulerStepScheduledMainSection (2.00%)</title> | |
<rect x="1112.12" rx="2" ry="2" width="23.599976" height="15.0" y="4771.0" fill="rgb(231,3,55)"/> | |
<text x="1115.12" y="4781.50" font-size="12" font-family="Verdana">s..</text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIUpdateSequenceRun (2.00%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIUpdateSequenceRun (2.00%)</title> | |
<rect height="15.0" rx="2" y="4755.0" x="1112.12" fill="rgb(222,185,21)" width="23.599976" ry="2"/> | |
<text font-size="12" x="1115.12" y="4765.50" font-family="Verdana">_..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('updateCycleEntry (1.20%)')" onmouseout="c()"><title >updateCycleEntry (1.20%)</title> | |
<rect ry="2" width="14.160034" y="4739.0" height="15.0" fill="rgb(224,216,47)" rx="2" x="1112.12"/> | |
<text x="1115.12" y="4749.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('__processEventQueue (1.20%)')"><title >__processEventQueue (1.20%)</title> | |
<rect x="1112.12" y="4723.0" fill="rgb(224,219,36)" ry="2" height="15.0" rx="2" width="14.160034"/> | |
<text y="4733.50" x="1115.12" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__dispatchPreprocessedEventFromEventQueue (1.10%)')" onmouseout="c()" onclick="zoom(this)"><title >__dispatchPreprocessedEventFromEventQueue (1.10%)</title> | |
<rect height="15.0" ry="2" rx="2" y="4707.0" fill="rgb(224,191,18)" x="1112.12" width="12.97998"/> | |
<text y="4717.50" x="1115.12" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIApplication sendEvent:] (0.60%)')" onmouseout="c()"><title >-[UIApplication sendEvent:] (0.60%)</title> | |
<rect fill="rgb(207,5,55)" rx="2" x="1112.12" height="15.0" y="4691.0" ry="2" width="7.079956"/> | |
<text font-size="12" y="4701.50" font-family="Verdana" x="1115.12"></text> | |
</g> | |
<g onmouseover="s('-[UIWindow sendEvent:] (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIWindow sendEvent:] (0.50%)</title> | |
<rect x="1112.12" height="15.0" fill="rgb(255,216,2)" y="4675.0" width="5.9000244" ry="2" rx="2"/> | |
<text font-size="12" x="1115.12" font-family="Verdana" y="4685.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIWindow _sendTouchesForEvent:] (0.40%)')" onclick="zoom(this)"><title >-[UIWindow _sendTouchesForEvent:] (0.40%)</title> | |
<rect height="15.0" x="1112.12" rx="2" width="4.7199707" fill="rgb(242,150,44)" ry="2" y="4659.0"/> | |
<text font-size="12" x="1115.12" y="4669.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('forwardTouchMethod (0.30%)')" onclick="zoom(this)" class="func_g"><title >forwardTouchMethod (0.30%)</title> | |
<rect x="1112.12" rx="2" y="4643.0" fill="rgb(214,122,7)" height="15.0" ry="2" width="3.540039"/> | |
<text font-size="12" x="1115.12" y="4653.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[FlutterViewController dispatchTouches:pointerDataChangeOverride:event:] (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[FlutterViewController dispatchTouches:pointerDataChangeOverride:event:] (0.30%)</title> | |
<rect height="15.0" x="1112.12" width="3.540039" rx="2" y="4627.0" fill="rgb(215,230,34)" ry="2"/> | |
<text x="1115.12" y="4637.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[FlutterEngine dispatchPointerDataPacket:] (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >-[FlutterEngine dispatchPointerDataPacket:] (0.30%)</title> | |
<rect height="15.0" ry="2" width="3.540039" x="1112.12" y="4611.0" fill="rgb(234,134,35)" rx="2"/> | |
<text y="4621.50" font-family="Verdana" font-size="12" x="1115.12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::PlatformView::DispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (0.30%)')" onclick="zoom(this)" class="func_g"><title >flutter::PlatformView::DispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (0.30%)</title> | |
<rect width="3.540039" ry="2" rx="2" y="4595.0" height="15.0" x="1112.12" fill="rgb(208,68,16)"/> | |
<text y="4605.50" font-family="Verdana" x="1115.12" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (0.30%)')"><title >flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (0.30%)</title> | |
<rect x="1112.12" y="4579.0" height="15.0" rx="2" fill="rgb(236,0,1)" ry="2" width="3.540039"/> | |
<text x="1115.12" font-size="12" font-family="Verdana" y="4589.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>)::$_0>>, void ()>::operator()() (0.30%)')"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>)::$_0>>, void ()>::operator()() (0.30%)</title> | |
<rect x="1112.12" width="3.540039" rx="2" ry="2" fill="rgb(239,188,10)" y="4563.0" height="15.0"/> | |
<text font-family="Verdana" x="1115.12" y="4573.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::Engine::DispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>, unsigned long long) (0.30%)')"><title >flutter::Engine::DispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>, unsigned long long) (0.30%)</title> | |
<rect x="1112.12" width="3.540039" height="15.0" ry="2" fill="rgb(228,84,2)" y="4547.0" rx="2"/> | |
<text font-family="Verdana" x="1115.12" y="4557.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::SmoothPointerDataDispatcher::DispatchPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>, unsigned long long) (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >flutter::SmoothPointerDataDispatcher::DispatchPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>, unsigned long long) (0.30%)</title> | |
<rect x="1112.12" height="15.0" rx="2" fill="rgb(248,202,35)" ry="2" width="3.540039" y="4531.0"/> | |
<text y="4541.50" font-size="12" x="1115.12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DefaultPointerDataDispatcher::DispatchPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>, unsigned long long) (0.20%)')"><title >flutter::DefaultPointerDataDispatcher::DispatchPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>, unsigned long long) (0.20%)</title> | |
<rect ry="2" fill="rgb(250,138,51)" y="4515.0" rx="2" height="15.0" x="1112.12" width="2.3599854"/> | |
<text font-family="Verdana" y="4525.50" font-size="12" x="1115.12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::RuntimeController::DispatchPointerDataPacket(flutter::PointerDataPacket const&) (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::RuntimeController::DispatchPointerDataPacket(flutter::PointerDataPacket const&) (0.20%)</title> | |
<rect x="1112.12" height="15.0" fill="rgb(235,41,35)" rx="2" ry="2" width="2.3599854" y="4499.0"/> | |
<text font-size="12" x="1115.12" y="4509.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::PlatformConfiguration::DispatchPointerDataPacket(flutter::PointerDataPacket const&) (0.20%)')" onmouseout="c()"><title >flutter::PlatformConfiguration::DispatchPointerDataPacket(flutter::PointerDataPacket const&) (0.20%)</title> | |
<rect height="15.0" ry="2" y="4483.0" x="1112.12" width="2.3599854" rx="2" fill="rgb(232,88,50)"/> | |
<text font-family="Verdana" font-size="12" x="1115.12" y="4493.50"></text> | |
</g> | |
<g onmouseover="s('tonic::DartInvoke(_Dart_Handle*, std::initializer_list<_Dart_Handle*>) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >tonic::DartInvoke(_Dart_Handle*, std::initializer_list<_Dart_Handle*>) (0.10%)</title> | |
<rect y="4467.0" rx="2" ry="2" fill="rgb(237,222,18)" x="1112.12" height="15.0" width="1.1800537"/> | |
<text y="4477.50" x="1115.12" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('Dart_InvokeClosure (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Dart_InvokeClosure (0.10%)</title> | |
<rect height="15.0" x="1112.12" fill="rgb(252,15,18)" ry="2" y="4451.0" width="1.1800537" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="4461.50" x="1115.12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&) (0.10%)')" class="func_g" onclick="zoom(this)"><title >dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&) (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="4435.0" height="15.0" rx="2" fill="rgb(216,114,38)" x="1112.12"/> | |
<text x="1115.12" font-family="Verdana" y="4445.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) (0.10%)</title> | |
<rect x="1112.12" height="15.0" rx="2" fill="rgb(232,73,40)" y="4419.0" ry="2" width="1.1800537"/> | |
<text font-family="Verdana" y="4429.50" x="1115.12" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('stub InvokeDartCode (0.10%)')"><title >stub InvokeDartCode (0.10%)</title> | |
<rect fill="rgb(227,74,12)" ry="2" width="1.1800537" x="1112.12" height="15.0" y="4403.0" rx="2"/> | |
<text x="1115.12" font-family="Verdana" y="4413.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dispatchPointerDataPacket (#2) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dispatchPointerDataPacket (#2) (0.10%)</title> | |
<rect rx="2" width="1.1800537" height="15.0" ry="2" x="1112.12" y="4387.0" fill="rgb(209,218,33)"/> | |
<text x="1115.12" font-family="Verdana" font-size="12" y="4397.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dispatchPointerDataPacket (0.10%)')" onmouseout="c()"><title >dispatchPointerDataPacket (0.10%)</title> | |
<rect fill="rgb(247,218,19)" width="1.1800537" height="15.0" rx="2" ry="2" x="1112.12" y="4371.0"/> | |
<text font-size="12" x="1115.12" y="4381.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('PlatformDispatcher._dispatchPointerDataPacket (0.10%)')" class="func_g" onmouseout="c()"><title >PlatformDispatcher._dispatchPointerDataPacket (0.10%)</title> | |
<rect height="15.0" y="4355.0" fill="rgb(208,89,14)" ry="2" x="1112.12" width="1.1800537" rx="2"/> | |
<text font-family="Verdana" y="4365.50" x="1115.12" font-size="12"></text> | |
</g> | |
<g onmouseover="s('invoke1 (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >invoke1 (0.10%)</title> | |
<rect width="1.1800537" rx="2" ry="2" x="1112.12" y="4339.0" height="15.0" fill="rgb(212,189,2)"/> | |
<text font-size="12" y="4349.50" font-family="Verdana" x="1115.12"></text> | |
</g> | |
<g onmouseover="s('GestureBinding._handlePointerDataPacket (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >GestureBinding._handlePointerDataPacket (0.10%)</title> | |
<rect y="4323.0" ry="2" height="15.0" rx="2" x="1112.12" fill="rgb(243,78,48)" width="1.1800537"/> | |
<text x="1115.12" font-family="Verdana" font-size="12" y="4333.50"></text> | |
</g> | |
<g onmouseover="s('GestureBinding._handlePointerDataPacket (#2) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >GestureBinding._handlePointerDataPacket (#2) (0.10%)</title> | |
<rect fill="rgb(219,158,49)" ry="2" x="1112.12" width="1.1800537" y="4307.0" rx="2" height="15.0"/> | |
<text y="4317.50" x="1115.12" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('GestureBinding._flushPointerEventQueue (0.10%)')" class="func_g" onclick="zoom(this)"><title >GestureBinding._flushPointerEventQueue (0.10%)</title> | |
<rect height="15.0" fill="rgb(223,105,16)" rx="2" ry="2" width="1.1800537" y="4291.0" x="1112.12"/> | |
<text x="1115.12" font-size="12" y="4301.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('GestureBinding.handlePointerEvent (0.10%)')"><title >GestureBinding.handlePointerEvent (0.10%)</title> | |
<rect fill="rgb(210,25,39)" width="1.1800537" rx="2" x="1112.12" height="15.0" y="4275.0" ry="2"/> | |
<text x="1115.12" font-size="12" font-family="Verdana" y="4285.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('GestureBinding._handlePointerEventImmediately (0.10%)')"><title >GestureBinding._handlePointerEventImmediately (0.10%)</title> | |
<rect fill="rgb(230,56,10)" x="1112.12" width="1.1800537" y="4259.0" ry="2" height="15.0" rx="2"/> | |
<text x="1115.12" font-family="Verdana" font-size="12" y="4269.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('RendererBinding.dispatchEvent (0.10%)')" onclick="zoom(this)"><title >RendererBinding.dispatchEvent (0.10%)</title> | |
<rect ry="2" fill="rgb(237,110,47)" y="4243.0" width="1.1800537" x="1112.12" height="15.0" rx="2"/> | |
<text font-size="12" x="1115.12" y="4253.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('GestureBinding.dispatchEvent (0.10%)')"><title >GestureBinding.dispatchEvent (0.10%)</title> | |
<rect height="15.0" ry="2" y="4227.0" width="1.1800537" x="1112.12" fill="rgb(211,163,42)" rx="2"/> | |
<text y="4237.50" x="1115.12" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('GestureBinding.handleEvent (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >GestureBinding.handleEvent (0.10%)</title> | |
<rect rx="2" y="4211.0" fill="rgb(248,90,9)" ry="2" x="1112.12" height="15.0" width="1.1800537"/> | |
<text font-size="12" font-family="Verdana" y="4221.50" x="1115.12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIGestureEnvironment _updateForEvent:window:] (0.10%)')" class="func_g" onclick="zoom(this)"><title >-[UIGestureEnvironment _updateForEvent:window:] (0.10%)</title> | |
<rect x="1116.84" height="15.0" fill="rgb(224,174,27)" rx="2" ry="2" width="1.1800537" y="4659.0"/> | |
<text x="1119.84" font-family="Verdana" font-size="12" y="4669.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIGestureEnvironment _deliverEvent:toGestureRecognizers:usingBlock:] (0.10%)')" onmouseout="c()" class="func_g"><title >-[UIGestureEnvironment _deliverEvent:toGestureRecognizers:usingBlock:] (0.10%)</title> | |
<rect fill="rgb(212,138,32)" x="1116.84" y="4643.0" width="1.1800537" height="15.0" rx="2" ry="2"/> | |
<text x="1119.84" font-family="Verdana" font-size="12" y="4653.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIGestureEnvironmentUpdate (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIGestureEnvironmentUpdate (0.10%)</title> | |
<rect height="15.0" rx="2" y="4627.0" width="1.1800537" ry="2" x="1116.84" fill="rgb(220,223,31)"/> | |
<text y="4637.50" font-family="Verdana" font-size="12" x="1119.84"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_UIEventHIDEnumerateChildren (0.10%)')" class="func_g" onclick="zoom(this)"><title >_UIEventHIDEnumerateChildren (0.10%)</title> | |
<rect x="1119.2" height="15.0" fill="rgb(255,202,5)" rx="2" ry="2" width="1.1800537" y="4691.0"/> | |
<text x="1122.20" font-family="Verdana" font-size="12" y="4701.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.29 (0.10%)')"><title >____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.29 (0.10%)</title> | |
<rect fill="rgb(238,150,43)" x="1119.2" y="4675.0" width="1.1800537" height="15.0" rx="2" ry="2"/> | |
<text x="1122.20" font-family="Verdana" font-size="12" y="4685.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[_UIRemoteKeyboards peekApplicationEvent:] (0.10%)')" class="func_g" onclick="zoom(this)"><title >-[_UIRemoteKeyboards peekApplicationEvent:] (0.10%)</title> | |
<rect x="1120.38" height="15.0" fill="rgb(214,42,21)" rx="2" ry="2" width="1.1800537" y="4691.0"/> | |
<text x="1123.38" font-family="Verdana" font-size="12" y="4701.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_UIApplicationFlushCATransaction (0.60%)')" class="func_g" onclick="zoom(this)"><title >_UIApplicationFlushCATransaction (0.60%)</title> | |
<rect x="1126.28" height="15.0" fill="rgb(228,58,2)" rx="2" ry="2" width="7.079956" y="4739.0"/> | |
<text x="1129.28" font-family="Verdana" font-size="12" y="4749.50"></text> | |
</g> | |
<g onmouseover="s('CA::Transaction::flush_as_runloop_observer(bool) (0.50%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >CA::Transaction::flush_as_runloop_observer(bool) (0.50%)</title> | |
<rect fill="rgb(239,221,1)" x="1126.28" y="4723.0" width="5.9000244" height="15.0" rx="2" ry="2"/> | |
<text x="1129.28" font-family="Verdana" font-size="12" y="4733.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CA::Transaction::commit() (0.50%)')" class="func_g" onclick="zoom(this)"><title >CA::Transaction::commit() (0.50%)</title> | |
<rect ry="2" width="5.9000244" y="4707.0" height="15.0" fill="rgb(232,207,2)" rx="2" x="1126.28"/> | |
<text y="4717.50" font-size="12" x="1129.28" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_os_signpost_emit_unreliably_with_name_impl (0.30%)')"><title >_os_signpost_emit_unreliably_with_name_impl (0.30%)</title> | |
<rect x="1126.28" y="4691.0" fill="rgb(241,114,13)" ry="2" height="15.0" rx="2" width="3.540039"/> | |
<text y="4701.50" x="1129.28" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__os_signpost_emit_impl (0.30%)')"><title >__os_signpost_emit_impl (0.30%)</title> | |
<rect height="15.0" ry="2" rx="2" y="4675.0" fill="rgb(249,143,26)" x="1126.28" width="3.540039"/> | |
<text font-family="Verdana" y="4685.50" font-size="12" x="1129.28"></text> | |
</g> | |
<g onmouseover="s('_os_log_impl_flatten_and_send (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_os_log_impl_flatten_and_send (0.30%)</title> | |
<rect fill="rgb(253,84,13)" rx="2" x="1126.28" height="15.0" y="4659.0" ry="2" width="3.540039"/> | |
<text font-family="Verdana" y="4669.50" x="1129.28" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl_stream (0.30%)')"><title >_os_log_impl_stream (0.30%)</title> | |
<rect height="15.0" rx="2" y="4643.0" width="3.540039" ry="2" x="1126.28" fill="rgb(245,94,55)"/> | |
<text font-size="12" font-family="Verdana" y="4653.50" x="1129.28"></text> | |
</g> | |
<g onmouseover="s('_os_activity_stream_reflect (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_os_activity_stream_reflect (0.20%)</title> | |
<rect x="1126.28" height="15.0" fill="rgb(219,129,51)" y="4627.0" width="2.3599854" ry="2" rx="2"/> | |
<text x="1129.28" y="4637.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('CA::Context::commit_transaction(CA::Transaction*, double, double*) (0.10%)')"><title >CA::Context::commit_transaction(CA::Transaction*, double, double*) (0.10%)</title> | |
<rect x="1129.8201" y="4691.0" fill="rgb(236,108,54)" ry="2" height="15.0" rx="2" width="1.1800537"/> | |
<text y="4701.50" x="1132.82" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CA::Display::DisplayLink::dispatch_deferred_display_links(unsigned int) (0.10%)')" class="func_g" onclick="zoom(this)"><title >CA::Display::DisplayLink::dispatch_deferred_display_links(unsigned int) (0.10%)</title> | |
<rect x="1133.36" height="15.0" fill="rgb(228,30,50)" rx="2" ry="2" width="1.1800537" y="4739.0"/> | |
<text x="1136.36" font-family="Verdana" font-size="12" y="4749.50"></text> | |
</g> | |
<g onmouseover="s('CA::Display::DisplayLink::dispatch_items(unsigned long long, unsigned long long, unsigned long long) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >CA::Display::DisplayLink::dispatch_items(unsigned long long, unsigned long long, unsigned long long) (0.10%)</title> | |
<rect fill="rgb(220,107,15)" x="1133.36" y="4723.0" width="1.1800537" height="15.0" rx="2" ry="2"/> | |
<text x="1136.36" font-family="Verdana" font-size="12" y="4733.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CA::Display::DisplayLinkItem::dispatch_(CA::SignPost::Interval<(CA::SignPost::CAEventCode)835322056>&) (0.10%)')" class="func_g" onclick="zoom(this)"><title >CA::Display::DisplayLinkItem::dispatch_(CA::SignPost::Interval<(CA::SignPost::CAEventCode)835322056>&) (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="4707.0" height="15.0" fill="rgb(206,104,36)" rx="2" x="1133.36"/> | |
<text y="4717.50" font-size="12" x="1136.36" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[FBSMainRunLoopSerialQueue _performNextFromRunLoopSource] (2.00%)')" class="func_g" onclick="zoom(this)"><title >-[FBSMainRunLoopSerialQueue _performNextFromRunLoopSource] (2.00%)</title> | |
<rect x="1136.9" height="15.0" fill="rgb(213,1,3)" rx="2" ry="2" width="23.599976" y="4787.0"/> | |
<text x="1139.90" font-family="Verdana" font-size="12" y="4797.50">-..</text> | |
</g> | |
<g class="func_g" onmouseover="s('-[FBSMainRunLoopSerialQueue _targetQueue_performNextIfPossible] (2.00%)')" onmouseout="c()" onclick="zoom(this)"><title >-[FBSMainRunLoopSerialQueue _targetQueue_performNextIfPossible] (2.00%)</title> | |
<rect fill="rgb(245,70,48)" x="1136.9" y="4771.0" width="23.599976" height="15.0" rx="2" ry="2"/> | |
<text font-family="Verdana" x="1139.90" y="4781.50" font-size="12">-..</text> | |
</g> | |
<g onmouseover="s('__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ (2.00%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ (2.00%)</title> | |
<rect width="23.599976" fill="rgb(243,114,12)" y="4755.0" ry="2" x="1136.9" height="15.0" rx="2"/> | |
<text x="1139.90" y="4765.50" font-size="12" font-family="Verdana">_..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_dispatch_block_invoke_direct (2.00%)')" onmouseout="c()" class="func_g"><title >_dispatch_block_invoke_direct (2.00%)</title> | |
<rect x="1136.9" rx="2" ry="2" width="23.599976" height="15.0" y="4739.0" fill="rgb(228,21,52)"/> | |
<text x="1139.90" font-family="Verdana" font-size="12" y="4749.50">_..</text> | |
</g> | |
<g onmouseover="s('_dispatch_client_callout (2.00%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >_dispatch_client_callout (2.00%)</title> | |
<rect height="15.0" rx="2" y="4723.0" x="1136.9" fill="rgb(230,165,41)" width="23.599976" ry="2"/> | |
<text font-family="Verdana" y="4733.50" font-size="12" x="1139.90">_..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke (2.00%)')" onmouseout="c()"><title >__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke (2.00%)</title> | |
<rect ry="2" width="23.599976" y="4707.0" height="15.0" fill="rgb(240,138,45)" rx="2" x="1136.9"/> | |
<text y="4717.50" x="1139.90" font-family="Verdana" font-size="12">_..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (2.00%)')"><title >-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (2.00%)</title> | |
<rect x="1136.9" y="4691.0" fill="rgb(228,184,23)" ry="2" height="15.0" rx="2" width="23.599976"/> | |
<text y="4701.50" x="1139.90" font-size="12" font-family="Verdana">-..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.108 (1.90%)')"><title >__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.108 (1.90%)</title> | |
<rect height="15.0" ry="2" rx="2" y="4675.0" fill="rgb(209,99,30)" x="1136.9" width="22.420044"/> | |
<text font-family="Verdana" y="4685.50" font-size="12" x="1139.90">_..</text> | |
</g> | |
<g onmouseover="s('-[FBSScene _callOutQueue_didCreateWithTransitionContext:completion:] (1.90%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[FBSScene _callOutQueue_didCreateWithTransitionContext:completion:] (1.90%)</title> | |
<rect fill="rgb(221,188,11)" rx="2" x="1136.9" height="15.0" y="4659.0" ry="2" width="22.420044"/> | |
<text font-family="Verdana" y="4669.50" x="1139.90" font-size="12">-..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] (1.90%)')"><title >-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] (1.90%)</title> | |
<rect height="15.0" rx="2" y="4643.0" width="22.420044" ry="2" x="1136.9" fill="rgb(242,165,34)"/> | |
<text font-size="12" font-family="Verdana" y="4653.50" x="1139.90">-..</text> | |
</g> | |
<g onmouseover="s('-[UIApplication workspace:didCreateScene:withTransitionContext:completion:] (1.90%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIApplication workspace:didCreateScene:withTransitionContext:completion:] (1.90%)</title> | |
<rect x="1136.9" height="15.0" fill="rgb(206,104,46)" y="4627.0" width="22.420044" ry="2" rx="2"/> | |
<text x="1139.90" y="4637.50" font-family="Verdana" font-size="12">-..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (1.80%)')"><title >-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (1.80%)</title> | |
<rect height="15.0" x="1136.9" rx="2" width="21.23999" fill="rgb(245,61,3)" ry="2" y="4611.0"/> | |
<text x="1139.90" font-size="12" font-family="Verdana" y="4621.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (1.80%)')" class="func_g" onclick="zoom(this)"><title >-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (1.80%)</title> | |
<rect x="1136.9" rx="2" y="4595.0" fill="rgb(217,56,38)" height="15.0" ry="2" width="21.23999"/> | |
<text font-family="Verdana" x="1139.90" y="4605.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226 (1.80%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226 (1.80%)</title> | |
<rect height="15.0" x="1136.9" width="21.23999" rx="2" y="4579.0" fill="rgb(218,172,26)" ry="2"/> | |
<text y="4589.50" x="1139.90" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (1.80%)')" onmouseout="c()" onclick="zoom(this)"><title >-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (1.80%)</title> | |
<rect y="4563.0" rx="2" ry="2" x="1136.9" width="21.23999" height="15.0" fill="rgb(208,102,2)"/> | |
<text x="1139.90" y="4573.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (1.80%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (1.80%)</title> | |
<rect height="15.0" ry="2" y="4547.0" width="21.23999" x="1136.9" fill="rgb(226,214,0)" rx="2"/> | |
<text y="4557.50" x="1139.90" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (1.80%)')"><title >+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (1.80%)</title> | |
<rect ry="2" fill="rgb(212,4,3)" y="4531.0" rx="2" height="15.0" x="1136.9" width="21.23999"/> | |
<text font-family="Verdana" y="4541.50" font-size="12" x="1139.90"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke (1.80%)')"><title >__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke (1.80%)</title> | |
<rect x="1136.9" height="15.0" fill="rgb(244,13,26)" ry="2" y="4515.0" width="21.23999" rx="2"/> | |
<text font-family="Verdana" x="1139.90" y="4525.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] (1.80%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] (1.80%)</title> | |
<rect x="1136.9" height="15.0" rx="2" fill="rgb(206,27,52)" y="4499.0" ry="2" width="21.23999"/> | |
<text x="1139.90" y="4509.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] (1.80%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] (1.80%)</title> | |
<rect rx="2" width="21.23999" ry="2" x="1136.9" y="4483.0" fill="rgb(245,6,22)" height="15.0"/> | |
<text font-family="Verdana" x="1139.90" font-size="12" y="4493.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] (1.80%)')" onclick="zoom(this)" onmouseout="c()"><title >-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] (1.80%)</title> | |
<rect width="21.23999" rx="2" ry="2" x="1136.9" y="4467.0" height="15.0" fill="rgb(215,13,53)"/> | |
<text x="1139.90" font-family="Verdana" y="4477.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke (1.80%)')" class="func_g" onclick="zoom(this)"><title >__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke (1.80%)</title> | |
<rect fill="rgb(248,169,12)" y="4451.0" x="1136.9" ry="2" width="21.23999" rx="2" height="15.0"/> | |
<text font-family="Verdana" y="4461.50" font-size="12" x="1139.90"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_UIScenePerformActionsWithLifecycleActionMask (1.80%)')" onclick="zoom(this)"><title >_UIScenePerformActionsWithLifecycleActionMask (1.80%)</title> | |
<rect fill="rgb(232,145,44)" x="1136.9" width="21.23999" y="4435.0" ry="2" height="15.0" rx="2"/> | |
<text font-size="12" y="4445.50" font-family="Verdana" x="1139.90"></text> | |
</g> | |
<g onmouseover="s('-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] (1.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] (1.80%)</title> | |
<rect x="1136.9" width="21.23999" y="4419.0" height="15.0" fill="rgb(214,45,44)" rx="2" ry="2"/> | |
<text font-family="Verdana" y="4429.50" x="1139.90" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[UIApplication _runWithMainScene:transitionContext:completion:] (1.80%)')" class="func_g"><title >-[UIApplication _runWithMainScene:transitionContext:completion:] (1.80%)</title> | |
<rect fill="rgb(230,78,10)" y="4403.0" rx="2" height="15.0" ry="2" x="1136.9" width="21.23999"/> | |
<text y="4413.50" x="1139.90" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIApplication _loadMainInterfaceFile] (0.80%)')" onmouseout="c()"><title >-[UIApplication _loadMainInterfaceFile] (0.80%)</title> | |
<rect height="15.0" x="1136.9" width="9.439941" rx="2" ry="2" fill="rgb(216,167,0)" y="4387.0"/> | |
<text font-size="12" y="4397.50" x="1139.90" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIApplication _loadMainStoryboardFileNamed:bundle:] (0.80%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIApplication _loadMainStoryboardFileNamed:bundle:] (0.80%)</title> | |
<rect fill="rgb(221,206,1)" rx="2" width="9.439941" height="15.0" ry="2" x="1136.9" y="4371.0"/> | |
<text x="1139.90" font-size="12" font-family="Verdana" y="4381.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIStoryboard _instantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.70%)')" class="func_g" onmouseout="c()"><title >-[UIStoryboard _instantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.70%)</title> | |
<rect height="15.0" fill="rgb(228,72,28)" rx="2" y="4355.0" width="8.26001" ry="2" x="1136.9"/> | |
<text font-size="12" y="4365.50" font-family="Verdana" x="1139.90"></text> | |
</g> | |
<g onmouseover="s('-[UIStoryboard __reallyInstantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.70%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIStoryboard __reallyInstantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.70%)</title> | |
<rect x="1136.9" height="15.0" fill="rgb(246,106,34)" y="4339.0" rx="2" width="8.26001" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1139.90" y="4349.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UINib instantiateWithOwner:options:] (0.70%)')" onclick="zoom(this)"><title >-[UINib instantiateWithOwner:options:] (0.70%)</title> | |
<rect ry="2" y="4323.0" fill="rgb(253,181,3)" width="8.26001" height="15.0" rx="2" x="1136.9"/> | |
<text font-family="Verdana" y="4333.50" font-size="12" x="1139.90"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[FlutterViewController awakeFromNib] (0.70%)')" onclick="zoom(this)" class="func_g"><title >-[FlutterViewController awakeFromNib] (0.70%)</title> | |
<rect y="4307.0" height="15.0" ry="2" x="1136.9" rx="2" width="8.26001" fill="rgb(215,22,35)"/> | |
<text font-family="Verdana" font-size="12" x="1139.90" y="4317.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[FlutterViewController sharedSetupWithProject:initialRoute:] (0.70%)')" onclick="zoom(this)"><title >-[FlutterViewController sharedSetupWithProject:initialRoute:] (0.70%)</title> | |
<rect ry="2" rx="2" width="8.26001" fill="rgb(254,87,41)" height="15.0" y="4291.0" x="1136.9"/> | |
<text font-family="Verdana" x="1139.90" font-size="12" y="4301.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[FlutterEngine createShell:libraryURI:initialRoute:] (0.30%)')" onmouseout="c()"><title >-[FlutterEngine createShell:libraryURI:initialRoute:] (0.30%)</title> | |
<rect x="1136.9" height="15.0" ry="2" fill="rgb(253,210,41)" rx="2" y="4275.0" width="3.540039"/> | |
<text x="1139.90" font-family="Verdana" font-size="12" y="4285.50"></text> | |
</g> | |
<g onmouseover="s('flutter::Shell::Create(flutter::PlatformData const&, flutter::TaskRunners const&, flutter::Settings, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, bool) (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::Shell::Create(flutter::PlatformData const&, flutter::TaskRunners const&, flutter::Settings, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, bool) (0.20%)</title> | |
<rect fill="rgb(219,225,48)" y="4259.0" x="1136.9" height="15.0" ry="2" width="2.3599854" rx="2"/> | |
<text x="1139.90" font-size="12" font-family="Verdana" y="4269.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::Shell::CreateWithSnapshot(flutter::PlatformData const&, flutter::TaskRunners const&, fml::RefPtr<fml::RasterThreadMerger> const&, std::_fl::shared_ptr<flutter::ShellIOManager> const&, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::Settings, flutter::DartVMRef, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool) (0.20%)')" class="func_g" onmouseout="c()"><title >flutter::Shell::CreateWithSnapshot(flutter::PlatformData const&, flutter::TaskRunners const&, fml::RefPtr<fml::RasterThreadMerger> const&, std::_fl::shared_ptr<flutter::ShellIOManager> const&, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::Settings, flutter::DartVMRef, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool) (0.20%)</title> | |
<rect x="1136.9" ry="2" width="2.3599854" height="15.0" fill="rgb(237,148,18)" rx="2" y="4243.0"/> | |
<text font-size="12" x="1139.90" font-family="Verdana" y="4253.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::CreateWithSnapshot(flutter::PlatformData const&, flutter::TaskRunners const&, fml::RefPtr<fml::RasterThreadMerger> const&, std::_fl::shared_ptr<flutter::ShellIOManager> const&, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::Settings, flutter::DartVMRef, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::CreateWithSnapshot(flutter::PlatformData const&, flutter::TaskRunners const&, fml::RefPtr<fml::RasterThreadMerger> const&, std::_fl::shared_ptr<flutter::ShellIOManager> const&, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::Settings, flutter::DartVMRef, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool)::$_0>>, void ()>::operator()() (0.20%)')" class="func_g"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::CreateWithSnapshot(flutter::PlatformData const&, flutter::TaskRunners const&, fml::RefPtr<fml::RasterThreadMerger> const&, std::_fl::shared_ptr<flutter::ShellIOManager> const&, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::Settings, flutter::DartVMRef, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::CreateWithSnapshot(flutter::PlatformData const&, flutter::TaskRunners const&, fml::RefPtr<fml::RasterThreadMerger> const&, std::_fl::shared_ptr<flutter::ShellIOManager> const&, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::Settings, flutter::DartVMRef, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool)::$_0>>, void ()>::operator()() (0.20%)</title> | |
<rect rx="2" height="15.0" ry="2" x="1136.9" y="4227.0" width="2.3599854" fill="rgb(247,22,12)"/> | |
<text x="1139.90" font-size="12" font-family="Verdana" y="4237.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::Shell::CreateShellOnPlatformThread(flutter::DartVMRef, fml::RefPtr<fml::RasterThreadMerger>, std::_fl::shared_ptr<flutter::ShellIOManager>, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::TaskRunners const&, flutter::PlatformData const&, flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool) (0.20%)')" onmouseout="c()" class="func_g"><title >flutter::Shell::CreateShellOnPlatformThread(flutter::DartVMRef, fml::RefPtr<fml::RasterThreadMerger>, std::_fl::shared_ptr<flutter::ShellIOManager>, std::_fl::shared_ptr<flutter::ResourceCacheLimitCalculator> const&, flutter::TaskRunners const&, flutter::PlatformData const&, flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const>, std::_fl::function<std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Rasterizer, std::_fl::default_delete<flutter::Rasterizer>> (flutter::Shell&)> const&, std::_fl::function<std::_fl::unique_ptr<flutter::Engine, std::_fl::default_delete<flutter::Engine>> (flutter::Engine::Delegate&, std::_fl::function<std::_fl::unique_ptr<flutter::PointerDataDispatcher, std::_fl::default_delete<flutter::PointerDataDispatcher>> (flutter::PointerDataDispatcher::Delegate&)> const&, flutter::DartVM&, fml::RefPtr<flutter::DartSnapshot const>, flutter::TaskRunners, flutter::PlatformData const&, flutter::Settings, std::_fl::unique_ptr<flutter::Animator, std::_fl::default_delete<flutter::Animator>>, fml::WeakPtr<flutter::IOManager>, fml::RefPtr<flutter::UnrefQueue<GrDirectContext>>, fml::TaskRunnerAffineWeakPtr<flutter::SnapshotDelegate>, std::_fl::shared_ptr<fml::SyncSwitch> const&, impeller::RuntimeStageBackend)> const&, bool) (0.20%)</title> | |
<rect rx="2" y="4211.0" fill="rgb(205,158,24)" height="15.0" ry="2" width="2.3599854" x="1136.9"/> | |
<text x="1139.90" font-size="12" y="4221.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__function::__func<-[FlutterEngine createShell:libraryURI:initialRoute:]::$_1, std::_fl::allocator<-[FlutterEngine createShell:libraryURI:initialRoute:]::$_1>, std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)>::operator()(flutter::Shell&) (0.10%)')" onclick="zoom(this)"><title >std::_fl::__function::__func<-[FlutterEngine createShell:libraryURI:initialRoute:]::$_1, std::_fl::allocator<-[FlutterEngine createShell:libraryURI:initialRoute:]::$_1>, std::_fl::unique_ptr<flutter::PlatformView, std::_fl::default_delete<flutter::PlatformView>> (flutter::Shell&)>::operator()(flutter::Shell&) (0.10%)</title> | |
<rect fill="rgb(246,90,9)" y="4195.0" ry="2" x="1136.9" height="15.0" width="1.1800537" rx="2"/> | |
<text y="4205.50" font-family="Verdana" x="1139.90" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::PlatformViewIOS::PlatformViewIOS(flutter::PlatformView::Delegate&, flutter::IOSRenderingAPI, std::_fl::shared_ptr<flutter::PlatformViewsController> const&, flutter::TaskRunners const&, std::_fl::shared_ptr<fml::ConcurrentTaskRunner> const&, std::_fl::shared_ptr<fml::SyncSwitch const> const&) (0.10%)')" onclick="zoom(this)" class="func_g"><title >flutter::PlatformViewIOS::PlatformViewIOS(flutter::PlatformView::Delegate&, flutter::IOSRenderingAPI, std::_fl::shared_ptr<flutter::PlatformViewsController> const&, flutter::TaskRunners const&, std::_fl::shared_ptr<fml::ConcurrentTaskRunner> const&, std::_fl::shared_ptr<fml::SyncSwitch const> const&) (0.10%)</title> | |
<rect height="15.0" ry="2" y="4179.0" width="1.1800537" rx="2" fill="rgb(210,3,16)" x="1136.9"/> | |
<text y="4189.50" font-family="Verdana" x="1139.90" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::IOSContext::Create(flutter::IOSRenderingAPI, flutter::IOSRenderingBackend, std::_fl::shared_ptr<fml::SyncSwitch const> const&) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >flutter::IOSContext::Create(flutter::IOSRenderingAPI, flutter::IOSRenderingBackend, std::_fl::shared_ptr<fml::SyncSwitch const> const&) (0.10%)</title> | |
<rect ry="2" width="1.1800537" rx="2" height="15.0" y="4163.0" fill="rgb(250,30,53)" x="1136.9"/> | |
<text x="1139.90" font-size="12" font-family="Verdana" y="4173.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::IOSContextMetalImpeller::IOSContextMetalImpeller(std::_fl::shared_ptr<fml::SyncSwitch const> const&) (0.10%)')" class="func_g" onmouseout="c()"><title >flutter::IOSContextMetalImpeller::IOSContextMetalImpeller(std::_fl::shared_ptr<fml::SyncSwitch const> const&) (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" fill="rgb(207,9,9)" x="1136.9" y="4147.0" width="1.1800537"/> | |
<text y="4157.50" font-family="Verdana" font-size="12" x="1139.90"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('std::_fl::shared_ptr<impeller::AiksContext> std::_fl::allocate_shared[abi:v15000]<impeller::AiksContext, std::_fl::allocator<impeller::AiksContext>, std::_fl::shared_ptr<impeller::ContextMTL>, std::_fl::shared_ptr<impeller::TypographerContext>, void>(std::_fl::allocator<impeller::AiksContext> const&, std::_fl::shared_ptr<impeller::ContextMTL>&&, std::_fl::shared_ptr<impeller::TypographerContext>&&) (0.10%)')" class="func_g" onmouseout="c()"><title >std::_fl::shared_ptr<impeller::AiksContext> std::_fl::allocate_shared[abi:v15000]<impeller::AiksContext, std::_fl::allocator<impeller::AiksContext>, std::_fl::shared_ptr<impeller::ContextMTL>, std::_fl::shared_ptr<impeller::TypographerContext>, void>(std::_fl::allocator<impeller::AiksContext> const&, std::_fl::shared_ptr<impeller::ContextMTL>&&, std::_fl::shared_ptr<impeller::TypographerContext>&&) (0.10%)</title> | |
<rect fill="rgb(247,217,53)" ry="2" height="15.0" width="1.1800537" x="1136.9" rx="2" y="4131.0"/> | |
<text y="4141.50" font-size="12" font-family="Verdana" x="1139.90"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__shared_ptr_emplace<impeller::AiksContext, std::_fl::allocator<impeller::AiksContext>>::__shared_ptr_emplace[abi:v15000]<std::_fl::shared_ptr<impeller::ContextMTL>, std::_fl::shared_ptr<impeller::TypographerContext>>(std::_fl::allocator<impeller::AiksContext>, std::_fl::shared_ptr<impeller::ContextMTL>&&, std::_fl::shared_ptr<impeller::TypographerContext>&&) (0.10%)')" onclick="zoom(this)"><title >std::_fl::__shared_ptr_emplace<impeller::AiksContext, std::_fl::allocator<impeller::AiksContext>>::__shared_ptr_emplace[abi:v15000]<std::_fl::shared_ptr<impeller::ContextMTL>, std::_fl::shared_ptr<impeller::TypographerContext>>(std::_fl::allocator<impeller::AiksContext>, std::_fl::shared_ptr<impeller::ContextMTL>&&, std::_fl::shared_ptr<impeller::TypographerContext>&&) (0.10%)</title> | |
<rect rx="2" x="1136.9" width="1.1800537" y="4115.0" height="15.0" ry="2" fill="rgb(246,161,41)"/> | |
<text y="4125.50" font-size="12" font-family="Verdana" x="1139.90"></text> | |
</g> | |
<g onmouseover="s('impeller::AiksContext::AiksContext(std::_fl::shared_ptr<impeller::Context>, std::_fl::shared_ptr<impeller::TypographerContext>, std::_fl::optional<std::_fl::shared_ptr<impeller::RenderTargetAllocator>>) (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >impeller::AiksContext::AiksContext(std::_fl::shared_ptr<impeller::Context>, std::_fl::shared_ptr<impeller::TypographerContext>, std::_fl::optional<std::_fl::shared_ptr<impeller::RenderTargetAllocator>>) (0.10%)</title> | |
<rect height="15.0" ry="2" width="1.1800537" x="1136.9" fill="rgb(214,183,25)" y="4099.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="1139.90" y="4109.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('std::_fl::__unique_if<impeller::ContentContext>::__unique_single std::_fl::make_unique[abi:v15000]<impeller::ContentContext, std::_fl::shared_ptr<impeller::Context>&, std::_fl::shared_ptr<impeller::TypographerContext>, std::_fl::shared_ptr<impeller::RenderTargetAllocator>>(std::_fl::shared_ptr<impeller::Context>&, std::_fl::shared_ptr<impeller::TypographerContext>&&, std::_fl::shared_ptr<impeller::RenderTargetAllocator>&&) (0.10%)')"><title >std::_fl::__unique_if<impeller::ContentContext>::__unique_single std::_fl::make_unique[abi:v15000]<impeller::ContentContext, std::_fl::shared_ptr<impeller::Context>&, std::_fl::shared_ptr<impeller::TypographerContext>, std::_fl::shared_ptr<impeller::RenderTargetAllocator>>(std::_fl::shared_ptr<impeller::Context>&, std::_fl::shared_ptr<impeller::TypographerContext>&&, std::_fl::shared_ptr<impeller::RenderTargetAllocator>&&) (0.10%)</title> | |
<rect width="1.1800537" rx="2" x="1136.9" height="15.0" y="4083.0" fill="rgb(225,161,39)" ry="2"/> | |
<text y="4093.50" x="1139.90" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('impeller::ContentContext::ContentContext(std::_fl::shared_ptr<impeller::Context>, std::_fl::shared_ptr<impeller::TypographerContext>, std::_fl::shared_ptr<impeller::RenderTargetAllocator>) (0.10%)')"><title >impeller::ContentContext::ContentContext(std::_fl::shared_ptr<impeller::Context>, std::_fl::shared_ptr<impeller::TypographerContext>, std::_fl::shared_ptr<impeller::RenderTargetAllocator>) (0.10%)</title> | |
<rect x="1136.9" ry="2" height="15.0" fill="rgb(222,197,23)" y="4067.0" width="1.1800537" rx="2"/> | |
<text font-family="Verdana" x="1139.90" y="4077.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[FlutterDartProject initWithPrecompiledDartBundle:] (0.10%)')" onmouseout="c()"><title >-[FlutterDartProject initWithPrecompiledDartBundle:] (0.10%)</title> | |
<rect fill="rgb(241,90,52)" ry="2" height="15.0" width="1.1800537" x="1140.4401" rx="2" y="4275.0"/> | |
<text x="1143.44" font-family="Verdana" font-size="12" y="4285.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('FLTDefaultSettingsForBundle(NSBundle*, NSProcessInfo*) (0.10%)')" class="func_g" onclick="zoom(this)"><title >FLTDefaultSettingsForBundle(NSBundle*, NSProcessInfo*) (0.10%)</title> | |
<rect fill="rgb(218,87,47)" y="4259.0" x="1140.4401" height="15.0" ry="2" width="1.1800537" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="4269.50" x="1143.44"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[FlutterViewController loadDefaultSplashScreenView] (0.10%)')" onclick="zoom(this)"><title >-[FlutterViewController loadDefaultSplashScreenView] (0.10%)</title> | |
<rect fill="rgb(252,172,30)" ry="2" height="15.0" width="1.1800537" x="1141.62" rx="2" y="4275.0"/> | |
<text font-family="Verdana" font-size="12" y="4285.50" x="1144.62"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] (1.00%)')"><title >-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] (1.00%)</title> | |
<rect ry="2" rx="2" width="11.800049" fill="rgb(224,206,32)" height="15.0" y="4387.0" x="1146.34"/> | |
<text font-family="Verdana" x="1149.34" font-size="12" y="4397.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIWindow _mainQueue_makeKeyAndVisible] (1.00%)')" onmouseout="c()"><title >-[UIWindow _mainQueue_makeKeyAndVisible] (1.00%)</title> | |
<rect ry="2" y="4371.0" fill="rgb(254,38,38)" width="11.800049" height="15.0" rx="2" x="1146.34"/> | |
<text font-size="12" y="4381.50" x="1149.34" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIWindow _setHidden:forced:] (1.00%)')" class="func_g" onmouseout="c()"><title >-[UIWindow _setHidden:forced:] (1.00%)</title> | |
<rect fill="rgb(211,38,52)" ry="2" height="15.0" width="11.800049" x="1146.34" rx="2" y="4355.0"/> | |
<text font-family="Verdana" y="4365.50" font-size="12" x="1149.34"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIWindow _updateLayerOrderingAndSetLayerHidden:actionBlock:] (1.00%)')" onmouseout="c()"><title >-[UIWindow _updateLayerOrderingAndSetLayerHidden:actionBlock:] (1.00%)</title> | |
<rect height="15.0" x="1146.34" width="11.800049" rx="2" ry="2" fill="rgb(211,5,30)" y="4339.0"/> | |
<text x="1149.34" y="4349.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIWindow addRootViewControllerViewIfPossible] (1.00%)')" class="func_g" onclick="zoom(this)"><title >-[UIWindow addRootViewControllerViewIfPossible] (1.00%)</title> | |
<rect y="4323.0" width="11.800049" x="1146.34" height="15.0" rx="2" fill="rgb(215,127,21)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1149.34" y="4333.50"></text> | |
</g> | |
<g onmouseover="s('-[UIViewController view] (0.60%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[UIViewController view] (0.60%)</title> | |
<rect x="1146.34" height="15.0" fill="rgb(236,228,13)" y="4307.0" rx="2" width="7.079956" ry="2"/> | |
<text x="1149.34" font-size="12" font-family="Verdana" y="4317.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIViewController loadViewIfRequired] (0.60%)')" onmouseout="c()" class="func_g"><title >-[UIViewController loadViewIfRequired] (0.60%)</title> | |
<rect x="1146.34" ry="2" height="15.0" y="4291.0" width="7.079956" rx="2" fill="rgb(250,157,26)"/> | |
<text y="4301.50" font-size="12" x="1149.34" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] (0.60%)')"><title >-[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] (0.60%)</title> | |
<rect width="7.079956" height="15.0" fill="rgb(249,137,54)" ry="2" x="1146.34" y="4275.0" rx="2"/> | |
<text y="4285.50" x="1149.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[FlutterViewController viewDidLoad] (0.60%)')" class="func_g"><title >-[FlutterViewController viewDidLoad] (0.60%)</title> | |
<rect rx="2" y="4259.0" x="1146.34" ry="2" width="7.079956" height="15.0" fill="rgb(224,98,1)"/> | |
<text font-family="Verdana" y="4269.50" font-size="12" x="1149.34"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[FlutterEngine launchEngine:libraryURI:entrypointArgs:] (0.60%)')"><title >-[FlutterEngine launchEngine:libraryURI:entrypointArgs:] (0.60%)</title> | |
<rect fill="rgb(217,89,44)" y="4243.0" ry="2" x="1146.34" height="15.0" width="7.079956" rx="2"/> | |
<text y="4253.50" font-family="Verdana" x="1149.34" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::Shell::RunEngine(flutter::RunConfiguration) (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::Shell::RunEngine(flutter::RunConfiguration) (0.60%)</title> | |
<rect width="7.079956" height="15.0" y="4227.0" ry="2" x="1146.34" fill="rgb(216,167,38)" rx="2"/> | |
<text font-family="Verdana" y="4237.50" font-size="12" x="1149.34"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::Shell::RunEngine(flutter::RunConfiguration, std::_fl::function<void (flutter::Engine::RunStatus)> const&) (0.60%)')" onclick="zoom(this)"><title >flutter::Shell::RunEngine(flutter::RunConfiguration, std::_fl::function<void (flutter::Engine::RunStatus)> const&) (0.60%)</title> | |
<rect y="4211.0" fill="rgb(211,197,43)" x="1146.34" height="15.0" ry="2" rx="2" width="7.079956"/> | |
<text font-size="12" x="1149.34" font-family="Verdana" y="4221.50"></text> | |
</g> | |
<g 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.60%)')" onclick="zoom(this)" onmouseout="c()"><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.60%)</title> | |
<rect x="1146.34" ry="2" fill="rgb(238,103,41)" rx="2" width="7.079956" y="4195.0" height="15.0"/> | |
<text y="4205.50" font-size="12" font-family="Verdana" x="1149.34"></text> | |
</g> | |
<g onmouseover="s('flutter::Engine::Run(flutter::RunConfiguration) (0.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::Engine::Run(flutter::RunConfiguration) (0.60%)</title> | |
<rect rx="2" ry="2" height="15.0" x="1146.34" fill="rgb(249,151,49)" y="4179.0" width="7.079956"/> | |
<text y="4189.50" font-size="12" font-family="Verdana" x="1149.34"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::RuntimeController::LaunchRootIsolate(flutter::Settings const&, std::_fl::function<void ()> const&, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::vector<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>, std::_fl::allocator<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>> const&, std::_fl::unique_ptr<flutter::IsolateConfiguration, std::_fl::default_delete<flutter::IsolateConfiguration>>) (0.40%)')"><title >flutter::RuntimeController::LaunchRootIsolate(flutter::Settings const&, std::_fl::function<void ()> const&, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::vector<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>, std::_fl::allocator<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>> const&, std::_fl::unique_ptr<flutter::IsolateConfiguration, std::_fl::default_delete<flutter::IsolateConfiguration>>) (0.40%)</title> | |
<rect ry="2" width="4.7199707" height="15.0" rx="2" x="1146.34" fill="rgb(211,161,36)" y="4163.0"/> | |
<text font-family="Verdana" y="4173.50" font-size="12" x="1149.34"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DartIsolate::CreateRunningRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const> const&, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::vector<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>, std::_fl::allocator<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>> const&, std::_fl::unique_ptr<flutter::IsolateConfiguration, std::_fl::default_delete<flutter::IsolateConfiguration>>, flutter::UIDartState::Context const&, flutter::DartIsolate const*) (0.40%)')" onmouseout="c()"><title >flutter::DartIsolate::CreateRunningRootIsolate(flutter::Settings const&, fml::RefPtr<flutter::DartSnapshot const> const&, std::_fl::unique_ptr<flutter::PlatformConfiguration, std::_fl::default_delete<flutter::PlatformConfiguration>>, flutter::DartIsolate::Flags, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, std::_fl::function<void ()> const&, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::optional<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>, std::_fl::vector<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>, std::_fl::allocator<std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>>> const&, std::_fl::unique_ptr<flutter::IsolateConfiguration, std::_fl::default_delete<flutter::IsolateConfiguration>>, flutter::UIDartState::Context const&, flutter::DartIsolate const*) (0.40%)</title> | |
<rect fill="rgb(251,40,41)" ry="2" height="15.0" y="4147.0" rx="2" width="4.7199707" x="1146.34"/> | |
<text y="4157.50" font-size="12" font-family="Verdana" x="1149.34"></text> | |
</g> | |
<g onmouseout="c()" 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.40%)')" class="func_g" onclick="zoom(this)"><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.40%)</title> | |
<rect rx="2" y="4131.0" fill="rgb(248,71,15)" height="15.0" x="1146.34" width="4.7199707" ry="2"/> | |
<text font-size="12" x="1149.34" y="4141.50" font-family="Verdana"></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.40%)')" 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.40%)</title> | |
<rect ry="2" y="4115.0" x="1146.34" fill="rgb(216,93,44)" rx="2" width="4.7199707" height="15.0"/> | |
<text y="4125.50" font-size="12" font-family="Verdana" x="1149.34"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('std::_fl::function<_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**) const (0.40%)')" onclick="zoom(this)"><title >std::_fl::function<_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**) const (0.40%)</title> | |
<rect ry="2" x="1146.34" width="4.7199707" y="4099.0" fill="rgb(215,87,45)" rx="2" height="15.0"/> | |
<text font-size="12" x="1149.34" y="4109.50" font-family="Verdana"></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.40%)')" onmouseout="c()" onclick="zoom(this)" 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.40%)</title> | |
<rect fill="rgb(254,137,53)" rx="2" ry="2" y="4083.0" width="4.7199707" height="15.0" x="1146.34"/> | |
<text font-family="Verdana" y="4093.50" x="1149.34" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('Dart_CreateIsolateGroup (0.40%)')" class="func_g" onclick="zoom(this)"><title >Dart_CreateIsolateGroup (0.40%)</title> | |
<rect y="4067.0" rx="2" height="15.0" ry="2" x="1146.34" fill="rgb(231,138,44)" width="4.7199707"/> | |
<text font-size="12" y="4077.50" x="1149.34" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::CreateIsolate(dart::IsolateGroup*, bool, char const*, void*, char**) (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dart::CreateIsolate(dart::IsolateGroup*, bool, char const*, void*, char**) (0.40%)</title> | |
<rect rx="2" fill="rgb(246,199,20)" y="4051.0" ry="2" height="15.0" x="1146.34" width="4.7199707"/> | |
<text y="4061.50" x="1149.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::Dart::InitializeIsolateGroup(dart::Thread*, unsigned char const*, unsigned char const*, unsigned char const*, long) (0.40%)')" class="func_g" onmouseout="c()"><title >dart::Dart::InitializeIsolateGroup(dart::Thread*, unsigned char const*, unsigned char const*, unsigned char const*, long) (0.40%)</title> | |
<rect fill="rgb(248,68,37)" width="4.7199707" rx="2" x="1146.34" ry="2" y="4035.0" height="15.0"/> | |
<text font-size="12" y="4045.50" font-family="Verdana" x="1149.34"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dart::Dart::InitIsolateGroupFromSnapshot(dart::Thread*, unsigned char const*, unsigned char const*, unsigned char const*, long) (0.40%)')" class="func_g" onmouseout="c()"><title >dart::Dart::InitIsolateGroupFromSnapshot(dart::Thread*, unsigned char const*, unsigned char const*, unsigned char const*, long) (0.40%)</title> | |
<rect rx="2" width="4.7199707" x="1146.34" height="15.0" y="4019.0" ry="2" fill="rgb(243,168,55)"/> | |
<text x="1149.34" y="4029.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dart::FullSnapshotReader::ReadProgramSnapshot() (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::FullSnapshotReader::ReadProgramSnapshot() (0.30%)</title> | |
<rect height="15.0" x="1146.34" y="4003.0" fill="rgb(244,139,39)" ry="2" width="3.540039" rx="2"/> | |
<text font-family="Verdana" y="4013.50" font-size="12" x="1149.34"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('dart::Deserializer::Deserialize(dart::DeserializationRoots*) (0.30%)')" onmouseout="c()"><title >dart::Deserializer::Deserialize(dart::DeserializationRoots*) (0.30%)</title> | |
<rect y="3987.0" ry="2" width="3.540039" x="1146.34" fill="rgb(207,14,3)" height="15.0" rx="2"/> | |
<text y="3997.50" x="1149.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::Engine::UpdateAssetManager(std::_fl::shared_ptr<flutter::AssetManager> const&) (0.10%)')" onmouseout="c()" class="func_g"><title >flutter::Engine::UpdateAssetManager(std::_fl::shared_ptr<flutter::AssetManager> const&) (0.10%)</title> | |
<rect fill="rgb(212,44,44)" width="1.1800537" rx="2" x="1151.0599" ry="2" y="4163.0" height="15.0"/> | |
<text font-family="Verdana" y="4173.50" font-size="12" x="1154.06"></text> | |
</g> | |
<g onmouseover="s('flutter::FontCollection::RegisterFonts(std::_fl::shared_ptr<flutter::AssetManager> const&) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::FontCollection::RegisterFonts(std::_fl::shared_ptr<flutter::AssetManager> const&) (0.10%)</title> | |
<rect rx="2" fill="rgb(231,222,47)" y="4147.0" ry="2" height="15.0" x="1151.0599" width="1.1800537"/> | |
<text y="4157.50" x="1154.06" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('txt::RegisterSystemFonts(txt::DynamicFontManager const&) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >txt::RegisterSystemFonts(txt::DynamicFontManager const&) (0.10%)</title> | |
<rect ry="2" x="1151.0599" width="1.1800537" height="15.0" fill="rgb(215,209,33)" y="4131.0" rx="2"/> | |
<text y="4141.50" font-size="12" font-family="Verdana" x="1154.06"></text> | |
</g> | |
<g onmouseover="s('txt::RegisterSystemFonts(txt::DynamicFontManager const&)::$_0::operator()(int) const (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >txt::RegisterSystemFonts(txt::DynamicFontManager const&)::$_0::operator()(int) const (0.10%)</title> | |
<rect y="4115.0" x="1151.0599" height="15.0" ry="2" fill="rgb(219,143,27)" rx="2" width="1.1800537"/> | |
<text y="4125.50" font-size="12" x="1154.06" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIPresentationController _presentWithAnimationController:inWindow:interactionController:target:didFinish:] (0.20%)')" onmouseout="c()"><title >-[UIPresentationController _presentWithAnimationController:inWindow:interactionController:target:didFinish:] (0.20%)</title> | |
<rect x="1153.4199" ry="2" fill="rgb(241,188,28)" rx="2" width="2.3599854" y="4307.0" height="15.0"/> | |
<text x="1156.42" font-size="12" font-family="Verdana" y="4317.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[UIPresentationController runTransitionForCurrentState] (0.20%)')"><title >-[UIPresentationController runTransitionForCurrentState] (0.20%)</title> | |
<rect rx="2" x="1153.4199" height="15.0" y="4291.0" fill="rgb(233,19,25)" ry="2" width="2.3599854"/> | |
<text x="1156.42" y="4301.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('+[UIPresentationController _scheduleTransition:] (0.20%)')"><title >+[UIPresentationController _scheduleTransition:] (0.20%)</title> | |
<rect fill="rgb(253,197,11)" width="2.3599854" rx="2" x="1153.4199" ry="2" y="4275.0" height="15.0"/> | |
<text font-family="Verdana" y="4285.50" font-size="12" x="1156.42"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__56-[UIPresentationController runTransitionForCurrentState]_block_invoke_3 (0.20%)')"><title >__56-[UIPresentationController runTransitionForCurrentState]_block_invoke_3 (0.20%)</title> | |
<rect height="15.0" x="1153.4199" y="4259.0" fill="rgb(218,140,51)" ry="2" width="2.3599854" rx="2"/> | |
<text font-size="12" x="1156.42" y="4269.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__80-[UIPresentationController _initViewHierarchyForPresentationSuperview:inWindow:]_block_invoke (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >__80-[UIPresentationController _initViewHierarchyForPresentationSuperview:inWindow:]_block_invoke (0.10%)</title> | |
<rect y="4243.0" x="1153.4199" rx="2" height="15.0" ry="2" fill="rgb(240,227,32)" width="1.1800537"/> | |
<text x="1156.42" y="4253.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[UISheetPresentationController presentationTransitionWillBegin] (0.10%)')"><title >-[UISheetPresentationController presentationTransitionWillBegin] (0.10%)</title> | |
<rect x="1153.4199" y="4227.0" fill="rgb(225,28,14)" rx="2" height="15.0" width="1.1800537" ry="2"/> | |
<text y="4237.50" x="1156.42" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIView(Hierarchy) layoutBelowIfNeeded] (0.10%)')" class="func_g"><title >-[UIView(Hierarchy) layoutBelowIfNeeded] (0.10%)</title> | |
<rect rx="2" y="4211.0" x="1153.4199" ry="2" width="1.1800537" height="15.0" fill="rgb(209,142,16)"/> | |
<text font-family="Verdana" y="4221.50" font-size="12" x="1156.42"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('CA::Layer::layout_if_needed(CA::Transaction*) (0.10%)')"><title >CA::Layer::layout_if_needed(CA::Transaction*) (0.10%)</title> | |
<rect x="1153.4199" rx="2" height="15.0" width="1.1800537" fill="rgb(213,26,31)" ry="2" y="4195.0"/> | |
<text x="1156.42" font-family="Verdana" y="4205.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIView(CALayerDelegate) layoutSublayersOfLayer:] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIView(CALayerDelegate) layoutSublayersOfLayer:] (0.10%)</title> | |
<rect width="1.1800537" ry="2" fill="rgb(247,154,32)" rx="2" height="15.0" x="1153.4199" y="4179.0"/> | |
<text y="4189.50" font-size="12" font-family="Verdana" x="1156.42"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[UITransitionView layoutSubviews] (0.10%)')"><title >-[UITransitionView layoutSubviews] (0.10%)</title> | |
<rect y="4163.0" x="1153.4199" height="15.0" ry="2" fill="rgb(229,150,52)" rx="2" width="1.1800537"/> | |
<text x="1156.42" y="4173.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UISheetPresentationController _containerViewLayoutSubviews] (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UISheetPresentationController _containerViewLayoutSubviews] (0.10%)</title> | |
<rect x="1153.4199" ry="2" y="4147.0" rx="2" height="15.0" fill="rgb(241,190,0)" width="1.1800537"/> | |
<text y="4157.50" font-size="12" x="1156.42" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('__CFRunLoopDoObservers (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >__CFRunLoopDoObservers (0.20%)</title> | |
<rect height="15.0" rx="2" x="1161.6799" y="4835.0" fill="rgb(248,177,45)" ry="2" width="2.3599854"/> | |
<text font-size="12" x="1164.68" font-family="Verdana" y="4845.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ (0.20%)')" onclick="zoom(this)"><title >__CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ (0.20%)</title> | |
<rect fill="rgb(215,226,38)" ry="2" x="1161.6799" y="4819.0" rx="2" height="15.0" width="2.3599854"/> | |
<text font-family="Verdana" font-size="12" y="4829.50" x="1164.68"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_UIGestureEnvironmentUpdate (0.10%)')" onclick="zoom(this)" class="func_g"><title >_UIGestureEnvironmentUpdate (0.10%)</title> | |
<rect x="1161.6799" height="15.0" fill="rgb(249,186,54)" rx="2" ry="2" width="1.1800537" y="4803.0"/> | |
<text x="1164.68" font-size="12" font-family="Verdana" y="4813.50"></text> | |
</g> | |
<g onmouseover="s('_UIApplicationMainPreparations (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_UIApplicationMainPreparations (0.10%)</title> | |
<rect height="15.0" rx="2" x="1167.58" y="4899.0" fill="rgb(220,123,17)" ry="2" width="1.1800537"/> | |
<text font-size="12" x="1170.58" font-family="Verdana" y="4909.50"></text> | |
</g> | |
<g onmouseover="s('dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*) (1.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*) (1.20%)</title> | |
<rect height="15.0" rx="2" x="1168.76" y="4931.0" fill="rgb(244,204,19)" ry="2" width="14.160034"/> | |
<text font-size="12" x="1171.76" font-family="Verdana" y="4941.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dyld4::PrebuiltLoaderSet::makeLaunchSet(Diagnostics&, dyld4::RuntimeState&, dyld4::MissingPaths const&) (0.40%)')" onclick="zoom(this)"><title >dyld4::PrebuiltLoaderSet::makeLaunchSet(Diagnostics&, dyld4::RuntimeState&, dyld4::MissingPaths const&) (0.40%)</title> | |
<rect fill="rgb(251,160,41)" ry="2" x="1168.76" y="4915.0" rx="2" height="15.0" width="4.7199707"/> | |
<text font-family="Verdana" font-size="12" y="4925.50" x="1171.76"></text> | |
</g> | |
<g onmouseout="c()" 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.20%)')" onclick="zoom(this)" class="func_g"><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.20%)</title> | |
<rect x="1168.76" height="15.0" fill="rgb(251,106,12)" rx="2" ry="2" width="2.3599854" y="4899.0"/> | |
<text x="1171.76" font-size="12" font-family="Verdana" y="4909.50"></text> | |
</g> | |
<g 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%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><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(205,58,41)" x="1168.76" y="4883.0" width="1.1800537" height="15.0" rx="2" ry="2"/> | |
<text font-size="12" y="4893.50" font-family="Verdana" x="1171.76"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)')" onclick="zoom(this)" class="func_g"><title >dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)</title> | |
<rect fill="rgb(229,222,8)" rx="2" ry="2" width="1.1800537" height="15.0" y="4867.0" x="1168.76"/> | |
<text font-family="Verdana" y="4877.50" font-size="12" x="1171.76"></text> | |
</g> | |
<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%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><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(230,209,19)" y="4851.0" ry="2" x="1168.76" height="15.0" rx="2"/> | |
<text y="4861.50" font-family="Verdana" font-size="12" x="1171.76"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" 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 x="1168.76" rx="2" ry="2" width="1.1800537" height="15.0" y="4835.0" fill="rgb(225,68,12)"/> | |
<text y="4845.50" font-size="12" font-family="Verdana" x="1171.76"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" 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%)')"><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 height="15.0" rx="2" y="4819.0" x="1168.76" fill="rgb(217,30,16)" width="1.1800537" ry="2"/> | |
<text x="1171.76" font-family="Verdana" font-size="12" y="4829.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_o::Fixups::forEachBind_OpcodesLazy(Diagnostics&, void (char const*, bool, bool, unsigned int, int, unsigned int, unsigned int, unsigned long long, unsigned char, char const*, bool, bool, unsigned long long, bool, bool&) block_pointer) const (0.10%)')" onmouseout="c()" class="func_g"><title >mach_o::Fixups::forEachBind_OpcodesLazy(Diagnostics&, void (char const*, bool, bool, unsigned int, int, unsigned int, unsigned int, unsigned long long, unsigned char, char const*, bool, bool, unsigned long long, bool, bool&) block_pointer) const (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="4803.0" height="15.0" fill="rgb(249,90,10)" rx="2" x="1168.76"/> | |
<text y="4813.50" font-size="12" x="1171.76" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('invocation function for block in 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 >invocation function for block in 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 height="15.0" ry="2" rx="2" y="4787.0" fill="rgb(251,122,31)" x="1168.76" width="1.1800537"/> | |
<text y="4797.50" x="1171.76" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" 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%)')"><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 fill="rgb(254,130,33)" rx="2" x="1168.76" height="15.0" y="4771.0" ry="2" width="1.1800537"/> | |
<text font-family="Verdana" y="4781.50" font-size="12" x="1171.76"></text> | |
</g> | |
<g onmouseover="s('dyld4::Loader::resolveSymbol(Diagnostics&, dyld4::RuntimeState&, int, char const*, bool, bool, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool) const (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dyld4::Loader::resolveSymbol(Diagnostics&, dyld4::RuntimeState&, int, char const*, bool, bool, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool) const (0.10%)</title> | |
<rect height="15.0" rx="2" y="4755.0" width="1.1800537" ry="2" x="1168.76" fill="rgb(207,3,41)"/> | |
<text font-family="Verdana" y="4765.50" x="1171.76" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dyld4::Loader::hasExportedSymbol(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::ExportedSymbolMode, dyld4::Loader::ResolverMode, dyld4::Loader::ResolvedSymbol*, dyld3::Array<dyld4::Loader const*>*) const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dyld4::Loader::hasExportedSymbol(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::ExportedSymbolMode, dyld4::Loader::ResolverMode, dyld4::Loader::ResolvedSymbol*, dyld3::Array<dyld4::Loader const*>*) const (0.10%)</title> | |
<rect x="1168.76" ry="2" fill="rgb(229,169,14)" rx="2" width="1.1800537" y="4739.0" height="15.0"/> | |
<text y="4749.50" font-family="Verdana" font-size="12" x="1171.76"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld4::PrebuiltObjC::make(Diagnostics&, dyld4::RuntimeState&) (0.20%)')" onclick="zoom(this)" class="func_g"><title >dyld4::PrebuiltObjC::make(Diagnostics&, dyld4::RuntimeState&) (0.20%)</title> | |
<rect x="1171.12" height="15.0" fill="rgb(220,63,1)" rx="2" ry="2" width="2.3599854" y="4899.0"/> | |
<text x="1174.12" font-size="12" font-family="Verdana" y="4909.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dyld4::APIs::runAllInitializersForMain() (0.30%)')" onclick="zoom(this)"><title >dyld4::APIs::runAllInitializersForMain() (0.30%)</title> | |
<rect fill="rgb(212,183,4)" ry="2" x="1173.48" y="4915.0" rx="2" height="15.0" width="3.540039"/> | |
<text font-family="Verdana" font-size="12" y="4925.50" x="1176.48"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const (0.10%)')" onclick="zoom(this)" class="func_g"><title >dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const (0.10%)</title> | |
<rect x="1173.48" height="15.0" fill="rgb(210,121,27)" rx="2" ry="2" width="1.1800537" y="4899.0"/> | |
<text x="1176.48" font-size="12" font-family="Verdana" y="4909.50"></text> | |
</g> | |
<g onmouseover="s('dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const::$_1::operator()() const (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const::$_1::operator()() const (0.10%)</title> | |
<rect fill="rgb(230,175,26)" x="1173.48" y="4883.0" width="1.1800537" height="15.0" rx="2" ry="2"/> | |
<text font-size="12" y="4893.50" font-family="Verdana" x="1176.48"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&, dyld3::Array<dyld4::Loader const*>&) const (0.10%)')" onclick="zoom(this)" class="func_g"><title >dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&, dyld3::Array<dyld4::Loader const*>&) const (0.10%)</title> | |
<rect fill="rgb(206,3,9)" rx="2" ry="2" width="1.1800537" height="15.0" y="4867.0" x="1173.48"/> | |
<text font-family="Verdana" y="4877.50" font-size="12" x="1176.48"></text> | |
</g> | |
<g onmouseover="s('dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&, dyld3::Array<dyld4::Loader const*>&) const (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&, dyld3::Array<dyld4::Loader const*>&) const (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(242,57,54)" y="4851.0" ry="2" x="1173.48" height="15.0" rx="2"/> | |
<text y="4861.50" font-family="Verdana" font-size="12" x="1176.48"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld4::JustInTimeLoader::runInitializers(dyld4::RuntimeState&) const (0.10%)')"><title >dyld4::JustInTimeLoader::runInitializers(dyld4::RuntimeState&) const (0.10%)</title> | |
<rect x="1173.48" rx="2" ry="2" width="1.1800537" height="15.0" y="4835.0" fill="rgb(250,95,45)"/> | |
<text y="4845.50" font-size="12" font-family="Verdana" x="1176.48"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const (0.10%)')"><title >dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const (0.10%)</title> | |
<rect height="15.0" rx="2" y="4819.0" x="1173.48" fill="rgb(232,155,53)" width="1.1800537" ry="2"/> | |
<text x="1176.48" font-family="Verdana" font-size="12" y="4829.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)')" onmouseout="c()"><title >dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="4803.0" height="15.0" fill="rgb(226,102,19)" rx="2" x="1173.48"/> | |
<text font-family="Verdana" y="4813.50" font-size="12" x="1176.48"></text> | |
</g> | |
<g onmouseover="s('dyld3::MachOFile::forEachInitializerPointerSection(Diagnostics&, void (unsigned int, unsigned int, bool&) block_pointer) const (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dyld3::MachOFile::forEachInitializerPointerSection(Diagnostics&, void (unsigned int, unsigned int, bool&) block_pointer) const (0.10%)</title> | |
<rect ry="2" rx="2" width="1.1800537" fill="rgb(233,108,23)" height="15.0" y="4787.0" x="1173.48"/> | |
<text y="4797.50" x="1176.48" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)</title> | |
<rect x="1173.48" y="4771.0" fill="rgb(213,222,38)" ry="2" height="15.0" rx="2" width="1.1800537"/> | |
<text y="4781.50" font-size="12" x="1176.48" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.10%)</title> | |
<rect height="15.0" ry="2" rx="2" y="4755.0" fill="rgb(240,230,14)" x="1173.48" width="1.1800537"/> | |
<text font-family="Verdana" y="4765.50" x="1176.48" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('invocation function for block in dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)')" onclick="zoom(this)"><title >invocation function for block in dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)</title> | |
<rect fill="rgb(237,74,39)" rx="2" x="1173.48" height="15.0" y="4739.0" ry="2" width="1.1800537"/> | |
<text x="1176.48" y="4749.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('invocation function for block in dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)')"><title >invocation function for block in dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)</title> | |
<rect height="15.0" rx="2" y="4723.0" width="1.1800537" ry="2" x="1173.48" fill="rgb(247,99,36)"/> | |
<text x="1176.48" font-family="Verdana" y="4733.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld4::PrebuiltLoader::runInitializers(dyld4::RuntimeState&) const (0.10%)')" onclick="zoom(this)" class="func_g"><title >dyld4::PrebuiltLoader::runInitializers(dyld4::RuntimeState&) const (0.10%)</title> | |
<rect x="1174.66" height="15.0" fill="rgb(218,141,8)" rx="2" ry="2" width="1.1800537" y="4899.0"/> | |
<text x="1177.66" font-size="12" font-family="Verdana" y="4909.50"></text> | |
</g> | |
<g onmouseover="s('dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const (0.10%)</title> | |
<rect fill="rgb(208,55,29)" x="1174.66" y="4883.0" width="1.1800537" height="15.0" rx="2" ry="2"/> | |
<text font-size="12" y="4893.50" font-family="Verdana" x="1177.66"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)')" onclick="zoom(this)" class="func_g"><title >dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)</title> | |
<rect fill="rgb(212,194,22)" rx="2" ry="2" width="1.1800537" height="15.0" y="4867.0" x="1174.66"/> | |
<text font-family="Verdana" y="4877.50" font-size="12" x="1177.66"></text> | |
</g> | |
<g onmouseover="s('dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(236,60,21)" y="4851.0" ry="2" x="1174.66" height="15.0" rx="2"/> | |
<text y="4861.50" font-family="Verdana" font-size="12" x="1177.66"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.10%)')"><title >dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.10%)</title> | |
<rect x="1174.66" rx="2" ry="2" width="1.1800537" height="15.0" y="4835.0" fill="rgb(223,131,28)"/> | |
<text y="4845.50" font-size="12" font-family="Verdana" x="1177.66"></text> | |
</g> | |
<g onmouseover="s('invocation function for block in dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >invocation function for block in dyld3::MachOFile::forEachSection(void (dyld3::MachOFile::SectionInfo const&, bool, bool&) block_pointer) const (0.10%)</title> | |
<rect height="15.0" rx="2" y="4819.0" x="1174.66" fill="rgb(220,170,16)" width="1.1800537" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="4829.50" x="1177.66"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('invocation function for block in dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)')" onmouseout="c()" class="func_g"><title >invocation function for block in dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (0.10%)</title> | |
<rect ry="2" width="1.1800537" y="4803.0" height="15.0" fill="rgb(241,45,8)" rx="2" x="1174.66"/> | |
<text y="4813.50" font-size="12" x="1177.66" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('invocation function for block in dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const::$_0::operator()() const (0.10%)')" onmouseout="c()"><title >invocation function for block in dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const::$_0::operator()() const (0.10%)</title> | |
<rect ry="2" rx="2" width="1.1800537" fill="rgb(250,112,19)" height="15.0" y="4787.0" x="1174.66"/> | |
<text y="4797.50" x="1177.66" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('libSystem_initializer (0.10%)')"><title >libSystem_initializer (0.10%)</title> | |
<rect fill="rgb(253,84,24)" rx="2" x="1174.66" height="15.0" y="4771.0" ry="2" width="1.1800537"/> | |
<text font-family="Verdana" y="4781.50" font-size="12" x="1177.66"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('libdispatch_init (0.10%)')" onmouseout="c()" class="func_g"><title >libdispatch_init (0.10%)</title> | |
<rect x="1174.66" y="4755.0" fill="rgb(210,229,49)" ry="2" height="15.0" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" y="4765.50" x="1177.66" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_os_object_init (0.10%)')"><title >_os_object_init (0.10%)</title> | |
<rect height="15.0" rx="2" y="4739.0" width="1.1800537" ry="2" x="1174.66" fill="rgb(221,143,31)"/> | |
<text x="1177.66" y="4749.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_objc_init (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_objc_init (0.10%)</title> | |
<rect height="15.0" x="1174.66" rx="2" width="1.1800537" fill="rgb(209,83,10)" ry="2" y="4723.0"/> | |
<text x="1177.66" y="4733.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('dyld4::APIs::_dyld_objc_register_callbacks(_dyld_objc_callbacks const*) (0.10%)')" class="func_g"><title >dyld4::APIs::_dyld_objc_register_callbacks(_dyld_objc_callbacks const*) (0.10%)</title> | |
<rect height="15.0" x="1174.66" width="1.1800537" rx="2" y="4707.0" fill="rgb(237,9,35)" ry="2"/> | |
<text x="1177.66" font-size="12" y="4717.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('dyld4::RuntimeState::setObjCNotifiers(void (*)(char const*, mach_header const*), void (*)(mach_header const*, void*, mach_header const*, void const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*), void (*)(_dyld_objc_notify_mapped_info const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*, void (unsigned int) block_pointer)) (0.10%)')"><title >dyld4::RuntimeState::setObjCNotifiers(void (*)(char const*, mach_header const*), void (*)(mach_header const*, void*, mach_header const*, void const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*), void (*)(_dyld_objc_notify_mapped_info const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*, void (unsigned int) block_pointer)) (0.10%)</title> | |
<rect fill="rgb(205,210,22)" y="4691.0" width="1.1800537" rx="2" x="1174.66" height="15.0" ry="2"/> | |
<text font-size="12" y="4701.50" x="1177.66" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dyld4::RuntimeLocks::withLoadersReadLock(void () block_pointer) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dyld4::RuntimeLocks::withLoadersReadLock(void () block_pointer) (0.10%)</title> | |
<rect height="15.0" x="1174.66" y="4675.0" fill="rgb(244,100,42)" ry="2" width="1.1800537" rx="2"/> | |
<text font-size="12" x="1177.66" y="4685.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('invocation function for block in dyld4::RuntimeState::setObjCNotifiers(void (*)(char const*, mach_header const*), void (*)(mach_header const*, void*, mach_header const*, void const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*), void (*)(_dyld_objc_notify_mapped_info const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*, void (unsigned int) block_pointer))::$_8::operator()() const (0.10%)')" class="func_g" onmouseout="c()"><title >invocation function for block in dyld4::RuntimeState::setObjCNotifiers(void (*)(char const*, mach_header const*), void (*)(mach_header const*, void*, mach_header const*, void const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*), void (*)(_dyld_objc_notify_mapped_info const*), void (*)(unsigned int, _dyld_objc_notify_mapped_info const*, void (unsigned int) block_pointer))::$_8::operator()() const (0.10%)</title> | |
<rect y="4659.0" fill="rgb(237,120,8)" rx="2" x="1174.66" width="1.1800537" ry="2" height="15.0"/> | |
<text x="1177.66" font-size="12" font-family="Verdana" y="4669.50"></text> | |
</g> | |
<g onmouseover="s('map_images (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >map_images (0.10%)</title> | |
<rect x="1174.66" height="15.0" rx="2" fill="rgb(229,159,47)" y="4643.0" ry="2" width="1.1800537"/> | |
<text font-family="Verdana" y="4653.50" x="1177.66" font-size="12"></text> | |
</g> | |
<g onmouseover="s('map_images_nolock (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >map_images_nolock (0.10%)</title> | |
<rect width="1.1800537" rx="2" ry="2" x="1174.66" y="4627.0" fill="rgb(221,63,4)" height="15.0"/> | |
<text x="1177.66" y="4637.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dyld4::APIs::dyld_image_path_containing_address(void const*) (0.10%)')"><title >dyld4::APIs::dyld_image_path_containing_address(void const*) (0.10%)</title> | |
<rect y="4611.0" height="15.0" fill="rgb(215,212,13)" rx="2" ry="2" width="1.1800537" x="1174.66"/> | |
<text font-family="Verdana" font-size="12" y="4621.50" x="1177.66"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld4::APIs::findImageMappedAt(void const*, dyld3::MachOLoaded const**, bool*, char const**, void const**, unsigned long long*, unsigned char*, dyld4::Loader const**) (0.10%)')"><title >dyld4::APIs::findImageMappedAt(void const*, dyld3::MachOLoaded const**, bool*, char const**, void const**, unsigned long long*, unsigned char*, dyld4::Loader const**) (0.10%)</title> | |
<rect x="1174.66" height="15.0" fill="rgb(240,11,11)" y="4595.0" rx="2" width="1.1800537" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1177.66" y="4605.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dyld4::JustInTimeLoader::applyFixups(Diagnostics&, dyld4::RuntimeState&, dyld4::DyldCacheDataConstLazyScopedWriter&, bool) const (0.20%)')" onclick="zoom(this)"><title >dyld4::JustInTimeLoader::applyFixups(Diagnostics&, dyld4::RuntimeState&, dyld4::DyldCacheDataConstLazyScopedWriter&, bool) const (0.20%)</title> | |
<rect fill="rgb(215,80,16)" ry="2" x="1177.02" y="4915.0" rx="2" height="15.0" width="2.3599854"/> | |
<text font-family="Verdana" font-size="12" y="4925.50" x="1180.02"></text> | |
</g> | |
<g onmouseout="c()" 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%)')" onclick="zoom(this)" class="func_g"><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 x="1177.02" height="15.0" fill="rgb(226,201,10)" rx="2" ry="2" width="1.1800537" y="4899.0"/> | |
<text x="1180.02" font-size="12" font-family="Verdana" y="4909.50"></text> | |
</g> | |
<g onmouseover="s('dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)</title> | |
<rect fill="rgb(206,49,46)" x="1177.02" y="4883.0" width="1.1800537" height="15.0" rx="2" ry="2"/> | |
<text font-size="12" y="4893.50" font-family="Verdana" x="1180.02"></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 fill="rgb(226,50,40)" rx="2" ry="2" width="1.1800537" height="15.0" y="4867.0" x="1177.02"/> | |
<text y="4877.50" x="1180.02" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g 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%)')" onmouseout="c()" 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 width="1.1800537" fill="rgb(248,112,52)" y="4851.0" ry="2" x="1177.02" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="1180.02" y="4861.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" 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%)')"><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="1177.02" rx="2" ry="2" width="1.1800537" height="15.0" y="4835.0" fill="rgb(229,164,22)"/> | |
<text x="1180.02" y="4845.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('mach_o::Fixups::forEachBind_OpcodesLazy(Diagnostics&, void (char const*, bool, bool, unsigned int, int, unsigned int, unsigned int, unsigned long long, unsigned char, char const*, bool, bool, unsigned long long, bool, bool&) block_pointer) const (0.10%)')" onmouseout="c()"><title >mach_o::Fixups::forEachBind_OpcodesLazy(Diagnostics&, void (char const*, bool, bool, unsigned int, int, unsigned int, unsigned int, unsigned long long, unsigned char, char const*, bool, bool, unsigned long long, bool, bool&) block_pointer) const (0.10%)</title> | |
<rect height="15.0" rx="2" y="4819.0" x="1177.02" fill="rgb(207,81,36)" width="1.1800537" ry="2"/> | |
<text font-family="Verdana" y="4829.50" font-size="12" x="1180.02"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('invocation function for block in 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"><title >invocation function for block in 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 ry="2" rx="2" width="1.1800537" fill="rgb(238,102,34)" height="15.0" y="4803.0" x="1177.02"/> | |
<text font-size="12" x="1180.02" y="4813.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" 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" 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 width="1.1800537" rx="2" ry="2" x="1177.02" y="4787.0" fill="rgb(230,198,46)" height="15.0"/> | |
<text y="4797.50" x="1180.02" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('dyld4::Loader::resolveSymbol(Diagnostics&, dyld4::RuntimeState&, int, char const*, bool, bool, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool) const (0.10%)')" onmouseout="c()"><title >dyld4::Loader::resolveSymbol(Diagnostics&, dyld4::RuntimeState&, int, char const*, bool, bool, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&) block_pointer, bool) const (0.10%)</title> | |
<rect y="4771.0" height="15.0" fill="rgb(248,132,29)" rx="2" ry="2" width="1.1800537" x="1177.02"/> | |
<text y="4781.50" x="1180.02" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('Element.inflateWidget (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >Element.inflateWidget (0.10%)</title> | |
<rect height="15.0" rx="2" x="1184.1" y="4947.0" fill="rgb(216,146,11)" ry="2" width="1.1800537"/> | |
<text font-size="12" x="1187.10" font-family="Verdana" y="4957.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('ComponentElement.mount (0.10%)')" onclick="zoom(this)"><title >ComponentElement.mount (0.10%)</title> | |
<rect fill="rgb(252,59,43)" ry="2" x="1184.1" y="4931.0" rx="2" height="15.0" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" y="4941.50" x="1187.10"></text> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment