Created
February 2, 2024 01:30
-
-
Save jonahwilliams/f2e900e70a7761b0e31c641044756d8d to your computer and use it in GitHub Desktop.
profile example
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="1062" onload="init(evt)" viewBox="0 0 1200 1062" 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 height="1062.0" fill="url(#background)" y="0.0" rx="2" ry="2" x="0.0" width="1200.0"/> | |
<text font-family="Verdana" fill="rgb(0,0,0)" y="24.0" id="title" font-size="12" text-anchor="middle" x="600.00">Flame Chart</text> | |
<text font-family="Verdana" fill="rgb(0,0,0)" y="1028.0" id="details" font-size="12" text-anchor="" x="10.00"> </text> | |
<text font-family="Verdana" fill="rgb(0,0,0)" y="24.0" id="unzoom" font-size="12" text-anchor="" onclick="unzoom()" x="10.00" style="opacity:0.0;cursor:pointer">Reset Zoom</text> | |
<text x="1090.00" id="search" font-size="12" onclick="search_prompt()" font-family="Verdana" onmouseover="searchover()" style="opacity:0.1;cursor:pointer" text-anchor="" onmouseout="searchout()" y="24.0" fill="rgb(0,0,0)">Search</text> | |
<text font-family="Verdana" fill="rgb(0,0,0)" y="24.0" id="ignorecase" font-size="12" text-anchor="" x="1174.00">ic</text> | |
<text font-family="Verdana" fill="rgb(0,0,0)" y="1045.0" id="matched" font-size="12" text-anchor="" x="1090.00"> </text> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('Runner (734) (100.00%)')"><title >Runner (734) (100.00%)</title> | |
<rect ry="2" width="1180.0" x="10.0" y="979.0" rx="2" height="15.0" fill="rgb(244,95,17)"/> | |
<text font-family="Verdana" y="989.50" x="13.00" font-size="12">Runner (734)</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('start (100.00%)')"><title >start (100.00%)</title> | |
<rect rx="2" width="1180.0" x="10.0" fill="rgb(242,22,27)" y="963.0" height="15.0" ry="2"/> | |
<text x="13.00" y="973.50" font-size="12" font-family="Verdana">start</text> | |
</g> | |
<g onmouseover="s('main (98.70%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >main (98.70%)</title> | |
<rect rx="2" x="10.0" width="1164.66" height="15.0" y="947.0" fill="rgb(228,148,16)" ry="2"/> | |
<text y="957.50" font-size="12" x="13.00" font-family="Verdana">main</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('UIApplicationMain (98.70%)')"><title >UIApplicationMain (98.70%)</title> | |
<rect fill="rgb(220,191,14)" x="10.0" y="931.0" width="1164.66" ry="2" height="15.0" rx="2"/> | |
<text y="941.50" x="13.00" font-family="Verdana" font-size="12">UIApplicationMain</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[UIApplication _run] (98.60%)')"><title >-[UIApplication _run] (98.60%)</title> | |
<rect width="1163.4801" rx="2" x="10.0" fill="rgb(208,151,48)" y="915.0" height="15.0" ry="2"/> | |
<text font-size="12" x="13.00" font-family="Verdana" y="925.50">-[UIApplication _run]</text> | |
</g> | |
<g onmouseover="s('GSEventRunModal (98.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >GSEventRunModal (98.60%)</title> | |
<rect fill="rgb(225,103,34)" ry="2" rx="2" x="10.0" y="899.0" width="1163.4801" height="15.0"/> | |
<text font-family="Verdana" y="909.50" x="13.00" font-size="12">GSEventRunModal</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x19ca163eb (98.60%)')" onmouseout="c()"><title >0x19ca163eb (98.60%)</title> | |
<rect width="1163.4801" rx="2" x="10.0" height="15.0" fill="rgb(217,165,2)" ry="2" y="883.0"/> | |
<text x="13.00" font-family="Verdana" y="893.50" font-size="12">0x19ca163eb</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x19ca114d3 (53.90%)')" class="func_g" onmouseout="c()"><title >0x19ca114d3 (53.90%)</title> | |
<rect x="10.0" rx="2" ry="2" y="867.0" width="636.0201" height="15.0" fill="rgb(255,176,52)"/> | |
<text x="13.00" font-size="12" font-family="Verdana" y="877.50">0x19ca114d3</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x19c9c571b (53.80%)')" class="func_g"><title >0x19c9c571b (53.80%)</title> | |
<rect y="851.0" ry="2" x="10.0" height="15.0" width="634.84" fill="rgb(249,59,10)" rx="2"/> | |
<text x="13.00" y="861.50" font-size="12" font-family="Verdana">0x19c9c571b</text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca1ff4b (53.00%)')" onclick="zoom(this)" onmouseout="c()"><title >0x19ca1ff4b (53.00%)</title> | |
<rect y="835.0" rx="2" ry="2" width="625.4" x="10.0" height="15.0" fill="rgb(246,51,26)"/> | |
<text x="13.00" font-family="Verdana" y="845.50" font-size="12">0x19ca1ff4b</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19ca62623 (53.00%)')" onclick="zoom(this)" class="func_g"><title >0x19ca62623 (53.00%)</title> | |
<rect height="15.0" x="10.0" width="625.4001" fill="rgb(239,41,53)" ry="2" rx="2" y="819.0"/> | |
<text font-family="Verdana" x="13.00" y="829.50" font-size="12">0x19ca62623</text> | |
</g> | |
<g onmouseover="s('fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (51.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (51.40%)</title> | |
<rect fill="rgb(227,45,48)" ry="2" x="10.0" rx="2" y="803.0" width="606.5201" height="15.0"/> | |
<text font-size="12" y="813.50" x="13.00" font-family="Verdana">fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*)</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('fml::MessageLoopImpl::FlushTasks(fml::FlushType) (51.40%)')" class="func_g" onmouseout="c()"><title >fml::MessageLoopImpl::FlushTasks(fml::FlushType) (51.40%)</title> | |
<rect y="787.0" height="15.0" ry="2" fill="rgb(229,126,1)" rx="2" width="606.5201" x="10.0"/> | |
<text font-size="12" y="797.50" font-family="Verdana" x="13.00">fml::MessageLoopImpl::FlushTasks(fml::FlushType)</text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>>, void ()>::operator()() (50.30%)')" onclick="zoom(this)" onmouseout="c()"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>>, void ()>::operator()() (50.30%)</title> | |
<rect y="771.0" ry="2" x="10.0" height="15.0" fill="rgb(238,115,32)" rx="2" width="593.54004"/> | |
<text x="13.00" font-size="12" y="781.50" font-family="Verdana">std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnAnim..</text> | |
</g> | |
<g onmouseover="s('flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&) (50.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&) (50.30%)</title> | |
<rect y="755.0" height="15.0" rx="2" fill="rgb(221,191,23)" ry="2" x="10.0" width="593.54004"/> | |
<text x="13.00" font-size="12" y="765.50" font-family="Verdana">flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameIt..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('std::_fl::__function::__func<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0, std::_fl::allocator<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0>, void (std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>)>::operator()(std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>&&) (50.10%)')" onclick="zoom(this)"><title >std::_fl::__function::__func<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0, std::_fl::allocator<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0>, void (std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>)>::operator()(std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>&&) (50.10%)</title> | |
<rect x="10.0" ry="2" fill="rgb(225,59,37)" y="739.0" width="591.18005" height="15.0" rx="2"/> | |
<text y="749.50" font-family="Verdana" font-size="12" x="13.00">std::_fl::__function::__func<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutt..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (50.00%)')"><title >flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (50.00%)</title> | |
<rect fill="rgb(236,24,50)" y="723.0" x="10.0" height="15.0" width="590.00006" ry="2" rx="2"/> | |
<text x="13.00" font-family="Verdana" y="733.50" font-size="12">flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vec..</text> | |
</g> | |
<g class="func_g" onmouseover="s('fml::SyncSwitch::Execute(fml::SyncSwitch::Handlers const&) const (50.00%)')" onmouseout="c()" onclick="zoom(this)"><title >fml::SyncSwitch::Execute(fml::SyncSwitch::Handlers const&) const (50.00%)</title> | |
<rect rx="2" ry="2" x="10.0" width="590.00006" fill="rgb(242,79,44)" height="15.0" y="707.0"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="13.00">fml::SyncSwitch::Execute(fml::SyncSwitch::Handlers const&) const</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('std::_fl::__function::__func<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1, std::_fl::allocator<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1>, void ()>::operator()() (50.00%)')"><title >std::_fl::__function::__func<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1, std::_fl::allocator<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1>, void ()>::operator()() (50.00%)</title> | |
<rect ry="2" height="15.0" y="691.0" fill="rgb(223,219,1)" x="10.0" width="590.00006" rx="2"/> | |
<text y="701.50" font-size="12" font-family="Verdana" x="13.00">std::_fl::__function::__func<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTi..</text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::Rasterizer::DrawToSurfacesUnsafe(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (49.90%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::Rasterizer::DrawToSurfacesUnsafe(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (49.90%)</title> | |
<rect y="675.0" x="10.0" fill="rgb(240,146,55)" width="588.82007" rx="2" height="15.0" ry="2"/> | |
<text font-family="Verdana" x="13.00" y="685.50" font-size="12">flutter::Rasterizer::DrawToSurfacesUnsafe(flutter::FrameTimingsRecorder&, std::_f..</text> | |
</g> | |
<g onmouseover="s('flutter::IOSExternalViewEmbedder::SubmitFlutterView(GrDirectContext*, std::_fl::shared_ptr<impeller::AiksContext> const&, std::_fl::unique_ptr<flutter::SurfaceFrame, std::_fl::default_delete<flutter::SurfaceFrame>>) (41.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::IOSExternalViewEmbedder::SubmitFlutterView(GrDirectContext*, std::_fl::shared_ptr<impeller::AiksContext> const&, std::_fl::unique_ptr<flutter::SurfaceFrame, std::_fl::default_delete<flutter::SurfaceFrame>>) (41.30%)</title> | |
<rect x="10.0" rx="2" height="15.0" width="487.34003" y="659.0" fill="rgb(210,229,14)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="669.50">flutter::IOSExternalViewEmbedder::SubmitFlutterView(GrDirectContex..</text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::SurfaceFrame::Submit() (24.60%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::SurfaceFrame::Submit() (24.60%)</title> | |
<rect y="643.0" x="10.0" width="290.28003" rx="2" height="15.0" ry="2" fill="rgb(213,163,14)"/> | |
<text font-size="12" x="13.00" y="653.50" font-family="Verdana">flutter::SurfaceFrame::Submit()</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>>, bool (flutter::SurfaceFrame&, flutter::DlCanvas*)>::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*&&) (24.40%)')"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>>, bool (flutter::SurfaceFrame&, flutter::DlCanvas*)>::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*&&) (24.40%)</title> | |
<rect fill="rgb(254,78,55)" y="627.0" rx="2" width="287.92" ry="2" x="10.0" height="15.0"/> | |
<text x="13.00" font-size="12" y="637.50" font-family="Verdana">std::_fl::__function::__func<fml::inte..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('impeller::Renderer::Render(std::_fl::unique_ptr<impeller::Surface, std::_fl::default_delete<impeller::Surface>>, std::_fl::function<bool (impeller::RenderTarget&)> const&) const (20.60%)')"><title >impeller::Renderer::Render(std::_fl::unique_ptr<impeller::Surface, std::_fl::default_delete<impeller::Surface>>, std::_fl::function<bool (impeller::RenderTarget&)> const&) const (20.60%)</title> | |
<rect x="10.0" rx="2" width="243.08002" height="15.0" ry="2" y="611.0" fill="rgb(225,205,50)"/> | |
<text y="621.50" x="13.00" font-family="Verdana" font-size="12">impeller::Renderer::Render(std::..</text> | |
</g> | |
<g onmouseover="s('impeller::AiksContext::Render(impeller::Picture const&, impeller::RenderTarget&, bool) (12.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >impeller::AiksContext::Render(impeller::Picture const&, impeller::RenderTarget&, bool) (12.40%)</title> | |
<rect rx="2" ry="2" height="15.0" y="595.0" x="10.0" fill="rgb(227,116,42)" width="146.32"/> | |
<text y="605.50" x="13.00" font-size="12" font-family="Verdana">impeller::AiksCont..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::EntityPass::OnRender(impeller::ContentContext&, impeller::Capture&, impeller::TSize<long long>, impeller::EntityPassTarget&, impeller::TPoint<float>, impeller::TPoint<float>, unsigned int, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, unsigned long, std::_fl::shared_ptr<impeller::Contents>, std::_fl::optional<impeller::InlinePassContext::RenderPassResult> const&) const (11.60%)')" onmouseout="c()"><title >impeller::EntityPass::OnRender(impeller::ContentContext&, impeller::Capture&, impeller::TSize<long long>, impeller::EntityPassTarget&, impeller::TPoint<float>, impeller::TPoint<float>, unsigned int, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, unsigned long, std::_fl::shared_ptr<impeller::Contents>, std::_fl::optional<impeller::InlinePassContext::RenderPassResult> const&) const (11.60%)</title> | |
<rect height="15.0" fill="rgb(226,1,51)" y="579.0" ry="2" x="10.0" rx="2" width="136.88002"/> | |
<text y="589.50" font-size="12" x="13.00" font-family="Verdana">impeller::EntityP..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('impeller::EntityPass::RenderElement(impeller::Entity&, unsigned long, impeller::InlinePassContext&, int, impeller::ContentContext&, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, impeller::TPoint<float>) const (6.50%)')"><title >impeller::EntityPass::RenderElement(impeller::Entity&, unsigned long, impeller::InlinePassContext&, int, impeller::ContentContext&, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, impeller::TPoint<float>) const (6.50%)</title> | |
<rect fill="rgb(216,185,18)" width="76.70001" x="10.0" ry="2" rx="2" y="563.0" height="15.0"/> | |
<text x="13.00" font-size="12" y="573.50" font-family="Verdana">impeller..</text> | |
</g> | |
<g onmouseover="s('impeller::InlinePassContext::GetRenderPass(unsigned int) (3.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >impeller::InlinePassContext::GetRenderPass(unsigned int) (3.10%)</title> | |
<rect x="10.0" height="15.0" fill="rgb(244,90,15)" ry="2" width="36.580006" rx="2" y="547.0"/> | |
<text x="13.00" font-family="Verdana" y="557.50" font-size="12">imp..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (2.10%)')" onmouseout="c()"><title >impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (2.10%)</title> | |
<rect y="531.0" ry="2" width="24.780003" height="15.0" fill="rgb(235,33,35)" rx="2" x="10.0"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="541.50">i..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (1.90%)')" class="func_g" onclick="zoom(this)"><title >impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (1.90%)</title> | |
<rect rx="2" width="22.420006" y="515.0" ry="2" fill="rgb(233,69,17)" x="10.0" height="15.0"/> | |
<text x="13.00" y="525.50" font-size="12" font-family="Verdana">i..</text> | |
</g> | |
<g onmouseover="s('0x228871767 (1.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x228871767 (1.50%)</title> | |
<rect fill="rgb(236,73,46)" x="10.0" width="17.700003" ry="2" rx="2" y="499.0" height="15.0"/> | |
<text y="509.50" x="13.00" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x22898a64b (0.70%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x22898a64b (0.70%)</title> | |
<rect rx="2" ry="2" width="8.260002" y="483.0" x="10.0" height="15.0" fill="rgb(210,198,53)"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="493.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x228972c87 (0.50%)')" onclick="zoom(this)" class="func_g"><title >0x228972c87 (0.50%)</title> | |
<rect y="467.0" height="15.0" ry="2" fill="rgb(205,55,28)" width="5.9000015" x="10.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="13.00" y="477.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x228884d03 (0.50%)')"><title >0x228884d03 (0.50%)</title> | |
<rect y="451.0" width="5.9000015" ry="2" fill="rgb(252,154,49)" rx="2" height="15.0" x="10.0"/> | |
<text font-family="Verdana" x="13.00" font-size="12" y="461.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x2288861a3 (0.30%)')" class="func_g"><title >0x2288861a3 (0.30%)</title> | |
<rect x="10.0" height="15.0" ry="2" y="435.0" width="3.540001" fill="rgb(225,166,43)" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="445.50" x="13.00"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_ioGPUResourceListAddResourceEntry (0.20%)')"><title >_ioGPUResourceListAddResourceEntry (0.20%)</title> | |
<rect fill="rgb(225,186,54)" rx="2" height="15.0" y="419.0" width="2.3600006" x="10.0" ry="2"/> | |
<text font-size="12" y="429.50" x="13.00" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ioGPUResourceListAddHashValue (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >ioGPUResourceListAddHashValue (0.20%)</title> | |
<rect rx="2" height="15.0" y="403.0" fill="rgb(234,12,26)" x="10.0" width="2.3600006" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="13.00" y="413.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('IOGPUResourceListAddResource (0.10%)')"><title >IOGPUResourceListAddResource (0.10%)</title> | |
<rect fill="rgb(237,142,9)" rx="2" height="15.0" y="419.0" width="1.1800003" x="12.360001" ry="2"/> | |
<text font-size="12" y="429.50" x="15.36" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x228988a37 (0.10%)')"><title >0x228988a37 (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800003" y="483.0" x="18.260002" height="15.0" fill="rgb(217,163,34)"/> | |
<text x="21.26" font-family="Verdana" y="493.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x2289888a3 (0.10%)')"><title >0x2289888a3 (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800003" y="483.0" x="19.440002" height="15.0" fill="rgb(241,136,55)"/> | |
<text x="22.44" font-family="Verdana" y="493.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x228988a5f (0.10%)')"><title >0x228988a5f (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800003" y="483.0" x="20.620003" height="15.0" fill="rgb(228,139,42)"/> | |
<text x="23.62" font-family="Verdana" y="493.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::ContextMTL::CreateCommandBuffer() const (0.60%)')" onmouseout="c()"><title >impeller::ContextMTL::CreateCommandBuffer() const (0.60%)</title> | |
<rect rx="2" ry="2" width="7.080002" y="531.0" x="34.780003" height="15.0" fill="rgb(225,209,39)"/> | |
<text y="541.50" font-size="12" x="37.78" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x2288743df (0.40%)')" class="func_g" onmouseout="c()"><title >0x2288743df (0.40%)</title> | |
<rect y="515.0" ry="2" width="4.720001" height="15.0" fill="rgb(218,229,18)" rx="2" x="34.780003"/> | |
<text font-family="Verdana" x="37.78" font-size="12" y="525.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x2288721bf (0.10%)')" class="func_g" onmouseout="c()"><title >0x2288721bf (0.10%)</title> | |
<rect rx="2" width="1.1800003" x="34.780003" height="15.0" y="499.0" fill="rgb(205,34,7)" ry="2"/> | |
<text x="37.78" y="509.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x22889247f (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x22889247f (0.10%)</title> | |
<rect fill="rgb(230,147,13)" rx="2" height="15.0" y="483.0" width="1.1800003" x="34.780003" ry="2"/> | |
<text font-family="Verdana" x="37.78" y="493.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_event_loop_poke (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_dispatch_event_loop_poke (0.10%)</title> | |
<rect ry="2" y="467.0" width="1.1800003" height="15.0" fill="rgb(209,121,10)" x="34.780003" rx="2"/> | |
<text y="477.50" font-size="12" x="37.78" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228872187 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x228872187 (0.10%)</title> | |
<rect rx="2" width="1.1800003" x="35.960003" height="15.0" y="499.0" fill="rgb(248,29,55)" ry="2"/> | |
<text font-family="Verdana" x="38.96" y="509.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_platform_memset (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_platform_memset (0.10%)</title> | |
<rect x="35.960003" fill="rgb(245,65,45)" ry="2" width="1.1800003" height="15.0" y="483.0" rx="2"/> | |
<text y="493.50" font-family="Verdana" font-size="12" x="38.96"></text> | |
</g> | |
<g onmouseover="s('0x228871f7f (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x228871f7f (0.10%)</title> | |
<rect rx="2" width="1.1800003" x="37.140003" height="15.0" y="499.0" fill="rgb(240,128,9)" ry="2"/> | |
<text font-family="Verdana" x="40.14" y="509.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::CommandBufferMTL::SetLabel(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&) const (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >impeller::CommandBufferMTL::SetLabel(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&) const (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800003" y="531.0" x="41.860004" height="15.0" fill="rgb(245,161,46)"/> | |
<text y="541.50" font-size="12" x="44.86" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::ClipContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (1.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::ClipContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (1.00%)</title> | |
<rect ry="2" x="46.580006" width="11.800003" rx="2" height="15.0" y="547.0" fill="rgb(232,111,5)"/> | |
<text font-family="Verdana" x="49.58" y="557.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::RenderPassMTL::Draw() (0.40%)')" class="func_g" onmouseout="c()"><title >impeller::RenderPassMTL::Draw() (0.40%)</title> | |
<rect x="46.580006" y="531.0" height="15.0" fill="rgb(212,4,36)" rx="2" ry="2" width="4.720001"/> | |
<text x="49.58" font-family="Verdana" y="541.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x22897c297 (0.30%)')" onmouseout="c()"><title >0x22897c297 (0.30%)</title> | |
<rect y="515.0" ry="2" width="3.540001" height="15.0" fill="rgb(249,189,4)" rx="2" x="46.580006"/> | |
<text y="525.50" x="49.58" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::RectGeometry::GetPositionBuffer(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.10%)')" class="func_g" onmouseout="c()"><title >impeller::RectGeometry::GetPositionBuffer(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.10%)</title> | |
<rect x="51.300007" y="531.0" height="15.0" fill="rgb(219,216,41)" rx="2" ry="2" width="1.1800003"/> | |
<text x="54.30" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::RenderPassMTL::SetVertexBuffer(impeller::VertexBuffer) (0.10%)')" class="func_g" onmouseout="c()"><title >impeller::RenderPassMTL::SetVertexBuffer(impeller::VertexBuffer) (0.10%)</title> | |
<rect height="15.0" width="1.1800003" x="52.480007" y="531.0" rx="2" fill="rgb(219,206,55)" ry="2"/> | |
<text x="55.48" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::TextContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (1.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::TextContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (1.00%)</title> | |
<rect ry="2" x="58.38001" width="11.799999" rx="2" height="15.0" y="547.0" fill="rgb(214,165,25)"/> | |
<text font-family="Verdana" x="61.38" y="557.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::TypographerContextSkia::CreateGlyphAtlas(impeller::Context&, impeller::GlyphAtlas::Type, std::_fl::shared_ptr<impeller::GlyphAtlasContext> const&, std::_fl::unordered_map<impeller::ScaledFont, std::_fl::unordered_set<impeller::Glyph, std::_fl::hash<impeller::Glyph>, std::_fl::equal_to<impeller::Glyph>, std::_fl::allocator<impeller::Glyph>>, std::_fl::hash<impeller::ScaledFont>, std::_fl::equal_to<impeller::ScaledFont>, std::_fl::allocator<std::_fl::pair<impeller::ScaledFont const, std::_fl::unordered_set<impeller::Glyph, std::_fl::hash<impeller::Glyph>, std::_fl::equal_to<impeller::Glyph>, std::_fl::allocator<impeller::Glyph>>>>> const&) const (0.10%)')" class="func_g" onmouseout="c()"><title >impeller::TypographerContextSkia::CreateGlyphAtlas(impeller::Context&, impeller::GlyphAtlas::Type, std::_fl::shared_ptr<impeller::GlyphAtlasContext> const&, std::_fl::unordered_map<impeller::ScaledFont, std::_fl::unordered_set<impeller::Glyph, std::_fl::hash<impeller::Glyph>, std::_fl::equal_to<impeller::Glyph>, std::_fl::allocator<impeller::Glyph>>, std::_fl::hash<impeller::ScaledFont>, std::_fl::equal_to<impeller::ScaledFont>, std::_fl::allocator<std::_fl::pair<impeller::ScaledFont const, std::_fl::unordered_set<impeller::Glyph, std::_fl::hash<impeller::Glyph>, std::_fl::equal_to<impeller::Glyph>, std::_fl::allocator<impeller::Glyph>>>>> const&) const (0.10%)</title> | |
<rect height="15.0" width="1.1800003" x="58.38001" y="531.0" rx="2" fill="rgb(229,186,4)" ry="2"/> | |
<text x="61.38" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::RenderPassMTL::Draw() (0.10%)')" class="func_g" onmouseout="c()"><title >impeller::RenderPassMTL::Draw() (0.10%)</title> | |
<rect height="15.0" width="1.1800003" x="59.56001" y="531.0" rx="2" fill="rgb(206,98,14)" ry="2"/> | |
<text x="62.56" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x22897c297 (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >0x22897c297 (0.10%)</title> | |
<rect width="1.1800003" fill="rgb(254,14,54)" y="515.0" x="59.56001" height="15.0" ry="2" rx="2"/> | |
<text x="62.56" font-family="Verdana" y="525.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('impeller::RenderPassMTL::SetPipeline(std::_fl::shared_ptr<impeller::Pipeline<impeller::PipelineDescriptor>> const&) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >impeller::RenderPassMTL::SetPipeline(std::_fl::shared_ptr<impeller::Pipeline<impeller::PipelineDescriptor>> const&) (0.10%)</title> | |
<rect height="15.0" width="1.1800003" x="60.74001" y="531.0" rx="2" fill="rgb(244,135,27)" ry="2"/> | |
<text x="63.74" font-family="Verdana" y="541.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::HostBuffer::Emplace(unsigned long, unsigned long, std::_fl::function<void (unsigned char*)> const&) (0.10%)')" onmouseout="c()"><title >impeller::HostBuffer::Emplace(unsigned long, unsigned long, std::_fl::function<void (unsigned char*)> const&) (0.10%)</title> | |
<rect height="15.0" width="1.1800003" x="61.92001" y="531.0" rx="2" fill="rgb(229,195,1)" ry="2"/> | |
<text font-size="12" y="541.50" x="64.92" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::SolidColorContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::SolidColorContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.50%)</title> | |
<rect ry="2" x="70.18001" width="5.9000015" rx="2" height="15.0" y="547.0" fill="rgb(248,58,18)"/> | |
<text font-family="Verdana" x="73.18" y="557.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::RenderPassMTL::Draw() (0.10%)')" class="func_g" onmouseout="c()"><title >impeller::RenderPassMTL::Draw() (0.10%)</title> | |
<rect ry="2" fill="rgb(226,194,42)" x="70.18001" width="1.1800003" rx="2" y="531.0" height="15.0"/> | |
<text x="73.18" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x22897c297 (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x22897c297 (0.10%)</title> | |
<rect x="70.18001" width="1.1800003" y="515.0" height="15.0" fill="rgb(220,149,23)" rx="2" ry="2"/> | |
<text x="73.18" font-family="Verdana" y="525.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::ClipRestoreContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >impeller::ClipRestoreContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.40%)</title> | |
<rect ry="2" x="76.08001" width="4.720001" rx="2" height="15.0" y="547.0" fill="rgb(229,181,46)"/> | |
<text y="557.50" font-size="12" x="79.08" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::RenderPassMTL::Draw() (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::RenderPassMTL::Draw() (0.10%)</title> | |
<rect x="76.08001" y="531.0" width="1.1800003" rx="2" height="15.0" fill="rgb(209,121,7)" ry="2"/> | |
<text font-family="Verdana" x="79.08" font-size="12" y="541.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x22897c297 (0.10%)')" onmouseout="c()"><title >0x22897c297 (0.10%)</title> | |
<rect rx="2" fill="rgb(239,90,38)" x="76.08001" y="515.0" ry="2" width="1.1800003" height="15.0"/> | |
<text font-size="12" y="525.50" x="79.08" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::InlinePassContext::GetRenderPass(unsigned int) (3.00%)')" onclick="zoom(this)" onmouseout="c()"><title >impeller::InlinePassContext::GetRenderPass(unsigned int) (3.00%)</title> | |
<rect ry="2" x="86.70001" width="35.40001" rx="2" height="15.0" y="563.0" fill="rgb(224,52,38)"/> | |
<text y="573.50" font-size="12" x="89.70" font-family="Verdana">imp..</text> | |
</g> | |
<g onmouseover="s('impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (1.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (1.90%)</title> | |
<rect x="86.70001" width="22.420006" height="15.0" ry="2" fill="rgb(239,106,12)" y="547.0" rx="2"/> | |
<text font-family="Verdana" x="89.70" font-size="12" y="557.50">i..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (1.80%)')" onmouseout="c()"><title >impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (1.80%)</title> | |
<rect fill="rgb(209,31,5)" width="21.240005" x="86.70001" y="531.0" ry="2" height="15.0" rx="2"/> | |
<text font-size="12" y="541.50" x="89.70" font-family="Verdana">i..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x228871767 (1.40%)')" onmouseout="c()"><title >0x228871767 (1.40%)</title> | |
<rect fill="rgb(234,150,9)" y="515.0" x="86.70001" rx="2" ry="2" height="15.0" width="16.520004"/> | |
<text font-family="Verdana" x="89.70" y="525.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x22898a64b (0.60%)')" class="func_g"><title >0x22898a64b (0.60%)</title> | |
<rect x="86.70001" y="499.0" width="7.080002" rx="2" height="15.0" fill="rgb(211,197,53)" ry="2"/> | |
<text x="89.70" y="509.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x228972c87 (0.50%)')" onmouseout="c()"><title >0x228972c87 (0.50%)</title> | |
<rect fill="rgb(227,102,3)" y="483.0" height="15.0" x="86.70001" ry="2" width="5.9000015" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="89.70" y="493.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x228884d03 (0.40%)')" onmouseout="c()" class="func_g"><title >0x228884d03 (0.40%)</title> | |
<rect y="467.0" width="4.720001" fill="rgb(255,212,11)" ry="2" height="15.0" x="86.70001" rx="2"/> | |
<text font-size="12" y="477.50" font-family="Verdana" x="89.70"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x2288861a3 (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >0x2288861a3 (0.30%)</title> | |
<rect x="86.70001" fill="rgb(226,199,44)" ry="2" width="3.540001" y="451.0" rx="2" height="15.0"/> | |
<text font-family="Verdana" y="461.50" x="89.70" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_ioGPUResourceListAddResourceEntry (0.30%)')"><title >_ioGPUResourceListAddResourceEntry (0.30%)</title> | |
<rect ry="2" height="15.0" rx="2" x="86.70001" fill="rgb(251,43,6)" y="435.0" width="3.540001"/> | |
<text font-family="Verdana" y="445.50" x="89.70" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('ioGPUResourceListAddHashValue (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >ioGPUResourceListAddHashValue (0.30%)</title> | |
<rect fill="rgb(252,45,17)" height="15.0" x="86.70001" y="419.0" rx="2" ry="2" width="3.540001"/> | |
<text x="89.70" font-size="12" font-family="Verdana" y="429.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228988a5f (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x228988a5f (0.10%)</title> | |
<rect fill="rgb(210,215,47)" y="499.0" height="15.0" x="93.780014" ry="2" width="1.1800003" rx="2"/> | |
<text x="96.78" y="509.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x2288e9e9b (0.10%)')" onmouseout="c()"><title >0x2288e9e9b (0.10%)</title> | |
<rect x="93.780014" y="483.0" height="15.0" ry="2" fill="rgb(248,113,26)" width="1.1800003" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="96.78" y="493.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x228988a37 (0.10%)')" onmouseout="c()"><title >0x228988a37 (0.10%)</title> | |
<rect fill="rgb(205,33,50)" y="499.0" height="15.0" x="94.960014" ry="2" width="1.1800003" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="97.96" y="509.50"></text> | |
</g> | |
<g onmouseover="s('impeller::ContextMTL::CreateCommandBuffer() const (0.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::ContextMTL::CreateCommandBuffer() const (0.80%)</title> | |
<rect x="109.12002" y="547.0" height="15.0" ry="2" fill="rgb(252,31,24)" width="9.440002" rx="2"/> | |
<text font-family="Verdana" x="112.12" font-size="12" y="557.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x2288743df (0.70%)')" onmouseout="c()"><title >0x2288743df (0.70%)</title> | |
<rect fill="rgb(227,90,41)" y="531.0" height="15.0" x="109.12002" ry="2" width="8.260002" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="112.12" y="541.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x228871f7f (0.50%)')" class="func_g" onmouseout="c()"><title >0x228871f7f (0.50%)</title> | |
<rect fill="rgb(249,221,17)" width="5.9000015" x="109.12002" y="515.0" ry="2" height="15.0" rx="2"/> | |
<text x="112.12" font-family="Verdana" y="525.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[IOGPUMetalCommandBuffer initWithQueue:retainedReferences:synchronousDebugMode:] (0.50%)')"><title >-[IOGPUMetalCommandBuffer initWithQueue:retainedReferences:synchronousDebugMode:] (0.50%)</title> | |
<rect ry="2" height="15.0" rx="2" x="109.12002" fill="rgb(244,4,23)" y="499.0" width="5.9000015"/> | |
<text y="509.50" x="112.12" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('IOGPUMetalCommandBufferStoragePoolCreateStorage (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >IOGPUMetalCommandBufferStoragePoolCreateStorage (0.40%)</title> | |
<rect fill="rgb(243,67,17)" height="15.0" x="109.12002" y="483.0" rx="2" ry="2" width="4.720001"/> | |
<text font-family="Verdana" y="493.50" x="112.12" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('IOGPUMetalCommandBufferStorageCreateExt (0.40%)')" class="func_g" onmouseout="c()"><title >IOGPUMetalCommandBufferStorageCreateExt (0.40%)</title> | |
<rect height="15.0" width="4.720001" fill="rgb(254,88,13)" ry="2" y="467.0" rx="2" x="109.12002"/> | |
<text y="477.50" font-size="12" font-family="Verdana" x="112.12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('IOGPUResourceListInit (0.40%)')" onmouseout="c()"><title >IOGPUResourceListInit (0.40%)</title> | |
<rect x="109.12002" fill="rgb(234,85,36)" ry="2" height="15.0" rx="2" y="451.0" width="4.720001"/> | |
<text x="112.12" y="461.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('szone_malloc_should_clear (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >szone_malloc_should_clear (0.40%)</title> | |
<rect y="435.0" ry="2" rx="2" x="109.12002" width="4.720001" height="15.0" fill="rgb(218,105,9)"/> | |
<text font-family="Verdana" y="445.50" font-size="12" x="112.12"></text> | |
</g> | |
<g onmouseover="s('large_malloc (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >large_malloc (0.20%)</title> | |
<rect y="419.0" width="2.3600006" rx="2" height="15.0" x="109.12002" fill="rgb(234,62,13)" ry="2"/> | |
<text font-family="Verdana" y="429.50" x="112.12" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('mvm_allocate_pages (0.20%)')" onclick="zoom(this)"><title >mvm_allocate_pages (0.20%)</title> | |
<rect x="109.12002" y="403.0" width="2.3600006" ry="2" fill="rgb(225,158,14)" height="15.0" rx="2"/> | |
<text font-size="12" x="112.12" font-family="Verdana" y="413.50"></text> | |
</g> | |
<g onmouseover="s('mach_vm_map (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >mach_vm_map (0.20%)</title> | |
<rect x="109.12002" width="2.3600006" height="15.0" ry="2" y="387.0" rx="2" fill="rgb(229,0,55)"/> | |
<text x="112.12" font-family="Verdana" font-size="12" y="397.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_kernelrpc_mach_vm_map_trap (0.20%)')" onmouseout="c()"><title >_kernelrpc_mach_vm_map_trap (0.20%)</title> | |
<rect rx="2" height="15.0" y="371.0" ry="2" fill="rgb(238,166,14)" x="109.12002" width="2.3600006"/> | |
<text y="381.50" x="112.12" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('small_malloc_should_clear (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >small_malloc_should_clear (0.10%)</title> | |
<rect y="419.0" width="1.1800003" rx="2" height="15.0" x="111.48002" fill="rgb(208,14,27)" ry="2"/> | |
<text font-family="Verdana" y="429.50" x="114.48" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_platform_memset (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_platform_memset (0.10%)</title> | |
<rect x="111.48002" y="403.0" width="1.1800003" ry="2" fill="rgb(213,88,9)" height="15.0" rx="2"/> | |
<text font-size="12" x="114.48" font-family="Verdana" y="413.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x2288720cf (0.10%)')" onmouseout="c()"><title >0x2288720cf (0.10%)</title> | |
<rect ry="2" y="515.0" height="15.0" fill="rgb(206,140,0)" x="115.02002" width="1.1800003" rx="2"/> | |
<text y="525.50" font-size="12" font-family="Verdana" x="118.02"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('_platform_memset (0.10%)')" class="func_g"><title >_platform_memset (0.10%)</title> | |
<rect x="115.02002" y="499.0" width="1.1800003" ry="2" fill="rgb(254,163,38)" height="15.0" rx="2"/> | |
<text font-size="12" y="509.50" x="118.02" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::RenderPass::SetLabel(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::RenderPass::SetLabel(std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>>) (0.10%)</title> | |
<rect x="118.56001" y="547.0" height="15.0" ry="2" fill="rgb(252,106,3)" width="1.1800003" rx="2"/> | |
<text y="557.50" font-size="12" font-family="Verdana" x="121.56"></text> | |
</g> | |
<g onmouseover="s('impeller::InlinePassContext::EndPass() (1.80%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >impeller::InlinePassContext::EndPass() (1.80%)</title> | |
<rect ry="2" x="122.10002" width="21.240005" rx="2" height="15.0" y="563.0" fill="rgb(218,16,43)"/> | |
<text y="573.50" font-size="12" font-family="Verdana" x="125.10">i..</text> | |
</g> | |
<g onmouseover="s('impeller::ContentContext::RecordCommandBuffer(std::_fl::shared_ptr<impeller::CommandBuffer>) const (1.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::ContentContext::RecordCommandBuffer(std::_fl::shared_ptr<impeller::CommandBuffer>) const (1.00%)</title> | |
<rect x="122.10002" y="547.0" height="15.0" ry="2" fill="rgb(254,165,32)" width="11.800003" rx="2"/> | |
<text font-family="Verdana" x="125.10" y="557.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::CommandQueue::Submit(std::_fl::vector<std::_fl::shared_ptr<impeller::CommandBuffer>, std::_fl::allocator<std::_fl::shared_ptr<impeller::CommandBuffer>>> const&, std::_fl::function<void (impeller::CommandBuffer::Status)> const&) (1.00%)')" onmouseout="c()"><title >impeller::CommandQueue::Submit(std::_fl::vector<std::_fl::shared_ptr<impeller::CommandBuffer>, std::_fl::allocator<std::_fl::shared_ptr<impeller::CommandBuffer>>> const&, std::_fl::function<void (impeller::CommandBuffer::Status)> const&) (1.00%)</title> | |
<rect fill="rgb(231,212,22)" width="11.800003" x="122.10002" y="531.0" ry="2" height="15.0" rx="2"/> | |
<text x="125.10" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::CommandBufferMTL::OnSubmitCommands(std::_fl::function<void (impeller::CommandBuffer::Status)>) (0.90%)')" class="func_g" onmouseout="c()"><title >impeller::CommandBufferMTL::OnSubmitCommands(std::_fl::function<void (impeller::CommandBuffer::Status)>) (0.90%)</title> | |
<rect height="15.0" width="10.619995" fill="rgb(242,106,13)" ry="2" y="515.0" rx="2" x="122.10002"/> | |
<text font-family="Verdana" font-size="12" x="125.10" y="525.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x22887338b (0.60%)')"><title >0x22887338b (0.60%)</title> | |
<rect fill="rgb(215,7,22)" y="499.0" x="122.10002" rx="2" ry="2" height="15.0" width="7.080002"/> | |
<text x="125.10" font-family="Verdana" y="509.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[IOGPUMetalCommandBuffer commit] (0.50%)')" onclick="zoom(this)" onmouseout="c()"><title >-[IOGPUMetalCommandBuffer commit] (0.50%)</title> | |
<rect y="483.0" ry="2" rx="2" x="122.10002" width="5.899994" height="15.0" fill="rgb(230,117,46)"/> | |
<text font-family="Verdana" y="493.50" x="125.10" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_event_loop_poke (0.50%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_dispatch_event_loop_poke (0.50%)</title> | |
<rect x="122.10002" rx="2" ry="2" width="5.899994" height="15.0" fill="rgb(221,205,0)" y="467.0"/> | |
<text font-family="Verdana" x="125.10" y="477.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_dispatch_kq_poll (0.50%)')" onmouseout="c()"><title >_dispatch_kq_poll (0.50%)</title> | |
<rect y="451.0" fill="rgb(207,45,21)" height="15.0" ry="2" width="5.899994" x="122.10002" rx="2"/> | |
<text x="125.10" font-family="Verdana" y="461.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('kevent_id (0.50%)')"><title >kevent_id (0.50%)</title> | |
<rect x="122.10002" ry="2" width="5.899994" rx="2" fill="rgb(213,71,1)" height="15.0" y="435.0"/> | |
<text font-size="12" font-family="Verdana" y="445.50" x="125.10"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x228873157 (0.20%)')" onclick="zoom(this)"><title >0x228873157 (0.20%)</title> | |
<rect y="499.0" width="2.3600006" rx="2" fill="rgb(234,137,40)" ry="2" x="129.18002" height="15.0"/> | |
<text x="132.18" font-family="Verdana" y="509.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x2288707d3 (0.20%)')" onmouseout="c()"><title >0x2288707d3 (0.20%)</title> | |
<rect y="483.0" fill="rgb(227,139,7)" height="15.0" ry="2" width="2.3600006" x="129.18002" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="493.50" x="132.18"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x22898738b (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >0x22898738b (0.20%)</title> | |
<rect y="467.0" ry="2" rx="2" x="129.18002" width="2.3600006" height="15.0" fill="rgb(228,103,4)"/> | |
<text font-family="Verdana" x="132.18" y="477.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x2289aecc3 (0.10%)')"><title >0x2289aecc3 (0.10%)</title> | |
<rect x="129.18002" rx="2" ry="2" width="1.1799927" height="15.0" fill="rgb(228,160,17)" y="451.0"/> | |
<text font-size="12" y="461.50" x="132.18" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_platform_memset (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_platform_memset (0.10%)</title> | |
<rect fill="rgb(207,77,19)" height="15.0" rx="2" ry="2" x="129.18002" width="1.1799927" y="435.0"/> | |
<text font-family="Verdana" x="132.18" y="445.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('std::_fl::shared_ptr<impeller::RenderPass>::operator=[abi:v15000](std::_fl::shared_ptr<impeller::RenderPass>&&) (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >std::_fl::shared_ptr<impeller::RenderPass>::operator=[abi:v15000](std::_fl::shared_ptr<impeller::RenderPass>&&) (0.50%)</title> | |
<rect x="133.90002" y="547.0" height="15.0" ry="2" fill="rgb(232,227,14)" width="5.899994" rx="2"/> | |
<text x="136.90" font-family="Verdana" y="557.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__shared_ptr_pointer<impeller::RenderPassMTL*, std::_fl::shared_ptr<impeller::RenderPassMTL>::__shared_ptr_default_delete<impeller::RenderPassMTL, impeller::RenderPassMTL>, std::_fl::allocator<impeller::RenderPassMTL>>::__on_zero_shared() (0.40%)')" onclick="zoom(this)"><title >std::_fl::__shared_ptr_pointer<impeller::RenderPassMTL*, std::_fl::shared_ptr<impeller::RenderPassMTL>::__shared_ptr_default_delete<impeller::RenderPassMTL, impeller::RenderPassMTL>, std::_fl::allocator<impeller::RenderPassMTL>>::__on_zero_shared() (0.40%)</title> | |
<rect x="133.90002" y="531.0" width="4.720001" ry="2" fill="rgb(220,138,54)" height="15.0" rx="2"/> | |
<text x="136.90" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('impeller::RenderPassMTL::~RenderPassMTL() (0.20%)')" class="func_g" onmouseout="c()"><title >impeller::RenderPassMTL::~RenderPassMTL() (0.20%)</title> | |
<rect fill="rgb(253,202,20)" width="2.3600006" x="133.90002" y="515.0" ry="2" height="15.0" rx="2"/> | |
<text font-family="Verdana" y="525.50" x="136.90" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x1975b2bdb (0.10%)')"><title >0x1975b2bdb (0.10%)</title> | |
<rect height="15.0" y="499.0" fill="rgb(234,192,11)" x="133.90002" ry="2" rx="2" width="1.1799927"/> | |
<text x="136.90" font-family="Verdana" y="509.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::RenderPassMTL::OnEncodeCommands(impeller::Context const&) const (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >impeller::RenderPassMTL::OnEncodeCommands(impeller::Context const&) const (0.20%)</title> | |
<rect x="139.80002" y="547.0" height="15.0" ry="2" fill="rgb(228,42,53)" width="2.3600006" rx="2"/> | |
<text x="142.80" font-family="Verdana" y="557.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x228987bc3 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x228987bc3 (0.10%)</title> | |
<rect ry="2" y="531.0" height="15.0" fill="rgb(211,30,55)" x="139.80002" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="142.80" font-size="12" y="541.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[IOGPUMetalCommandEncoder endEncoding] (0.10%)')" onclick="zoom(this)"><title >-[IOGPUMetalCommandEncoder endEncoding] (0.10%)</title> | |
<rect fill="rgb(247,188,26)" width="1.1799927" x="139.80002" y="515.0" ry="2" height="15.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="525.50" x="142.80"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::EntityPass::IterateAllEntities(std::_fl::function<bool (impeller::Entity const&)> const&) const (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::EntityPass::IterateAllEntities(std::_fl::function<bool (impeller::Entity const&)> const&) const (0.20%)</title> | |
<rect ry="2" x="146.88002" width="2.3600006" rx="2" height="15.0" y="579.0" fill="rgb(244,170,27)"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="149.88"></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::__function::__func<impeller::EntityPass::Render(impeller::ContentContext&, impeller::RenderTarget const&) const::$_1, std::_fl::allocator<impeller::EntityPass::Render(impeller::ContentContext&, impeller::RenderTarget const&) const::$_1>, bool (impeller::Entity const&)>::operator()(impeller::Entity const&) (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >std::_fl::__function::__func<impeller::EntityPass::Render(impeller::ContentContext&, impeller::RenderTarget const&) const::$_1, std::_fl::allocator<impeller::EntityPass::Render(impeller::ContentContext&, impeller::RenderTarget const&) const::$_1>, bool (impeller::Entity const&)>::operator()(impeller::Entity const&) (0.20%)</title> | |
<rect x="146.88002" y="563.0" height="15.0" ry="2" fill="rgb(217,199,21)" width="2.3600006" rx="2"/> | |
<text y="573.50" font-size="12" x="149.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::TextContents::PopulateGlyphAtlas(std::_fl::shared_ptr<impeller::LazyGlyphAtlas> const&, float) (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::TextContents::PopulateGlyphAtlas(std::_fl::shared_ptr<impeller::LazyGlyphAtlas> const&, float) (0.20%)</title> | |
<rect width="2.3600006" rx="2" fill="rgb(218,179,13)" x="146.88002" ry="2" height="15.0" y="547.0"/> | |
<text font-family="Verdana" x="149.88" font-size="12" y="557.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('nanov2_malloc (0.10%)')" onclick="zoom(this)"><title >nanov2_malloc (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(237,150,14)" x="146.88002" ry="2" rx="2" y="531.0"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="149.88"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::RenderTarget::SetupDepthStencilAttachments(impeller::Context const&, impeller::RenderTargetAllocator&, impeller::TSize<long long>, bool, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, impeller::RenderTarget::AttachmentConfig) (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::RenderTarget::SetupDepthStencilAttachments(impeller::Context const&, impeller::RenderTargetAllocator&, impeller::TSize<long long>, bool, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, impeller::RenderTarget::AttachmentConfig) (0.20%)</title> | |
<rect ry="2" x="149.24002" width="2.3600006" rx="2" height="15.0" y="579.0" fill="rgb(220,226,28)"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="152.24"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::SurfaceMTL::Present() const (7.80%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::SurfaceMTL::Present() const (7.80%)</title> | |
<rect ry="2" x="156.32" width="92.04001" rx="2" height="15.0" y="595.0" fill="rgb(237,221,18)"/> | |
<text y="605.50" font-size="12" font-family="Verdana" x="159.32">impeller::S..</text> | |
</g> | |
<g class="func_g" onmouseover="s('-[CAMetalDrawable present] (5.60%)')" onclick="zoom(this)" onmouseout="c()"><title >-[CAMetalDrawable present] (5.60%)</title> | |
<rect x="156.32" y="579.0" height="15.0" ry="2" fill="rgb(212,73,14)" width="66.08" rx="2"/> | |
<text y="589.50" font-size="12" x="159.32" font-family="Verdana">-[CAMet..</text> | |
</g> | |
<g onmouseover="s('_os_signpost_emit_with_name_impl (3.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_os_signpost_emit_with_name_impl (3.20%)</title> | |
<rect ry="2" y="563.0" rx="2" width="37.76001" height="15.0" fill="rgb(213,104,38)" x="156.32"/> | |
<text font-family="Verdana" x="159.32" font-size="12" y="573.50">_os..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__os_signpost_emit_impl (3.20%)')" onclick="zoom(this)"><title >__os_signpost_emit_impl (3.20%)</title> | |
<rect rx="2" width="37.76001" fill="rgb(222,28,46)" y="547.0" ry="2" x="156.32" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="557.50" x="159.32">__o..</text> | |
</g> | |
<g onmouseover="s('_os_log_impl_flatten_and_send (3.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_os_log_impl_flatten_and_send (3.10%)</title> | |
<rect x="156.32" height="15.0" fill="rgb(239,80,44)" rx="2" width="36.58" ry="2" y="531.0"/> | |
<text font-family="Verdana" y="541.50" x="159.32" font-size="12">_os..</text> | |
</g> | |
<g class="func_g" onmouseover="s('_os_log_impl_stream (3.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_os_log_impl_stream (3.10%)</title> | |
<rect height="15.0" y="515.0" fill="rgb(254,117,11)" x="156.32" ry="2" rx="2" width="36.58"/> | |
<text font-family="Verdana" x="159.32" y="525.50" font-size="12">_os..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (3.10%)')" class="func_g"><title >_os_activity_stream_reflect (3.10%)</title> | |
<rect width="36.58" y="499.0" height="15.0" fill="rgb(250,105,21)" ry="2" x="156.32" rx="2"/> | |
<text y="509.50" font-size="12" x="159.32" font-family="Verdana">_os..</text> | |
</g> | |
<g class="func_g" onmouseover="s('dispatch_block_perform (1.20%)')" onclick="zoom(this)" onmouseout="c()"><title >dispatch_block_perform (1.20%)</title> | |
<rect ry="2" y="483.0" x="156.32" width="14.160004" fill="rgb(213,124,44)" height="15.0" rx="2"/> | |
<text y="493.50" font-family="Verdana" font-size="12" x="159.32"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_dispatch_block_invoke_direct (1.20%)')" class="func_g"><title >_dispatch_block_invoke_direct (1.20%)</title> | |
<rect fill="rgb(245,100,34)" rx="2" x="156.32" height="15.0" y="467.0" ry="2" width="14.160004"/> | |
<text font-size="12" y="477.50" font-family="Verdana" x="159.32"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_dispatch_client_callout (1.20%)')" onmouseout="c()"><title >_dispatch_client_callout (1.20%)</title> | |
<rect fill="rgb(242,24,15)" x="156.32" width="14.160004" rx="2" y="451.0" ry="2" height="15.0"/> | |
<text x="159.32" y="461.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('___os_activity_stream_reflect_block_invoke (1.20%)')" onmouseout="c()" onclick="zoom(this)"><title >___os_activity_stream_reflect_block_invoke (1.20%)</title> | |
<rect width="14.160004" y="435.0" height="15.0" fill="rgb(226,184,11)" ry="2" rx="2" x="156.32"/> | |
<text y="445.50" x="159.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_simpleroutine (1.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_pipe_simpleroutine (1.20%)</title> | |
<rect fill="rgb(237,149,44)" rx="2" x="156.32" ry="2" y="419.0" width="14.160004" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="429.50" x="159.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_xpc_send_serializer (0.60%)')" class="func_g" onmouseout="c()"><title >_xpc_send_serializer (0.60%)</title> | |
<rect rx="2" y="403.0" x="156.32" width="7.080002" height="15.0" ry="2" fill="rgb(243,48,54)"/> | |
<text x="159.32" font-size="12" font-family="Verdana" y="413.50"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_mach_msg (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_xpc_pipe_mach_msg (0.50%)</title> | |
<rect ry="2" height="15.0" x="156.32" rx="2" fill="rgb(211,22,5)" width="5.899994" y="387.0"/> | |
<text font-size="12" x="159.32" font-family="Verdana" y="397.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('mach_msg (0.50%)')" onmouseout="c()"><title >mach_msg (0.50%)</title> | |
<rect fill="rgb(254,31,16)" height="15.0" x="156.32" y="371.0" ry="2" width="5.899994" rx="2"/> | |
<text font-family="Verdana" x="159.32" y="381.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('mach_msg_overwrite (0.50%)')"><title >mach_msg_overwrite (0.50%)</title> | |
<rect x="156.32" width="5.899994" y="355.0" fill="rgb(211,14,22)" height="15.0" rx="2" ry="2"/> | |
<text y="365.50" x="159.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('mach_msg2_internal (0.50%)')"><title >mach_msg2_internal (0.50%)</title> | |
<rect width="5.899994" ry="2" rx="2" height="15.0" x="156.32" y="339.0" fill="rgb(251,96,16)"/> | |
<text font-family="Verdana" y="349.50" font-size="12" x="159.32"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_msg2_trap (0.40%)')" onmouseout="c()" class="func_g"><title >mach_msg2_trap (0.40%)</title> | |
<rect y="323.0" width="4.720001" height="15.0" rx="2" fill="rgb(236,27,35)" x="156.32" ry="2"/> | |
<text y="333.50" x="159.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_xpc_pipe_pack_message (0.50%)')"><title >_xpc_pipe_pack_message (0.50%)</title> | |
<rect fill="rgb(205,71,34)" height="15.0" x="163.40001" y="403.0" ry="2" width="5.899994" rx="2"/> | |
<text x="166.40" y="413.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_xpc_serializer_pack (0.50%)')" onclick="zoom(this)"><title >_xpc_serializer_pack (0.50%)</title> | |
<rect height="15.0" ry="2" y="387.0" fill="rgb(210,31,15)" width="5.899994" x="163.40001" rx="2"/> | |
<text font-family="Verdana" y="397.50" x="166.40" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_serialize (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_xpc_dictionary_serialize (0.20%)</title> | |
<rect y="371.0" rx="2" height="15.0" fill="rgb(230,77,32)" x="163.40001" ry="2" width="2.3600006"/> | |
<text font-size="12" y="381.50" font-family="Verdana" x="166.40"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_apply_node_f (0.20%)')"><title >_xpc_dictionary_apply_node_f (0.20%)</title> | |
<rect width="2.3600006" ry="2" rx="2" height="15.0" x="163.40001" y="355.0" fill="rgb(248,17,14)"/> | |
<text font-size="12" x="166.40" y="365.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_serialize_apply (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_xpc_dictionary_serialize_apply (0.20%)</title> | |
<rect width="2.3600006" rx="2" fill="rgb(216,57,28)" x="163.40001" y="339.0" height="15.0" ry="2"/> | |
<text y="349.50" x="166.40" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_xpc_serializer_append (0.10%)')"><title >_xpc_serializer_append (0.10%)</title> | |
<rect ry="2" fill="rgb(248,117,4)" rx="2" width="1.1799927" y="323.0" height="15.0" x="163.40001"/> | |
<text y="333.50" x="166.40" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('xpc_dictionary_apply_f (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >xpc_dictionary_apply_f (0.10%)</title> | |
<rect y="371.0" rx="2" height="15.0" fill="rgb(248,110,3)" x="165.76001" ry="2" width="1.1799927"/> | |
<text font-size="12" y="381.50" font-family="Verdana" x="168.76"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_apply_node_f (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_xpc_dictionary_apply_node_f (0.10%)</title> | |
<rect width="1.1799927" rx="2" fill="rgb(216,137,42)" x="165.76001" y="355.0" height="15.0" ry="2"/> | |
<text y="365.50" x="168.76" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_dictionary_apply_f_apply (0.10%)')" onmouseout="c()"><title >_xpc_dictionary_apply_f_apply (0.10%)</title> | |
<rect ry="2" fill="rgb(213,166,49)" rx="2" width="1.1799927" y="339.0" height="15.0" x="165.76001"/> | |
<text x="168.76" y="349.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" class="func_g"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect height="15.0" ry="2" y="403.0" fill="rgb(223,196,19)" width="1.1799927" x="169.3" rx="2"/> | |
<text x="172.30" font-size="12" font-family="Verdana" y="413.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_xpc_serializer_dispose (0.10%)')" onclick="zoom(this)"><title >_xpc_serializer_dispose (0.10%)</title> | |
<rect fill="rgb(253,227,13)" height="15.0" x="169.3" y="387.0" ry="2" width="1.1799927" rx="2"/> | |
<text x="172.30" y="397.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_dispatch_dispose (0.10%)')" onclick="zoom(this)"><title >_dispatch_dispose (0.10%)</title> | |
<rect width="1.1799927" rx="2" fill="rgb(246,163,11)" x="169.3" y="371.0" height="15.0" ry="2"/> | |
<text y="381.50" x="172.30" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('free_small (0.10%)')"><title >free_small (0.10%)</title> | |
<rect ry="2" fill="rgb(211,59,21)" rx="2" width="1.1799927" y="355.0" height="15.0" x="169.3"/> | |
<text font-size="12" x="172.30" font-family="Verdana" y="365.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_os_activity_stream_entry_encode (0.90%)')" onclick="zoom(this)"><title >_os_activity_stream_entry_encode (0.90%)</title> | |
<rect ry="2" y="483.0" x="170.48001" width="10.619995" fill="rgb(244,101,40)" height="15.0" rx="2"/> | |
<text font-family="Verdana" y="493.50" x="173.48" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('xpc_dictionary_set_string (0.50%)')" onclick="zoom(this)"><title >xpc_dictionary_set_string (0.50%)</title> | |
<rect height="15.0" ry="2" y="467.0" fill="rgb(232,135,45)" width="5.899994" x="170.48001" rx="2"/> | |
<text font-size="12" y="477.50" font-family="Verdana" x="173.48"></text> | |
</g> | |
<g onmouseover="s('xpc_string_create (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >xpc_string_create (0.20%)</title> | |
<rect ry="2" fill="rgb(233,109,31)" rx="2" width="2.3600006" y="451.0" height="15.0" x="170.48001"/> | |
<text font-family="Verdana" x="173.48" font-size="12" y="461.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('strdup (0.20%)')"><title >strdup (0.20%)</title> | |
<rect ry="2" fill="rgb(213,127,25)" y="435.0" height="15.0" rx="2" x="170.48001" width="2.3600006"/> | |
<text font-family="Verdana" x="173.48" y="445.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('nanov2_malloc (0.10%)')"><title >nanov2_malloc (0.10%)</title> | |
<rect rx="2" x="170.48001" fill="rgb(241,199,14)" ry="2" height="15.0" y="419.0" width="1.1799927"/> | |
<text x="173.48" y="429.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_string_create (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_string_create (0.10%)</title> | |
<rect rx="2" x="172.84001" fill="rgb(233,202,44)" ry="2" height="15.0" y="451.0" width="1.1799927"/> | |
<text font-family="Verdana" y="461.50" x="175.84" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_os_object_alloc_realized (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_os_object_alloc_realized (0.10%)</title> | |
<rect ry="2" rx="2" y="435.0" height="15.0" fill="rgb(244,17,3)" x="172.84001" width="1.1799927"/> | |
<text y="445.50" font-family="Verdana" font-size="12" x="175.84"></text> | |
</g> | |
<g onmouseover="s('0x195a2739f (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >0x195a2739f (0.10%)</title> | |
<rect width="1.1799927" y="419.0" fill="rgb(219,175,6)" ry="2" rx="2" x="172.84001" height="15.0"/> | |
<text font-size="12" y="429.50" font-family="Verdana" x="175.84"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_dictionary_insert (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_dictionary_insert (0.10%)</title> | |
<rect rx="2" x="174.02" fill="rgb(249,136,48)" ry="2" height="15.0" y="451.0" width="1.1799927"/> | |
<text font-family="Verdana" y="461.50" x="177.02" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('xpc_dictionary_set_uint64 (0.20%)')" onclick="zoom(this)"><title >xpc_dictionary_set_uint64 (0.20%)</title> | |
<rect rx="2" x="176.38" fill="rgb(212,229,47)" ry="2" height="15.0" y="467.0" width="2.3600006"/> | |
<text font-family="Verdana" y="477.50" x="179.38" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_insert (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_xpc_dictionary_insert (0.20%)</title> | |
<rect height="15.0" ry="2" y="451.0" fill="rgb(206,94,19)" width="2.3600006" x="176.38" rx="2"/> | |
<text font-family="Verdana" x="179.38" y="461.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_alloc (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_alloc (0.10%)</title> | |
<rect width="1.1799927" y="435.0" fill="rgb(221,191,2)" ry="2" rx="2" x="176.38" height="15.0"/> | |
<text x="179.38" font-family="Verdana" font-size="12" y="445.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[OS_xpc_object dealloc] (0.40%)')" class="func_g"><title >-[OS_xpc_object dealloc] (0.40%)</title> | |
<rect rx="2" x="181.1" fill="rgb(232,33,27)" ry="2" height="15.0" y="483.0" width="4.720001"/> | |
<text font-family="Verdana" y="493.50" x="184.10" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_dispose (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.40%)</title> | |
<rect rx="2" x="181.1" y="467.0" height="15.0" width="4.720001" ry="2" fill="rgb(251,166,29)"/> | |
<text font-size="12" x="184.10" font-family="Verdana" y="477.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_node_free (0.20%)')" onclick="zoom(this)"><title >_xpc_dictionary_node_free (0.20%)</title> | |
<rect height="15.0" ry="2" y="451.0" fill="rgb(215,202,38)" width="2.3600006" x="181.1" rx="2"/> | |
<text y="461.50" font-size="12" x="184.10" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[OS_xpc_object dealloc] (0.20%)')" class="func_g" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.20%)</title> | |
<rect height="15.0" y="435.0" width="2.3600006" x="181.1" rx="2" ry="2" fill="rgb(228,29,12)"/> | |
<text font-family="Verdana" x="184.10" y="445.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x195a344fb (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x195a344fb (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(241,23,24)" y="419.0" rx="2" ry="2" x="181.1" height="15.0"/> | |
<text x="184.10" y="429.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x195a2ae0f (0.10%)')" class="func_g" onclick="zoom(this)"><title >0x195a2ae0f (0.10%)</title> | |
<rect rx="2" y="403.0" ry="2" height="15.0" fill="rgb(243,84,12)" width="1.1799927" x="181.1"/> | |
<text y="413.50" font-size="12" font-family="Verdana" x="184.10"></text> | |
</g> | |
<g onmouseover="s('0x195a54ff7 (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x195a54ff7 (0.10%)</title> | |
<rect width="1.1799927" rx="2" y="387.0" x="181.1" fill="rgb(226,29,21)" ry="2" height="15.0"/> | |
<text font-family="Verdana" x="184.10" y="397.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('localtime_r (0.20%)')" class="func_g"><title >localtime_r (0.20%)</title> | |
<rect rx="2" x="185.82" fill="rgb(210,103,3)" ry="2" height="15.0" y="483.0" width="2.3600006"/> | |
<text font-family="Verdana" y="493.50" x="188.82" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('tzsetwall_basic (0.10%)')" onclick="zoom(this)"><title >tzsetwall_basic (0.10%)</title> | |
<rect height="15.0" ry="2" y="467.0" fill="rgb(237,143,33)" width="1.1799927" x="185.82" rx="2"/> | |
<text font-family="Verdana" x="188.82" font-size="12" y="477.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('notify_check_tz (0.10%)')" onclick="zoom(this)"><title >notify_check_tz (0.10%)</title> | |
<rect height="15.0" y="451.0" width="1.1799927" x="185.82" rx="2" ry="2" fill="rgb(231,215,2)"/> | |
<text x="188.82" y="461.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('notify_check (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >notify_check (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(218,209,41)" y="435.0" rx="2" ry="2" x="185.82" height="15.0"/> | |
<text font-family="Verdana" x="188.82" y="445.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld3::MachOFile::getUuid(unsigned char*) const (0.10%)')" class="func_g"><title >dyld3::MachOFile::getUuid(unsigned char*) const (0.10%)</title> | |
<rect rx="2" x="188.18001" fill="rgb(252,50,55)" ry="2" height="15.0" y="483.0" width="1.1799927"/> | |
<text font-family="Verdana" y="493.50" x="191.18" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld4::APIs::dyld_image_path_containing_address(void const*) (0.10%)')" class="func_g"><title >dyld4::APIs::dyld_image_path_containing_address(void const*) (0.10%)</title> | |
<rect rx="2" x="189.36" fill="rgb(227,52,41)" ry="2" height="15.0" y="483.0" width="1.1799927"/> | |
<text font-family="Verdana" y="493.50" x="192.36" font-size="12"></text> | |
</g> | |
<g onmouseover="s('layer_private_present_impl(_CAMetalLayerPrivate*, CAMetalDrawable*, double, unsigned int) (2.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >layer_private_present_impl(_CAMetalLayerPrivate*, CAMetalDrawable*, double, unsigned int) (2.30%)</title> | |
<rect ry="2" y="563.0" rx="2" width="27.14" height="15.0" fill="rgb(242,173,26)" x="194.08002"/> | |
<text font-family="Verdana" y="573.50" x="197.08" font-size="12">l..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('CAImageQueueInsertImage_ (2.10%)')" onmouseout="c()"><title >CAImageQueueInsertImage_ (2.10%)</title> | |
<rect rx="2" x="194.08002" fill="rgb(236,60,18)" ry="2" height="15.0" y="547.0" width="24.779999"/> | |
<text x="197.08" y="557.50" font-size="12" font-family="Verdana">C..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_signpost_emit_with_name_impl (2.00%)')" onclick="zoom(this)"><title >_os_signpost_emit_with_name_impl (2.00%)</title> | |
<rect rx="2" fill="rgb(252,29,55)" x="194.08002" height="15.0" width="23.600006" y="531.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="197.08" y="541.50">_..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('__os_signpost_emit_impl (2.00%)')" class="func_g"><title >__os_signpost_emit_impl (2.00%)</title> | |
<rect height="15.0" y="515.0" fill="rgb(217,209,6)" x="194.08002" ry="2" rx="2" width="23.600006"/> | |
<text y="525.50" font-family="Verdana" x="197.08" font-size="12">_..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_os_log_impl_flatten_and_send (2.00%)')" onclick="zoom(this)"><title >_os_log_impl_flatten_and_send (2.00%)</title> | |
<rect width="23.600006" y="499.0" height="15.0" fill="rgb(246,25,31)" ry="2" x="194.08002" rx="2"/> | |
<text font-family="Verdana" x="197.08" font-size="12" y="509.50">_..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_log_impl_stream (2.00%)')" onclick="zoom(this)"><title >_os_log_impl_stream (2.00%)</title> | |
<rect width="23.600006" rx="2" y="483.0" x="194.08002" fill="rgb(229,31,51)" ry="2" height="15.0"/> | |
<text y="493.50" font-size="12" x="197.08" font-family="Verdana">_..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (1.90%)')" onmouseout="c()"><title >_os_activity_stream_reflect (1.90%)</title> | |
<rect x="194.08002" fill="rgb(207,122,16)" ry="2" width="22.419998" height="15.0" rx="2" y="467.0"/> | |
<text font-family="Verdana" x="197.08" y="477.50" font-size="12">_..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_os_activity_stream_entry_encode (0.70%)')"><title >_os_activity_stream_entry_encode (0.70%)</title> | |
<rect y="451.0" height="15.0" fill="rgb(241,78,40)" x="194.08002" ry="2" width="8.2599945" rx="2"/> | |
<text font-size="12" x="197.08" y="461.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('xpc_dictionary_set_string (0.30%)')" onmouseout="c()"><title >xpc_dictionary_set_string (0.30%)</title> | |
<rect fill="rgb(209,147,49)" y="435.0" rx="2" width="3.5399933" ry="2" height="15.0" x="194.08002"/> | |
<text x="197.08" font-size="12" font-family="Verdana" y="445.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('xpc_string_create (0.10%)')" class="func_g"><title >xpc_string_create (0.10%)</title> | |
<rect ry="2" fill="rgb(214,116,30)" width="1.1799927" x="194.08002" y="419.0" height="15.0" rx="2"/> | |
<text y="429.50" font-family="Verdana" x="197.08" font-size="12"></text> | |
</g> | |
<g onmouseover="s('strdup (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >strdup (0.10%)</title> | |
<rect y="403.0" height="15.0" ry="2" fill="rgb(254,188,31)" rx="2" width="1.1799927" x="194.08002"/> | |
<text font-family="Verdana" x="197.08" font-size="12" y="413.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_dictionary_insert (0.10%)')" onmouseout="c()"><title >_xpc_dictionary_insert (0.10%)</title> | |
<rect width="1.1799927" y="419.0" ry="2" x="195.26001" height="15.0" rx="2" fill="rgb(245,194,30)"/> | |
<text font-family="Verdana" x="198.26" y="429.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('xpc_dictionary_set_uint64 (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >xpc_dictionary_set_uint64 (0.10%)</title> | |
<rect ry="2" y="435.0" x="197.62001" fill="rgb(214,132,36)" rx="2" height="15.0" width="1.1799927"/> | |
<text y="445.50" font-family="Verdana" x="200.62" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dispatch_block_perform (0.70%)')" class="func_g" onclick="zoom(this)"><title >dispatch_block_perform (0.70%)</title> | |
<rect ry="2" y="451.0" x="202.34001" fill="rgb(212,192,34)" rx="2" height="15.0" width="8.2599945"/> | |
<text y="461.50" font-family="Verdana" x="205.34" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_dispatch_block_invoke_direct (0.70%)')" onmouseout="c()"><title >_dispatch_block_invoke_direct (0.70%)</title> | |
<rect width="8.2599945" y="435.0" ry="2" x="202.34001" height="15.0" rx="2" fill="rgb(240,177,36)"/> | |
<text y="445.50" font-family="Verdana" font-size="12" x="205.34"></text> | |
</g> | |
<g onmouseover="s('_dispatch_client_callout (0.70%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_dispatch_client_callout (0.70%)</title> | |
<rect x="202.34001" height="15.0" y="419.0" fill="rgb(229,37,51)" rx="2" width="8.2599945" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="205.34" y="429.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('___os_activity_stream_reflect_block_invoke (0.70%)')"><title >___os_activity_stream_reflect_block_invoke (0.70%)</title> | |
<rect y="403.0" width="8.2599945" x="202.34001" rx="2" fill="rgb(244,153,42)" ry="2" height="15.0"/> | |
<text font-size="12" y="413.50" font-family="Verdana" x="205.34"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_xpc_pipe_simpleroutine (0.70%)')" onmouseout="c()"><title >_xpc_pipe_simpleroutine (0.70%)</title> | |
<rect rx="2" ry="2" fill="rgb(212,138,27)" y="387.0" height="15.0" x="202.34001" width="8.2599945"/> | |
<text x="205.34" y="397.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_xpc_pipe_pack_message (0.30%)')" class="func_g" onmouseout="c()"><title >_xpc_pipe_pack_message (0.30%)</title> | |
<rect fill="rgb(214,13,15)" height="15.0" rx="2" ry="2" width="3.5399933" x="202.34001" y="371.0"/> | |
<text font-size="12" font-family="Verdana" x="205.34" y="381.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_xpc_serializer_pack (0.30%)')"><title >_xpc_serializer_pack (0.30%)</title> | |
<rect width="3.5399933" x="202.34001" rx="2" height="15.0" fill="rgb(247,196,43)" ry="2" y="355.0"/> | |
<text y="365.50" font-size="12" font-family="Verdana" x="205.34"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_serialize (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_dictionary_serialize (0.20%)</title> | |
<rect height="15.0" fill="rgb(210,47,52)" rx="2" x="202.34001" width="2.3600006" ry="2" y="339.0"/> | |
<text y="349.50" font-family="Verdana" font-size="12" x="205.34"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_dictionary_apply_node_f (0.20%)')" onmouseout="c()"><title >_xpc_dictionary_apply_node_f (0.20%)</title> | |
<rect height="15.0" rx="2" ry="2" y="323.0" x="202.34001" fill="rgb(250,83,53)" width="2.3600006"/> | |
<text x="205.34" y="333.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_serialize_apply (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_dictionary_serialize_apply (0.20%)</title> | |
<rect rx="2" width="2.3600006" ry="2" fill="rgb(210,203,4)" height="15.0" x="202.34001" y="307.0"/> | |
<text x="205.34" y="317.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_xpc_send_serializer (0.20%)')" class="func_g" onmouseout="c()"><title >_xpc_send_serializer (0.20%)</title> | |
<rect fill="rgb(243,84,35)" height="15.0" rx="2" ry="2" width="2.3600006" x="205.88" y="371.0"/> | |
<text font-size="12" font-family="Verdana" x="208.88" y="381.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_xpc_pipe_mach_msg (0.20%)')" onmouseout="c()"><title >_xpc_pipe_mach_msg (0.20%)</title> | |
<rect height="15.0" fill="rgb(245,197,45)" rx="2" x="205.88" width="2.3600006" ry="2" y="355.0"/> | |
<text y="365.50" font-size="12" font-family="Verdana" x="208.88"></text> | |
</g> | |
<g onmouseover="s('mach_msg (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >mach_msg (0.20%)</title> | |
<rect ry="2" height="15.0" fill="rgb(211,209,45)" width="2.3600006" x="205.88" rx="2" y="339.0"/> | |
<text y="349.50" font-size="12" x="208.88" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg_overwrite (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >mach_msg_overwrite (0.20%)</title> | |
<rect ry="2" x="205.88" height="15.0" width="2.3600006" fill="rgb(213,148,23)" rx="2" y="323.0"/> | |
<text font-size="12" x="208.88" font-family="Verdana" y="333.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_msg2_internal (0.20%)')" class="func_g" onmouseout="c()"><title >mach_msg2_internal (0.20%)</title> | |
<rect rx="2" width="2.3600006" ry="2" fill="rgb(239,3,54)" x="205.88" y="307.0" height="15.0"/> | |
<text y="317.50" font-size="12" x="208.88" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('mach_msg2_trap (0.20%)')" class="func_g" onclick="zoom(this)"><title >mach_msg2_trap (0.20%)</title> | |
<rect ry="2" fill="rgb(231,60,46)" rx="2" y="291.0" x="205.88" width="2.3600006" height="15.0"/> | |
<text y="301.50" x="208.88" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect fill="rgb(243,43,28)" height="15.0" rx="2" ry="2" width="1.1799927" x="208.24" y="371.0"/> | |
<text font-family="Verdana" x="211.24" font-size="12" y="381.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[OS_xpc_object dealloc] (0.30%)')"><title >-[OS_xpc_object dealloc] (0.30%)</title> | |
<rect ry="2" y="451.0" x="210.60002" fill="rgb(220,103,0)" rx="2" height="15.0" width="3.5399933"/> | |
<text y="461.50" font-family="Verdana" x="213.60" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_xpc_dictionary_dispose (0.30%)')" class="func_g" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.30%)</title> | |
<rect y="435.0" height="15.0" fill="rgb(242,29,18)" x="210.60002" ry="2" width="3.5399933" rx="2"/> | |
<text y="445.50" font-size="12" font-family="Verdana" x="213.60"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_node_free (0.20%)')" onclick="zoom(this)"><title >_xpc_dictionary_node_free (0.20%)</title> | |
<rect ry="2" x="210.60002" height="15.0" width="2.3600006" fill="rgb(224,124,39)" rx="2" y="419.0"/> | |
<text y="429.50" x="213.60" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect ry="2" height="15.0" x="210.60002" width="1.1799927" y="403.0" rx="2" fill="rgb(220,147,23)"/> | |
<text x="213.60" font-family="Verdana" font-size="12" y="413.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('localtime_r (0.10%)')"><title >localtime_r (0.10%)</title> | |
<rect ry="2" height="15.0" x="214.14001" width="1.1799927" y="451.0" rx="2" fill="rgb(206,11,33)"/> | |
<text y="461.50" font-family="Verdana" x="217.14" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x2288744df (0.90%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x2288744df (0.90%)</title> | |
<rect ry="2" y="579.0" rx="2" width="10.619995" height="15.0" fill="rgb(217,18,46)" x="222.40001"/> | |
<text font-family="Verdana" y="589.50" x="225.40" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228871f7f (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >0x228871f7f (0.40%)</title> | |
<rect rx="2" x="222.40001" fill="rgb(232,85,49)" ry="2" height="15.0" y="563.0" width="4.720001"/> | |
<text font-family="Verdana" x="225.40" font-size="12" y="573.50"></text> | |
</g> | |
<g onmouseover="s('-[IOGPUMetalCommandBuffer initWithQueue:retainedReferences:synchronousDebugMode:] (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[IOGPUMetalCommandBuffer initWithQueue:retainedReferences:synchronousDebugMode:] (0.40%)</title> | |
<rect ry="2" height="15.0" x="222.40001" width="4.720001" y="547.0" rx="2" fill="rgb(230,141,48)"/> | |
<text font-size="12" font-family="Verdana" y="557.50" x="225.40"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('IOGPUMetalCommandBufferStoragePoolCreateStorage (0.40%)')" onclick="zoom(this)"><title >IOGPUMetalCommandBufferStoragePoolCreateStorage (0.40%)</title> | |
<rect ry="2" y="531.0" x="222.40001" fill="rgb(228,87,9)" rx="2" height="15.0" width="4.720001"/> | |
<text font-size="12" font-family="Verdana" x="225.40" y="541.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('IOGPUMetalCommandBufferStorageCreateExt (0.40%)')" class="func_g"><title >IOGPUMetalCommandBufferStorageCreateExt (0.40%)</title> | |
<rect height="15.0" y="515.0" ry="2" fill="rgb(246,227,21)" x="222.40001" rx="2" width="4.720001"/> | |
<text y="525.50" font-family="Verdana" x="225.40" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('IOGPUResourceListInit (0.40%)')" onclick="zoom(this)"><title >IOGPUResourceListInit (0.40%)</title> | |
<rect height="15.0" y="499.0" fill="rgb(249,44,39)" x="222.40001" ry="2" rx="2" width="4.720001"/> | |
<text font-family="Verdana" x="225.40" font-size="12" y="509.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('szone_malloc_should_clear (0.40%)')" onclick="zoom(this)"><title >szone_malloc_should_clear (0.40%)</title> | |
<rect width="4.720001" y="483.0" height="15.0" fill="rgb(206,222,36)" ry="2" x="222.40001" rx="2"/> | |
<text y="493.50" font-size="12" x="225.40" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('small_malloc_should_clear (0.20%)')"><title >small_malloc_should_clear (0.20%)</title> | |
<rect width="2.3600006" rx="2" y="467.0" x="222.40001" fill="rgb(236,25,2)" ry="2" height="15.0"/> | |
<text y="477.50" font-family="Verdana" x="225.40" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_platform_memset (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >_platform_memset (0.20%)</title> | |
<rect height="15.0" fill="rgb(255,205,18)" rx="2" x="222.40001" width="2.3600006" ry="2" y="451.0"/> | |
<text y="461.50" x="225.40" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('large_malloc (0.10%)')"><title >large_malloc (0.10%)</title> | |
<rect width="1.1799927" rx="2" y="467.0" x="224.76001" fill="rgb(210,208,24)" ry="2" height="15.0"/> | |
<text y="477.50" font-family="Verdana" x="227.76" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('mvm_allocate_pages (0.10%)')" onmouseout="c()"><title >mvm_allocate_pages (0.10%)</title> | |
<rect height="15.0" fill="rgb(235,173,21)" rx="2" x="224.76001" width="1.1799927" ry="2" y="451.0"/> | |
<text y="461.50" x="227.76" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('mach_vm_map (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >mach_vm_map (0.10%)</title> | |
<rect ry="2" height="15.0" fill="rgb(223,100,20)" width="1.1799927" x="224.76001" rx="2" y="435.0"/> | |
<text x="227.76" font-size="12" y="445.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_kernelrpc_mach_vm_map_trap (0.10%)')" class="func_g" onmouseout="c()"><title >_kernelrpc_mach_vm_map_trap (0.10%)</title> | |
<rect rx="2" y="419.0" width="1.1799927" height="15.0" fill="rgb(231,61,18)" ry="2" x="224.76001"/> | |
<text y="429.50" font-size="12" x="227.76" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x2288720cf (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >0x2288720cf (0.10%)</title> | |
<rect rx="2" x="227.12001" fill="rgb(212,14,1)" ry="2" height="15.0" y="563.0" width="1.1799927"/> | |
<text font-family="Verdana" x="230.12" font-size="12" y="573.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_platform_memset (0.10%)')" onmouseout="c()"><title >_platform_memset (0.10%)</title> | |
<rect ry="2" height="15.0" x="227.12001" width="1.1799927" y="547.0" rx="2" fill="rgb(220,120,0)"/> | |
<text x="230.12" y="557.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228872193 (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >0x228872193 (0.10%)</title> | |
<rect rx="2" x="228.3" fill="rgb(242,200,54)" ry="2" height="15.0" y="563.0" width="1.1799927"/> | |
<text font-family="Verdana" x="231.30" font-size="12" y="573.50"></text> | |
</g> | |
<g onmouseover="s('_platform_memset (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_platform_memset (0.10%)</title> | |
<rect ry="2" height="15.0" x="228.3" width="1.1799927" y="547.0" rx="2" fill="rgb(245,153,7)"/> | |
<text font-size="12" font-family="Verdana" y="557.50" x="231.30"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228872187 (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >0x228872187 (0.10%)</title> | |
<rect rx="2" x="229.48001" fill="rgb(238,123,51)" ry="2" height="15.0" y="563.0" width="1.1799927"/> | |
<text font-family="Verdana" x="232.48" font-size="12" y="573.50"></text> | |
</g> | |
<g onmouseover="s('0x1975b1d77 (0.80%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x1975b1d77 (0.80%)</title> | |
<rect ry="2" y="579.0" rx="2" width="9.440002" height="15.0" fill="rgb(243,57,23)" x="233.02002"/> | |
<text font-family="Verdana" y="589.50" x="236.02" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_pthread_cond_wait (0.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_pthread_cond_wait (0.80%)</title> | |
<rect width="9.440002" rx="2" y="563.0" x="233.02002" fill="rgb(239,157,52)" ry="2" height="15.0"/> | |
<text font-family="Verdana" x="236.02" y="573.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('__psynch_cvwait (0.80%)')" onmouseout="c()"><title >__psynch_cvwait (0.80%)</title> | |
<rect rx="2" x="233.02002" fill="rgb(245,131,5)" ry="2" height="15.0" y="547.0" width="9.440002"/> | |
<text x="236.02" y="557.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x22887338b (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x22887338b (0.10%)</title> | |
<rect ry="2" y="579.0" rx="2" width="1.1799927" height="15.0" fill="rgb(240,35,3)" x="242.46002"/> | |
<text font-family="Verdana" y="589.50" x="245.46" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::SurfaceMTL::MakeFromTexture(std::_fl::shared_ptr<impeller::Context> const&, id<MTLTexture>, std::_fl::optional<impeller::TRect<long long>>, id<CAMetalDrawable>) (1.60%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::SurfaceMTL::MakeFromTexture(std::_fl::shared_ptr<impeller::Context> const&, id<MTLTexture>, std::_fl::optional<impeller::TRect<long long>>, id<CAMetalDrawable>) (1.60%)</title> | |
<rect ry="2" x="253.08002" width="18.880005" rx="2" height="15.0" y="611.0" fill="rgb(253,75,31)"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="256.08"></text> | |
</g> | |
<g onmouseover="s('impeller::AllocatorMTL::OnCreateTexture(impeller::TextureDescriptor const&) (1.00%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >impeller::AllocatorMTL::OnCreateTexture(impeller::TextureDescriptor const&) (1.00%)</title> | |
<rect width="11.799988" rx="2" y="595.0" x="253.08002" fill="rgb(207,90,51)" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="605.50" x="256.08" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228ca2537 (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >0x228ca2537 (0.20%)</title> | |
<rect rx="2" x="253.08002" fill="rgb(220,105,31)" ry="2" height="15.0" y="579.0" width="2.3600006"/> | |
<text font-family="Verdana" x="256.08" font-size="12" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228ca26e7 (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >0x228ca26e7 (0.20%)</title> | |
<rect rx="2" x="255.44002" fill="rgb(228,230,53)" ry="2" height="15.0" y="579.0" width="2.3600006"/> | |
<text font-family="Verdana" x="258.44" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('-[IOGPUMetalTexture initWithDevice:descriptor:sysMemSize:sysMemRowBytes:vidMemSize:vidMemRowBytes:args:argsSize:] (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[IOGPUMetalTexture initWithDevice:descriptor:sysMemSize:sysMemRowBytes:vidMemSize:vidMemRowBytes:args:argsSize:] (0.20%)</title> | |
<rect x="255.44002" y="563.0" width="2.3600006" height="15.0" rx="2" fill="rgb(224,173,18)" ry="2"/> | |
<text x="258.44" y="573.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('+[IOGPUMetalTexture initNewTextureDataWithDevice:descriptor:sysMemSize:sysMemRowBytes:vidMemSize:vidMemRowBytes:args:] (0.10%)')" onclick="zoom(this)"><title >+[IOGPUMetalTexture initNewTextureDataWithDevice:descriptor:sysMemSize:sysMemRowBytes:vidMemSize:vidMemRowBytes:args:] (0.10%)</title> | |
<rect y="547.0" width="1.1800079" ry="2" x="255.44002" height="15.0" fill="rgb(210,141,36)" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="557.50" x="258.44"></text> | |
</g> | |
<g onmouseover="s('0x1975b4337 (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >0x1975b4337 (0.10%)</title> | |
<rect x="255.44002" height="15.0" y="531.0" rx="2" width="1.1800079" fill="rgb(224,11,2)" ry="2"/> | |
<text font-family="Verdana" y="541.50" x="258.44" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x228ca2503 (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >0x228ca2503 (0.10%)</title> | |
<rect rx="2" x="257.80002" fill="rgb(239,218,29)" ry="2" height="15.0" y="579.0" width="1.1799927"/> | |
<text font-family="Verdana" x="260.80" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('impeller::TextureMTL::SetLabel(std::_fl::basic_string_view<char, std::_fl::char_traits<char>>) (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >impeller::TextureMTL::SetLabel(std::_fl::basic_string_view<char, std::_fl::char_traits<char>>) (0.30%)</title> | |
<rect width="3.5400085" rx="2" y="595.0" x="264.88" fill="rgb(248,226,45)" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="605.50" x="267.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[IOGPUMetalResource setLabel:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[IOGPUMetalResource setLabel:] (0.10%)</title> | |
<rect rx="2" x="264.88" fill="rgb(217,187,46)" ry="2" height="15.0" y="579.0" width="1.1799927"/> | |
<text font-family="Verdana" x="267.88" font-size="12" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('+[NSString stringWithUTF8String:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >+[NSString stringWithUTF8String:] (0.10%)</title> | |
<rect rx="2" x="266.06" fill="rgb(217,55,4)" ry="2" height="15.0" y="579.0" width="1.1799927"/> | |
<text font-family="Verdana" x="269.06" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca1d9ef (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19ca1d9ef (0.10%)</title> | |
<rect height="15.0" y="563.0" fill="rgb(232,31,15)" rx="2" width="1.1799927" ry="2" x="266.06"/> | |
<text y="573.50" x="269.06" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (1.30%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (1.30%)</title> | |
<rect ry="2" x="271.96002" width="15.339996" rx="2" height="15.0" y="611.0" fill="rgb(223,161,28)"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="274.96"></text> | |
</g> | |
<g onmouseover="s('impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.80%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.80%)</title> | |
<rect ry="2" y="595.0" rx="2" width="9.440002" height="15.0" fill="rgb(253,63,40)" x="271.96002"/> | |
<text font-family="Verdana" y="605.50" x="274.96" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, SkRect const&) const (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, SkRect const&) const (0.40%)</title> | |
<rect height="15.0" y="579.0" fill="rgb(227,30,10)" rx="2" width="4.720001" ry="2" x="271.96002"/> | |
<text font-family="Verdana" x="274.96" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.30%)</title> | |
<rect x="271.96002" fill="rgb(214,16,29)" y="563.0" rx="2" height="15.0" ry="2" width="3.5400085"/> | |
<text y="573.50" x="274.96" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.10%)')" onmouseout="c()"><title >impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.10%)</title> | |
<rect y="547.0" width="1.1799927" rx="2" height="15.0" x="271.96002" ry="2" fill="rgb(237,195,30)"/> | |
<text font-size="12" font-family="Verdana" x="274.96" y="557.50"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, SkRect const&) const (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, SkRect const&) const (0.10%)</title> | |
<rect ry="2" height="15.0" width="1.1799927" x="271.96002" y="531.0" fill="rgb(238,73,27)" rx="2"/> | |
<text font-family="Verdana" y="541.50" x="274.96" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.10%)')" class="func_g"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" x="271.96002" y="515.0" width="1.1799927" fill="rgb(252,214,16)"/> | |
<text font-family="Verdana" x="274.96" font-size="12" y="525.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.30%)</title> | |
<rect height="15.0" y="579.0" fill="rgb(211,45,25)" rx="2" width="3.5400085" ry="2" x="276.68002"/> | |
<text font-family="Verdana" x="279.68" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.10%)</title> | |
<rect y="563.0" width="1.1799927" rx="2" height="15.0" x="276.68002" ry="2" fill="rgb(253,150,45)"/> | |
<text y="573.50" x="279.68" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.10%)')" onmouseout="c()"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" x="276.68002" y="547.0" width="1.1799927" fill="rgb(247,65,27)"/> | |
<text font-size="12" font-family="Verdana" x="279.68" y="557.50"></text> | |
</g> | |
<g onmouseover="s('impeller::DlDispatcher::clipRect(SkRect const&, flutter::DlCanvas::ClipOp, bool) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >impeller::DlDispatcher::clipRect(SkRect const&, flutter::DlCanvas::ClipOp, bool) (0.10%)</title> | |
<rect ry="2" y="595.0" rx="2" width="1.1799927" height="15.0" fill="rgb(246,183,22)" x="281.40002"/> | |
<text font-family="Verdana" y="605.50" x="284.40" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::Canvas::ClipRect(impeller::TRect<float> const&, impeller::Entity::ClipOperation) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >impeller::Canvas::ClipRect(impeller::TRect<float> const&, impeller::Entity::ClipOperation) (0.10%)</title> | |
<rect height="15.0" y="579.0" fill="rgb(223,216,7)" rx="2" width="1.1799927" ry="2" x="281.40002"/> | |
<text font-family="Verdana" x="284.40" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('impeller::Canvas::Restore() (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >impeller::Canvas::Restore() (0.10%)</title> | |
<rect ry="2" y="595.0" rx="2" width="1.1799927" height="15.0" fill="rgb(233,14,45)" x="282.58002"/> | |
<text font-family="Verdana" y="605.50" x="285.58" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::SurfaceFrame::BuildDisplayList() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::SurfaceFrame::BuildDisplayList() (0.10%)</title> | |
<rect ry="2" x="287.30002" width="1.1799927" rx="2" height="15.0" y="611.0" fill="rgb(241,173,37)"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="290.30"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListBuilder::Build() (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::Build() (0.10%)</title> | |
<rect ry="2" y="595.0" rx="2" width="1.1799927" height="15.0" fill="rgb(227,72,22)" x="287.30002"/> | |
<text font-family="Verdana" y="605.50" x="290.30" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayListStorage::realloc(unsigned long) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListStorage::realloc(unsigned long) (0.10%)</title> | |
<rect height="15.0" y="579.0" fill="rgb(217,81,42)" rx="2" width="1.1799927" ry="2" x="287.30002"/> | |
<text font-family="Verdana" x="290.30" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('realloc (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >realloc (0.10%)</title> | |
<rect y="563.0" width="1.1799927" rx="2" height="15.0" x="287.30002" ry="2" fill="rgb(214,111,5)"/> | |
<text y="573.50" x="290.30" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('malloc_zone_realloc (0.10%)')" onclick="zoom(this)"><title >malloc_zone_realloc (0.10%)</title> | |
<rect y="547.0" width="1.1799927" ry="2" height="15.0" fill="rgb(224,172,45)" rx="2" x="287.30002"/> | |
<text font-size="12" font-family="Verdana" y="557.50" x="290.30"></text> | |
</g> | |
<g onmouseover="s('szone_realloc (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >szone_realloc (0.10%)</title> | |
<rect x="287.30002" rx="2" y="531.0" width="1.1799927" ry="2" height="15.0" fill="rgb(218,59,42)"/> | |
<text y="541.50" font-family="Verdana" x="290.30" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('free_small (0.10%)')" onclick="zoom(this)"><title >free_small (0.10%)</title> | |
<rect rx="2" y="515.0" ry="2" fill="rgb(228,195,16)" height="15.0" width="1.1799927" x="287.30002"/> | |
<text font-family="Verdana" y="525.50" x="290.30" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('small_madvise_free_range_no_lock (0.10%)')" onclick="zoom(this)"><title >small_madvise_free_range_no_lock (0.10%)</title> | |
<rect height="15.0" fill="rgb(242,6,38)" width="1.1799927" ry="2" y="499.0" rx="2" x="287.30002"/> | |
<text font-size="12" y="509.50" font-family="Verdana" x="290.30"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('mvm_madvise_free (0.10%)')"><title >mvm_madvise_free (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="483.0" fill="rgb(235,97,4)" rx="2" x="287.30002" ry="2"/> | |
<text y="493.50" font-family="Verdana" x="290.30" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('madvise (0.10%)')" onmouseout="c()" class="func_g"><title >madvise (0.10%)</title> | |
<rect y="467.0" rx="2" width="1.1799927" height="15.0" fill="rgb(225,183,46)" x="287.30002" ry="2"/> | |
<text y="477.50" x="290.30" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>>, bool (impeller::RenderTarget&)>::destroy_deallocate() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>>, bool (impeller::RenderTarget&)>::destroy_deallocate() (0.10%)</title> | |
<rect ry="2" x="288.48" width="1.1799927" rx="2" height="15.0" y="611.0" fill="rgb(248,166,19)"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="291.48"></text> | |
</g> | |
<g onmouseover="s('std::_fl::__function::__alloc_func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>>, bool (impeller::RenderTarget&)>::destroy[abi:v15000]() (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >std::_fl::__function::__alloc_func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*)::'lambda'(impeller::RenderTarget&)>>, bool (impeller::RenderTarget&)>::destroy[abi:v15000]() (0.10%)</title> | |
<rect ry="2" y="595.0" rx="2" width="1.1799927" height="15.0" fill="rgb(215,146,2)" x="288.48"/> | |
<text font-family="Verdana" y="605.50" x="291.48" font-size="12"></text> | |
</g> | |
<g onmouseover="s('std::_fl::unique_ptr<impeller::EntityPass, std::_fl::default_delete<impeller::EntityPass>>::reset[abi:v15000](impeller::EntityPass*) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >std::_fl::unique_ptr<impeller::EntityPass, std::_fl::default_delete<impeller::EntityPass>>::reset[abi:v15000](impeller::EntityPass*) (0.10%)</title> | |
<rect height="15.0" y="579.0" fill="rgb(221,42,42)" rx="2" width="1.1799927" ry="2" x="288.48"/> | |
<text font-family="Verdana" x="291.48" y="589.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('impeller::EntityPass::~EntityPass() (0.10%)')" onmouseout="c()"><title >impeller::EntityPass::~EntityPass() (0.10%)</title> | |
<rect y="563.0" width="1.1799927" rx="2" height="15.0" x="288.48" ry="2" fill="rgb(233,222,24)"/> | |
<text x="291.48" y="573.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('std::_fl::shared_ptr<impeller::Contents>::~shared_ptr[abi:v15000]() (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >std::_fl::shared_ptr<impeller::Contents>::~shared_ptr[abi:v15000]() (0.10%)</title> | |
<rect y="547.0" width="1.1799927" ry="2" height="15.0" fill="rgb(249,107,13)" rx="2" x="288.48"/> | |
<text font-family="Verdana" y="557.50" x="291.48" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayList::~DisplayList() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayList::~DisplayList() (0.10%)</title> | |
<rect ry="2" x="289.66" width="1.1799927" rx="2" height="15.0" y="611.0" fill="rgb(254,218,34)"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="292.66"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayList::~DisplayList() (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayList::~DisplayList() (0.10%)</title> | |
<rect height="15.0" y="595.0" fill="rgb(242,220,33)" rx="2" width="1.1799927" ry="2" x="289.66"/> | |
<text font-family="Verdana" y="605.50" x="292.66" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::DlDispatcher::DlDispatcher(impeller::TRect<long long>) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::DlDispatcher::DlDispatcher(impeller::TRect<long long>) (0.10%)</title> | |
<rect ry="2" x="290.84" width="1.1799927" rx="2" height="15.0" y="611.0" fill="rgb(250,70,11)"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="293.84"></text> | |
</g> | |
<g onmouseover="s('impeller::Canvas::Initialize(std::_fl::optional<impeller::TRect<float>>) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >impeller::Canvas::Initialize(std::_fl::optional<impeller::TRect<float>>) (0.10%)</title> | |
<rect ry="2" y="595.0" rx="2" width="1.1799927" height="15.0" fill="rgb(222,71,7)" x="290.84"/> | |
<text font-family="Verdana" y="605.50" x="293.84" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CA::Transaction::commit() (12.90%)')" onmouseout="c()" onclick="zoom(this)"><title >CA::Transaction::commit() (12.90%)</title> | |
<rect ry="2" x="300.28003" width="152.22" rx="2" height="15.0" y="643.0" fill="rgb(227,205,22)"/> | |
<text y="653.50" font-size="12" font-family="Verdana" x="303.28">CA::Transaction::co..</text> | |
</g> | |
<g onmouseover="s('CA::Context::commit_transaction(CA::Transaction*, double, double*) (10.90%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >CA::Context::commit_transaction(CA::Transaction*, double, double*) (10.90%)</title> | |
<rect ry="2" y="627.0" rx="2" width="128.62" height="15.0" fill="rgb(209,170,53)" x="300.28003"/> | |
<text font-family="Verdana" y="637.50" x="303.28" font-size="12">CA::Context::com..</text> | |
</g> | |
<g class="func_g" onmouseover="s('CA::Layer::layout_and_display_if_needed(CA::Transaction*) (9.00%)')" onclick="zoom(this)" onmouseout="c()"><title >CA::Layer::layout_and_display_if_needed(CA::Transaction*) (9.00%)</title> | |
<rect y="611.0" width="106.20001" ry="2" height="15.0" fill="rgb(233,28,48)" rx="2" x="300.28003"/> | |
<text font-family="Verdana" x="303.28" font-size="12" y="621.50">CA::Layer::la..</text> | |
</g> | |
<g onmouseover="s('CA::Layer::layout_if_needed(CA::Transaction*) (9.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >CA::Layer::layout_if_needed(CA::Transaction*) (9.00%)</title> | |
<rect y="595.0" width="106.20001" rx="2" height="15.0" x="300.28003" ry="2" fill="rgb(227,121,22)"/> | |
<text y="605.50" x="303.28" font-family="Verdana" font-size="12">CA::Layer::la..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIView(CALayerDelegate) layoutSublayersOfLayer:] (8.30%)')" onmouseout="c()"><title >-[UIView(CALayerDelegate) layoutSublayersOfLayer:] (8.30%)</title> | |
<rect ry="2" fill="rgb(223,152,4)" rx="2" x="300.28003" height="15.0" y="579.0" width="97.94"/> | |
<text x="303.28" font-family="Verdana" font-size="12" y="589.50">-[UIView(CA..</text> | |
</g> | |
<g onmouseover="s('-[FlutterViewController viewDidLayoutSubviews] (5.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[FlutterViewController viewDidLayoutSubviews] (5.30%)</title> | |
<rect fill="rgb(219,152,15)" rx="2" x="300.28003" ry="2" y="563.0" height="15.0" width="62.54001"/> | |
<text font-family="Verdana" y="573.50" x="303.28" font-size="12">-[Flut..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIScrollView setFrame:] (2.70%)')" class="func_g"><title >-[UIScrollView setFrame:] (2.70%)</title> | |
<rect width="31.860016" fill="rgb(229,221,18)" x="300.28003" height="15.0" rx="2" ry="2" y="547.0"/> | |
<text font-family="Verdana" x="303.28" font-size="12" y="557.50">-[..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIScrollView _adjustContentOffsetIfNecessary] (2.40%)')" onclick="zoom(this)"><title >-[UIScrollView _adjustContentOffsetIfNecessary] (2.40%)</title> | |
<rect rx="2" x="300.28003" y="531.0" width="28.320007" height="15.0" ry="2" fill="rgb(221,16,46)"/> | |
<text font-size="12" x="303.28" font-family="Verdana" y="541.50">-[..</text> | |
</g> | |
<g onmouseover="s('-[UIScrollView setContentOffset:] (2.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIScrollView setContentOffset:] (2.10%)</title> | |
<rect ry="2" x="300.28003" fill="rgb(253,9,32)" height="15.0" y="515.0" width="24.779999" rx="2"/> | |
<text y="525.50" font-size="12" x="303.28" font-family="Verdana">-..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (1.10%)')" onmouseout="c()"><title >-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (1.10%)</title> | |
<rect x="300.28003" y="499.0" rx="2" fill="rgb(205,78,10)" ry="2" width="12.980011" height="15.0"/> | |
<text y="509.50" font-size="12" x="303.28" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _layoutVerticalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:] (0.70%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIScrollView _layoutVerticalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:] (0.70%)</title> | |
<rect y="483.0" width="8.26001" rx="2" ry="2" fill="rgb(248,22,21)" height="15.0" x="300.28003"/> | |
<text x="303.28" font-size="12" y="493.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[UIView(Geometry) setFrame:] (0.40%)')"><title >-[UIView(Geometry) setFrame:] (0.40%)</title> | |
<rect ry="2" x="300.28003" y="467.0" fill="rgb(245,56,39)" rx="2" height="15.0" width="4.720001"/> | |
<text font-family="Verdana" x="303.28" font-size="12" y="477.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIView _backing_setFrame:] (0.10%)')" onclick="zoom(this)"><title >-[UIView _backing_setFrame:] (0.10%)</title> | |
<rect x="300.28003" width="1.1799927" height="15.0" rx="2" ry="2" fill="rgb(232,176,21)" y="451.0"/> | |
<text y="461.50" font-size="12" font-family="Verdana" x="303.28"></text> | |
</g> | |
<g onmouseover="s('-[CALayer setFrame:] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[CALayer setFrame:] (0.10%)</title> | |
<rect ry="2" fill="rgb(210,109,42)" x="300.28003" width="1.1799927" y="435.0" rx="2" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="445.50" x="303.28"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[CALayer setPosition:] (0.10%)')" onclick="zoom(this)"><title >-[CALayer setPosition:] (0.10%)</title> | |
<rect width="1.1799927" x="300.28003" y="419.0" fill="rgb(236,86,36)" ry="2" height="15.0" rx="2"/> | |
<text font-size="12" y="429.50" font-family="Verdana" x="303.28"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.10%)')" onmouseout="c()" class="func_g"><title >CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.10%)</title> | |
<rect rx="2" x="300.28003" fill="rgb(250,156,12)" height="15.0" width="1.1799927" ry="2" y="403.0"/> | |
<text x="303.28" y="413.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIView _updateInferredLayoutMarginsFromSuperview:] (0.10%)')" onclick="zoom(this)"><title >-[UIView _updateInferredLayoutMarginsFromSuperview:] (0.10%)</title> | |
<rect x="301.46002" width="1.1799927" height="15.0" rx="2" ry="2" fill="rgb(241,0,31)" y="451.0"/> | |
<text y="461.50" font-size="12" font-family="Verdana" x="304.46"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScrollView _verticalScrollIndicatorWidth] (0.10%)')" onmouseout="c()"><title >-[UIScrollView _verticalScrollIndicatorWidth] (0.10%)</title> | |
<rect ry="2" x="305.00003" y="467.0" fill="rgb(251,35,40)" rx="2" height="15.0" width="1.1799927"/> | |
<text font-family="Verdana" y="477.50" font-size="12" x="308.00"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _layoutHorizontalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:verticalIndicatorFrame:] (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIScrollView _layoutHorizontalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:verticalIndicatorFrame:] (0.10%)</title> | |
<rect y="483.0" width="1.1799927" rx="2" ry="2" fill="rgb(214,92,38)" height="15.0" x="308.54004"/> | |
<text x="311.54" font-size="12" y="493.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScrollView setBounds:] (0.30%)')" onmouseout="c()"><title >-[UIScrollView setBounds:] (0.30%)</title> | |
<rect x="313.26004" y="499.0" rx="2" fill="rgb(211,73,5)" ry="2" width="3.5400085" height="15.0"/> | |
<text y="509.50" font-size="12" x="316.26" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIView(Geometry) setBounds:] (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIView(Geometry) setBounds:] (0.20%)</title> | |
<rect x="313.26004" width="2.3599854" height="15.0" rx="2" ry="2" fill="rgb(217,86,12)" y="483.0"/> | |
<text font-family="Verdana" font-size="12" x="316.26" y="493.50"></text> | |
</g> | |
<g onmouseover="s('-[UIView _backing_setBounds:] (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIView _backing_setBounds:] (0.10%)</title> | |
<rect fill="rgb(227,139,35)" ry="2" rx="2" y="467.0" height="15.0" width="1.1799927" x="313.26004"/> | |
<text font-family="Verdana" y="477.50" font-size="12" x="316.26"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[CALayer setBounds:] (0.10%)')"><title >-[CALayer setBounds:] (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" width="1.1799927" y="451.0" x="313.26004" fill="rgb(243,99,49)"/> | |
<text font-size="12" x="316.26" y="461.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::set_bounds(CA::Rect const&, bool) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >CA::Layer::set_bounds(CA::Rect const&, bool) (0.10%)</title> | |
<rect height="15.0" fill="rgb(254,89,52)" rx="2" y="435.0" ry="2" x="313.26004" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" x="316.26" y="445.50"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)</title> | |
<rect ry="2" y="419.0" height="15.0" rx="2" x="313.26004" width="1.1799927" fill="rgb(212,0,29)"/> | |
<text font-family="Verdana" font-size="12" x="316.26" y="429.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('CA::Layer::set_bit(unsigned int, unsigned int, unsigned int, bool, void (CA::Layer::*)(CA::Transaction*)) (0.20%)')" onmouseout="c()"><title >CA::Layer::set_bit(unsigned int, unsigned int, unsigned int, bool, void (CA::Layer::*)(CA::Transaction*)) (0.20%)</title> | |
<rect x="316.80002" y="499.0" rx="2" fill="rgb(232,107,34)" ry="2" width="2.3599854" height="15.0"/> | |
<text y="509.50" font-size="12" x="319.80" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('CA::Layer::begin_change(CA::Transaction*, unsigned int, objc_object*, objc_object*&) (0.10%)')"><title >CA::Layer::begin_change(CA::Transaction*, unsigned int, objc_object*, objc_object*&) (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" width="1.1799927" y="483.0" x="316.80002" fill="rgb(212,119,12)"/> | |
<text font-size="12" x="319.80" y="493.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)</title> | |
<rect x="317.98" ry="2" fill="rgb(213,13,10)" rx="2" width="1.1799927" height="15.0" y="483.0"/> | |
<text font-family="Verdana" font-size="12" x="320.98" y="493.50"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _adjustedContentOffsetForContentOffset:contentSize:skipsAdjustmentIfScrolling:] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIScrollView _adjustedContentOffsetForContentOffset:contentSize:skipsAdjustmentIfScrolling:] (0.10%)</title> | |
<rect ry="2" x="325.06003" fill="rgb(246,8,20)" height="15.0" y="515.0" width="1.1799927" rx="2"/> | |
<text y="525.50" font-size="12" x="328.06" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIScrollView isDecelerating] (0.10%)')" onmouseout="c()" class="func_g"><title >-[UIScrollView isDecelerating] (0.10%)</title> | |
<rect x="325.06003" y="499.0" rx="2" fill="rgb(255,215,41)" ry="2" width="1.1799927" height="15.0"/> | |
<text y="509.50" font-size="12" x="328.06" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('+[_UIFocusSystemSceneComponent sceneComponentForEnvironment:] (0.10%)')"><title >+[_UIFocusSystemSceneComponent sceneComponentForEnvironment:] (0.10%)</title> | |
<rect height="15.0" fill="rgb(210,215,29)" rx="2" y="483.0" ry="2" x="325.06003" width="1.1799927"/> | |
<text y="493.50" x="328.06" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_UIFocusEnvironmentContainingView (0.10%)')" class="func_g"><title >_UIFocusEnvironmentContainingView (0.10%)</title> | |
<rect ry="2" y="467.0" height="15.0" rx="2" x="325.06003" width="1.1799927" fill="rgb(255,161,34)"/> | |
<text font-family="Verdana" font-size="12" x="328.06" y="477.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_UIFocusEnvironmentEnumerateAncestorEnvironments (0.10%)')" class="func_g"><title >_UIFocusEnvironmentEnumerateAncestorEnvironments (0.10%)</title> | |
<rect y="451.0" ry="2" rx="2" fill="rgb(212,153,20)" height="15.0" width="1.1799927" x="325.06003"/> | |
<text x="328.06" font-family="Verdana" y="461.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIView(Geometry) setFrame:] (0.10%)')" onclick="zoom(this)"><title >-[UIView(Geometry) setFrame:] (0.10%)</title> | |
<rect rx="2" x="328.60004" y="531.0" width="1.1799927" height="15.0" ry="2" fill="rgb(216,24,33)"/> | |
<text font-size="12" x="331.60" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIScrollView setContentOffset:] (0.90%)')" class="func_g"><title >-[UIScrollView setContentOffset:] (0.90%)</title> | |
<rect rx="2" x="332.14005" y="547.0" width="10.619995" height="15.0" ry="2" fill="rgb(249,85,45)"/> | |
<text font-family="Verdana" x="335.14" font-size="12" y="557.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (0.40%)')" onclick="zoom(this)"><title >-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (0.40%)</title> | |
<rect ry="2" x="332.14005" fill="rgb(238,98,31)" height="15.0" y="531.0" width="4.720001" rx="2"/> | |
<text font-size="12" x="335.14" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _layoutVerticalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:] (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIScrollView _layoutVerticalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:] (0.30%)</title> | |
<rect x="332.14005" y="515.0" rx="2" fill="rgb(243,187,7)" ry="2" width="3.5400085" height="15.0"/> | |
<text y="525.50" font-size="12" x="335.14" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIView(Geometry) setFrame:] (0.20%)')" onmouseout="c()" class="func_g"><title >-[UIView(Geometry) setFrame:] (0.20%)</title> | |
<rect height="15.0" fill="rgb(224,68,35)" rx="2" y="499.0" ry="2" x="332.14005" width="2.3599854"/> | |
<text y="509.50" font-size="12" x="335.14" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[UIView _backing_setFrame:] (0.10%)')"><title >-[UIView _backing_setFrame:] (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(243,187,8)" x="332.14005" height="15.0" rx="2" ry="2" y="483.0"/> | |
<text y="493.50" x="335.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[CALayer setFrame:] (0.10%)')" onclick="zoom(this)" class="func_g"><title >-[CALayer setFrame:] (0.10%)</title> | |
<rect x="332.14005" y="467.0" height="15.0" fill="rgb(212,23,28)" rx="2" ry="2" width="1.1799927"/> | |
<text font-family="Verdana" y="477.50" x="335.14" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _layoutHorizontalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:verticalIndicatorFrame:] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIScrollView _layoutHorizontalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:verticalIndicatorFrame:] (0.10%)</title> | |
<rect x="335.68005" y="515.0" rx="2" fill="rgb(218,13,36)" ry="2" width="1.1799927" height="15.0"/> | |
<text y="525.50" font-size="12" x="338.68" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIScrollView setBounds:] (0.20%)')" onclick="zoom(this)"><title >-[UIScrollView setBounds:] (0.20%)</title> | |
<rect ry="2" x="336.86005" fill="rgb(252,44,41)" height="15.0" y="531.0" width="2.3599854" rx="2"/> | |
<text font-size="12" x="339.86" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[FlutterViewController updateViewportMetricsIfNeeded] (0.90%)')" class="func_g"><title >-[FlutterViewController updateViewportMetricsIfNeeded] (0.90%)</title> | |
<rect rx="2" x="342.76004" y="547.0" width="10.619995" height="15.0" ry="2" fill="rgb(255,15,25)"/> | |
<text font-family="Verdana" x="345.76" font-size="12" y="557.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[FlutterEngine updateViewportMetrics:] (0.90%)')" onclick="zoom(this)"><title >-[FlutterEngine updateViewportMetrics:] (0.90%)</title> | |
<rect ry="2" x="342.76004" fill="rgb(245,74,2)" height="15.0" y="531.0" width="10.619995" rx="2"/> | |
<text font-size="12" x="345.76" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseover="s('flutter::Shell::OnPlatformViewSetViewportMetrics(long long, flutter::ViewportMetrics const&) (0.80%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::Shell::OnPlatformViewSetViewportMetrics(long long, flutter::ViewportMetrics const&) (0.80%)</title> | |
<rect x="342.76004" y="515.0" rx="2" fill="rgb(234,34,24)" ry="2" width="9.440002" height="15.0"/> | |
<text y="525.50" font-size="12" x="345.76" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.80%)')" onmouseout="c()"><title >fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.80%)</title> | |
<rect y="499.0" rx="2" width="9.440002" x="342.76004" fill="rgb(242,9,29)" ry="2" height="15.0"/> | |
<text y="509.50" font-size="12" x="345.76" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca36337 (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x19ca36337 (0.20%)</title> | |
<rect height="15.0" x="342.76004" ry="2" fill="rgb(240,162,17)" rx="2" width="2.3599854" y="483.0"/> | |
<text x="345.76" font-size="12" font-family="Verdana" y="493.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca6d3bf (0.20%)')" onmouseout="c()"><title >0x19ca6d3bf (0.20%)</title> | |
<rect x="342.76004" rx="2" ry="2" y="467.0" width="2.3599854" height="15.0" fill="rgb(255,184,42)"/> | |
<text x="345.76" font-size="12" font-family="Verdana" y="477.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x19c9c6bfb (0.10%)')"><title >0x19c9c6bfb (0.10%)</title> | |
<rect y="451.0" ry="2" width="1.1799927" x="342.76004" height="15.0" rx="2" fill="rgb(235,108,44)"/> | |
<text y="461.50" font-family="Verdana" x="345.76" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mk_timer_arm (0.10%)')" class="func_g" onmouseout="c()"><title >mk_timer_arm (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1799927" height="15.0" x="342.76004" fill="rgb(250,201,24)" y="435.0"/> | |
<text x="345.76" font-size="12" font-family="Verdana" y="445.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x19ca363d3 (0.10%)')"><title >0x19ca363d3 (0.10%)</title> | |
<rect x="345.12003" rx="2" ry="2" y="483.0" width="1.1799927" height="15.0" fill="rgb(229,117,13)"/> | |
<text x="348.12" font-size="12" font-family="Verdana" y="493.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca4873b (0.10%)')" onmouseout="c()"><title >0x19ca4873b (0.10%)</title> | |
<rect height="15.0" ry="2" x="345.12003" fill="rgb(242,145,1)" width="1.1799927" y="467.0" rx="2"/> | |
<text x="348.12" font-family="Verdana" font-size="12" y="477.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_pthread_mutex_firstfit_unlock_slow (0.10%)')" class="func_g" onmouseout="c()"><title >_pthread_mutex_firstfit_unlock_slow (0.10%)</title> | |
<rect y="451.0" height="15.0" ry="2" width="1.1799927" fill="rgb(230,1,34)" rx="2" x="345.12003"/> | |
<text x="348.12" font-size="12" font-family="Verdana" y="461.50"></text> | |
</g> | |
<g onmouseover="s('_pthread_mutex_firstfit_wake (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_pthread_mutex_firstfit_wake (0.10%)</title> | |
<rect fill="rgb(245,126,4)" width="1.1799927" ry="2" rx="2" height="15.0" x="345.12003" y="435.0"/> | |
<text font-family="Verdana" font-size="12" x="348.12" y="445.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('__psynch_mutexdrop (0.10%)')"><title >__psynch_mutexdrop (0.10%)</title> | |
<rect width="1.1799927" x="345.12003" fill="rgb(248,226,40)" ry="2" height="15.0" rx="2" y="419.0"/> | |
<text y="429.50" font-size="12" x="348.12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('void std::_fl::__sift_up<std::_fl::greater<fml::DelayedTask>&, std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>>(std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>, std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>, std::_fl::greater<fml::DelayedTask>&, std::_fl::iterator_traits<std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>>::difference_type) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >void std::_fl::__sift_up<std::_fl::greater<fml::DelayedTask>&, std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>>(std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>, std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>, std::_fl::greater<fml::DelayedTask>&, std::_fl::iterator_traits<std::_fl::__deque_iterator<fml::DelayedTask, fml::DelayedTask*, fml::DelayedTask&, fml::DelayedTask**, long, 73l>>::difference_type) (0.10%)</title> | |
<rect height="15.0" x="346.30005" ry="2" fill="rgb(230,111,46)" rx="2" width="1.1799927" y="483.0"/> | |
<text font-size="12" x="349.30" y="493.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIApplication applicationState] (0.30%)')"><title >-[UIApplication applicationState] (0.30%)</title> | |
<rect height="15.0" x="353.38004" ry="2" fill="rgb(233,20,17)" rx="2" width="3.5400085" y="547.0"/> | |
<text font-size="12" font-family="Verdana" x="356.38" y="557.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UISceneLifecycleMultiplexer applicationState] (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >-[_UISceneLifecycleMultiplexer applicationState] (0.30%)</title> | |
<rect x="353.38004" rx="2" ry="2" y="531.0" width="3.5400085" height="15.0" fill="rgb(224,58,55)"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="356.38"></text> | |
</g> | |
<g onmouseover="s('-[UIScene activationState] (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIScene activationState] (0.30%)</title> | |
<rect y="515.0" rx="2" width="3.5400085" x="353.38004" fill="rgb(248,202,37)" ry="2" height="15.0"/> | |
<text font-family="Verdana" y="525.50" x="356.38" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[_UIWindowSceneFBSSceneLifecycleMonitor currentActivationState] (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[_UIWindowSceneFBSSceneLifecycleMonitor currentActivationState] (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(210,4,19)" x="353.38004" ry="2" height="15.0" rx="2" y="499.0"/> | |
<text x="356.38" font-size="12" font-family="Verdana" y="509.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('+[UIScene _activationStateFromSceneSettings:] (0.10%)')"><title >+[UIScene _activationStateFromSceneSettings:] (0.10%)</title> | |
<rect width="1.1799927" height="15.0" ry="2" x="353.38004" fill="rgb(239,173,24)" y="483.0" rx="2"/> | |
<text x="356.38" y="493.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_UISceneLifecycleStateIsSEO (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_UISceneLifecycleStateIsSEO (0.10%)</title> | |
<rect rx="2" ry="2" height="15.0" y="467.0" fill="rgb(227,168,54)" x="353.38004" width="1.1799927"/> | |
<text y="477.50" x="356.38" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[FlutterViewController setViewportMetricsSize] (0.10%)')"><title >-[FlutterViewController setViewportMetricsSize] (0.10%)</title> | |
<rect height="15.0" x="356.92004" ry="2" fill="rgb(239,85,47)" rx="2" width="1.1799927" y="547.0"/> | |
<text font-size="12" font-family="Verdana" x="359.92" y="557.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[FlutterView layoutSubviews] (0.60%)')"><title >-[FlutterView layoutSubviews] (0.60%)</title> | |
<rect height="15.0" x="362.82004" ry="2" fill="rgb(247,26,42)" rx="2" width="7.0799866" y="563.0"/> | |
<text font-size="12" font-family="Verdana" x="365.82" y="573.50"></text> | |
</g> | |
<g onmouseover="s('-[UIView(Hierarchy) layoutSubviews] (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(Hierarchy) layoutSubviews] (0.10%)</title> | |
<rect x="362.82004" rx="2" ry="2" y="547.0" width="1.1799927" height="15.0" fill="rgb(247,197,33)"/> | |
<text font-family="Verdana" x="365.82" y="557.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[NSISEngine performPendingChangeNotifications] (0.10%)')"><title >-[NSISEngine performPendingChangeNotifications] (0.10%)</title> | |
<rect y="531.0" height="15.0" ry="2" width="1.1799927" fill="rgb(245,38,8)" rx="2" x="362.82004"/> | |
<text y="541.50" x="365.82" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[FlutterView isWideGamutSupported] (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[FlutterView isWideGamutSupported] (0.10%)</title> | |
<rect fill="rgb(240,155,27)" y="547.0" height="15.0" x="364.00003" rx="2" width="1.1799927" ry="2"/> | |
<text font-family="Verdana" x="367.00" y="557.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIView _updateConstraintsAsNecessaryAndApplyLayoutFromEngine] (0.50%)')"><title >-[UIView _updateConstraintsAsNecessaryAndApplyLayoutFromEngine] (0.50%)</title> | |
<rect fill="rgb(213,161,7)" y="563.0" height="15.0" x="369.90002" rx="2" width="5.899994" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="372.90" y="573.50"></text> | |
</g> | |
<g onmouseover="s('-[UIView(AdditionalLayoutSupport) _is_layout] (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(AdditionalLayoutSupport) _is_layout] (0.40%)</title> | |
<rect x="369.90002" rx="2" ry="2" y="547.0" width="4.720001" height="15.0" fill="rgb(225,112,10)"/> | |
<text font-family="Verdana" x="372.90" y="557.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[UIView(Geometry) resizeSubviewsWithOldSize:] (0.40%)')" onclick="zoom(this)"><title >-[UIView(Geometry) resizeSubviewsWithOldSize:] (0.40%)</title> | |
<rect x="369.90002" rx="2" ry="2" y="531.0" height="15.0" fill="rgb(251,119,9)" width="4.720001"/> | |
<text font-family="Verdana" font-size="12" y="541.50" x="372.90"></text> | |
</g> | |
<g onmouseover="s('0x19c9ce6b7 (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x19c9ce6b7 (0.40%)</title> | |
<rect rx="2" ry="2" height="15.0" y="515.0" fill="rgb(212,152,10)" x="369.90002" width="4.720001"/> | |
<text y="525.50" x="372.90" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x19c9a11cb (0.40%)')" onmouseout="c()"><title >0x19c9a11cb (0.40%)</title> | |
<rect y="499.0" fill="rgb(218,204,18)" rx="2" width="4.720001" ry="2" x="369.90002" height="15.0"/> | |
<text font-family="Verdana" x="372.90" font-size="12" y="509.50"></text> | |
</g> | |
<g onmouseover="s('-[UIView(Geometry) _resizeWithOldSuperviewSize:] (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(Geometry) _resizeWithOldSuperviewSize:] (0.40%)</title> | |
<rect ry="2" height="15.0" x="369.90002" width="4.720001" y="483.0" rx="2" fill="rgb(240,102,35)"/> | |
<text x="372.90" font-family="Verdana" y="493.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIView(Geometry) _applyISEngineLayoutValuesToBoundsOnly:] (0.40%)')" class="func_g"><title >-[UIView(Geometry) _applyISEngineLayoutValuesToBoundsOnly:] (0.40%)</title> | |
<rect y="467.0" height="15.0" ry="2" fill="rgb(213,114,50)" x="369.90002" rx="2" width="4.720001"/> | |
<text x="372.90" font-size="12" y="477.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIView(AdditionalLayoutSupport) _nsis_center:bounds:inEngine:forLayoutGuide:] (0.30%)')" onclick="zoom(this)"><title >-[UIView(AdditionalLayoutSupport) _nsis_center:bounds:inEngine:forLayoutGuide:] (0.30%)</title> | |
<rect y="451.0" height="15.0" fill="rgb(224,2,44)" ry="2" width="3.5400085" rx="2" x="369.90002"/> | |
<text y="461.50" font-size="12" font-family="Verdana" x="372.90"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[_UIViewLayoutEngineRelativeAlignmentRectOriginCache origin] (0.10%)')" onmouseout="c()"><title >-[_UIViewLayoutEngineRelativeAlignmentRectOriginCache origin] (0.10%)</title> | |
<rect x="369.90002" height="15.0" rx="2" fill="rgb(219,207,39)" ry="2" width="1.1799927" y="435.0"/> | |
<text y="445.50" x="372.90" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIView _updateSafeAreaInsets] (0.50%)')"><title >-[UIView _updateSafeAreaInsets] (0.50%)</title> | |
<rect fill="rgb(254,77,53)" y="563.0" height="15.0" x="375.80005" rx="2" width="5.899994" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="378.80" y="573.50"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView setSafeAreaInsets:] (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIScrollView setSafeAreaInsets:] (0.30%)</title> | |
<rect x="375.80005" rx="2" ry="2" y="547.0" height="15.0" fill="rgb(233,81,53)" width="3.5400085"/> | |
<text font-family="Verdana" x="378.80" y="557.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[UIScrollView _shouldContentOffsetMaintainRelativeDistanceFromSafeArea] (0.30%)')" onclick="zoom(this)"><title >-[UIScrollView _shouldContentOffsetMaintainRelativeDistanceFromSafeArea] (0.30%)</title> | |
<rect width="3.5400085" height="15.0" ry="2" x="375.80005" fill="rgb(248,46,54)" y="531.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="378.80"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView isDecelerating] (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIScrollView isDecelerating] (0.20%)</title> | |
<rect x="375.80005" rx="2" ry="2" y="515.0" width="2.3599854" height="15.0" fill="rgb(250,198,23)"/> | |
<text font-family="Verdana" x="378.80" y="525.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('+[_UIFocusSystemSceneComponent sceneComponentForEnvironment:] (0.20%)')" onmouseout="c()" class="func_g"><title >+[_UIFocusSystemSceneComponent sceneComponentForEnvironment:] (0.20%)</title> | |
<rect rx="2" fill="rgb(242,46,54)" y="499.0" width="2.3599854" height="15.0" x="375.80005" ry="2"/> | |
<text font-size="12" y="509.50" x="378.80" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_UIFocusEnvironmentContainingView (0.10%)')" onmouseout="c()"><title >_UIFocusEnvironmentContainingView (0.10%)</title> | |
<rect x="375.80005" y="483.0" height="15.0" width="1.1799927" fill="rgb(233,108,41)" rx="2" ry="2"/> | |
<text y="493.50" font-family="Verdana" x="378.80" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIViewController _updateTraitsIfNecessary] (0.20%)')"><title >-[UIViewController _updateTraitsIfNecessary] (0.20%)</title> | |
<rect fill="rgb(227,206,15)" y="563.0" height="15.0" x="381.70004" rx="2" width="2.3599854" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="384.70" y="573.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[UIViewController traitCollection] (0.10%)')"><title >-[UIViewController traitCollection] (0.10%)</title> | |
<rect x="381.70004" rx="2" ry="2" y="547.0" height="15.0" fill="rgb(247,170,8)" width="1.1799927"/> | |
<text font-family="Verdana" x="384.70" y="557.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x195a26844 (0.10%)')"><title >0x195a26844 (0.10%)</title> | |
<rect fill="rgb(255,137,21)" y="563.0" height="15.0" x="384.06006" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="387.06" y="573.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[NSISEngine withBehaviors:performModifications:] (0.10%)')"><title >-[NSISEngine withBehaviors:performModifications:] (0.10%)</title> | |
<rect fill="rgb(211,175,43)" y="563.0" height="15.0" x="385.24005" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="388.24" y="573.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x195a26844 (0.10%)')"><title >0x195a26844 (0.10%)</title> | |
<rect fill="rgb(237,66,43)" y="579.0" height="15.0" x="398.22003" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="401.22" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('CA::Layer::collect_layers_(CA::Layer::CollectLayersData*) (0.10%)')"><title >CA::Layer::collect_layers_(CA::Layer::CollectLayersData*) (0.10%)</title> | |
<rect fill="rgb(226,132,33)" y="579.0" height="15.0" x="399.40005" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="402.40" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.60%)')"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.60%)</title> | |
<rect fill="rgb(227,107,28)" y="611.0" height="15.0" x="406.48004" rx="2" width="7.0799866" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="409.48" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)')"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)</title> | |
<rect x="406.48004" rx="2" ry="2" y="595.0" height="15.0" fill="rgb(225,88,11)" width="5.899994"/> | |
<text font-family="Verdana" x="409.48" y="605.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)')" onmouseout="c()"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)</title> | |
<rect ry="2" y="579.0" fill="rgb(241,31,38)" height="15.0" rx="2" x="406.48004" width="5.899994"/> | |
<text y="589.50" font-family="Verdana" x="409.48" font-size="12"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)</title> | |
<rect fill="rgb(226,177,8)" y="563.0" height="15.0" x="406.48004" width="5.899994" ry="2" rx="2"/> | |
<text font-size="12" x="409.48" y="573.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)')" onmouseout="c()"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)</title> | |
<rect x="406.48004" fill="rgb(255,208,9)" height="15.0" rx="2" ry="2" y="547.0" width="5.899994"/> | |
<text y="557.50" x="409.48" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)</title> | |
<rect rx="2" height="15.0" y="531.0" width="5.899994" fill="rgb(240,188,0)" ry="2" x="406.48004"/> | |
<text x="409.48" font-family="Verdana" y="541.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)')"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.50%)</title> | |
<rect fill="rgb(254,198,11)" ry="2" x="406.48004" height="15.0" y="515.0" width="5.899994" rx="2"/> | |
<text x="409.48" font-size="12" font-family="Verdana" y="525.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.40%)</title> | |
<rect x="406.48004" rx="2" ry="2" height="15.0" width="4.720001" y="499.0" fill="rgb(222,2,14)"/> | |
<text font-size="12" y="509.50" x="409.48" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >CA::Layer::commit_if_needed(CA::Transaction*, void (CA::Layer*, unsigned int, unsigned int) block_pointer) (0.40%)</title> | |
<rect ry="2" rx="2" width="4.720001" height="15.0" fill="rgb(225,217,11)" x="406.48004" y="483.0"/> | |
<text y="493.50" font-family="Verdana" x="409.48" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('invocation function for block in CA::Context::commit_transaction(CA::Transaction*, double, double*) (0.30%)')" onmouseout="c()" class="func_g"><title >invocation function for block in CA::Context::commit_transaction(CA::Transaction*, double, double*) (0.30%)</title> | |
<rect fill="rgb(255,11,2)" rx="2" ry="2" height="15.0" x="406.48004" y="467.0" width="3.5400085"/> | |
<text font-size="12" font-family="Verdana" x="409.48" y="477.50"></text> | |
</g> | |
<g onmouseover="s('CA::Render::Layer::~Layer() (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CA::Render::Layer::~Layer() (0.10%)</title> | |
<rect rx="2" fill="rgb(225,51,40)" ry="2" height="15.0" x="406.48004" y="451.0" width="1.1799927"/> | |
<text y="461.50" font-size="12" font-family="Verdana" x="409.48"></text> | |
</g> | |
<g onmouseover="s('-[CALayer(CALayerPrivate) _copyRenderLayer:layerFlags:commitFlags:] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[CALayer(CALayerPrivate) _copyRenderLayer:layerFlags:commitFlags:] (0.10%)</title> | |
<rect rx="2" fill="rgb(248,214,32)" ry="2" height="15.0" x="407.66003" y="451.0" width="1.1799927"/> | |
<text y="461.50" font-size="12" font-family="Verdana" x="410.66"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('mach_msg (0.40%)')"><title >mach_msg (0.40%)</title> | |
<rect fill="rgb(224,229,9)" y="611.0" height="15.0" x="413.56006" rx="2" width="4.720001" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="416.56" y="621.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('mach_msg_overwrite (0.40%)')"><title >mach_msg_overwrite (0.40%)</title> | |
<rect x="413.56006" rx="2" ry="2" y="595.0" height="15.0" fill="rgb(217,68,8)" width="4.720001"/> | |
<text font-size="12" font-family="Verdana" y="605.50" x="416.56"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('mach_msg2_internal (0.40%)')" class="func_g" onclick="zoom(this)"><title >mach_msg2_internal (0.40%)</title> | |
<rect height="15.0" y="579.0" ry="2" x="413.56006" width="4.720001" rx="2" fill="rgb(254,35,27)"/> | |
<text font-family="Verdana" x="416.56" font-size="12" y="589.50"></text> | |
</g> | |
<g onmouseover="s('mach_msg2_trap (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >mach_msg2_trap (0.40%)</title> | |
<rect rx="2" height="15.0" y="563.0" width="4.720001" fill="rgb(225,168,6)" ry="2" x="413.56006"/> | |
<text x="416.56" font-size="12" y="573.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('CA::Render::Encoder::send_message(unsigned int, unsigned int, unsigned int*, unsigned long) (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CA::Render::Encoder::send_message(unsigned int, unsigned int, unsigned int*, unsigned long) (0.30%)</title> | |
<rect fill="rgb(209,38,3)" y="611.0" height="15.0" x="418.28003" rx="2" width="3.5400085" ry="2"/> | |
<text x="421.28" font-size="12" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CA::Render::Message::send_message() (0.30%)')" class="func_g" onclick="zoom(this)"><title >CA::Render::Message::send_message() (0.30%)</title> | |
<rect x="418.28003" rx="2" ry="2" y="595.0" height="15.0" fill="rgb(206,58,23)" width="3.5400085"/> | |
<text x="421.28" font-size="12" font-family="Verdana" y="605.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('mach_msg (0.30%)')"><title >mach_msg (0.30%)</title> | |
<rect width="3.5400085" rx="2" height="15.0" fill="rgb(227,88,27)" ry="2" y="579.0" x="418.28003"/> | |
<text x="421.28" y="589.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg_overwrite (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg_overwrite (0.30%)</title> | |
<rect y="563.0" width="3.5400085" height="15.0" fill="rgb(212,21,41)" ry="2" x="418.28003" rx="2"/> | |
<text font-size="12" y="573.50" x="421.28" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('mach_msg2_internal (0.30%)')" onclick="zoom(this)"><title >mach_msg2_internal (0.30%)</title> | |
<rect x="418.28003" width="3.5400085" y="547.0" height="15.0" rx="2" fill="rgb(230,108,54)" ry="2"/> | |
<text y="557.50" x="421.28" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg2_trap (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_trap (0.30%)</title> | |
<rect ry="2" rx="2" y="531.0" x="418.28003" width="3.5400085" height="15.0" fill="rgb(222,48,26)"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="421.28"></text> | |
</g> | |
<g onmouseover="s('mig_get_reply_port (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >mig_get_reply_port (0.10%)</title> | |
<rect fill="rgb(209,53,1)" y="611.0" height="15.0" x="421.82004" rx="2" width="1.1799927" ry="2"/> | |
<text x="424.82" font-size="12" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('mach_port_construct (0.10%)')" class="func_g" onclick="zoom(this)"><title >mach_port_construct (0.10%)</title> | |
<rect x="421.82004" rx="2" ry="2" y="595.0" height="15.0" fill="rgb(206,184,43)" width="1.1799927"/> | |
<text x="424.82" font-size="12" font-family="Verdana" y="605.50"></text> | |
</g> | |
<g onmouseover="s('_kernelrpc_mach_port_construct_trap (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_kernelrpc_mach_port_construct_trap (0.10%)</title> | |
<rect ry="2" y="579.0" fill="rgb(213,47,47)" height="15.0" rx="2" x="421.82004" width="1.1799927"/> | |
<text x="424.82" y="589.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_event_loop_poke (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_dispatch_event_loop_poke (0.10%)</title> | |
<rect fill="rgb(235,66,49)" y="611.0" height="15.0" x="423.00006" rx="2" width="1.1799927" ry="2"/> | |
<text x="426.00" font-size="12" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_dispatch_kq_poll (0.10%)')"><title >_dispatch_kq_poll (0.10%)</title> | |
<rect x="423.00006" rx="2" ry="2" y="595.0" height="15.0" fill="rgb(226,79,55)" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" y="605.50" x="426.00"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('kevent_id (0.10%)')"><title >kevent_id (0.10%)</title> | |
<rect ry="2" y="579.0" height="15.0" x="423.00006" width="1.1799927" fill="rgb(237,22,22)" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="426.00" y="589.50"></text> | |
</g> | |
<g onmouseover="s('_os_signpost_emit_unreliably_with_name_impl (1.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_os_signpost_emit_unreliably_with_name_impl (1.40%)</title> | |
<rect fill="rgb(210,26,27)" y="627.0" height="15.0" x="428.90002" rx="2" width="16.519989" ry="2"/> | |
<text x="431.90" font-size="12" y="637.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('__os_signpost_emit_impl (1.40%)')"><title >__os_signpost_emit_impl (1.40%)</title> | |
<rect width="16.519989" fill="rgb(219,112,21)" height="15.0" x="428.90002" rx="2" ry="2" y="611.0"/> | |
<text font-family="Verdana" font-size="12" y="621.50" x="431.90"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_os_log_impl_flatten_and_send (1.40%)')"><title >_os_log_impl_flatten_and_send (1.40%)</title> | |
<rect x="428.90002" rx="2" ry="2" y="595.0" height="15.0" fill="rgb(250,156,18)" width="16.519989"/> | |
<text font-family="Verdana" font-size="12" x="431.90" y="605.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_os_log_impl_stream (1.40%)')" onclick="zoom(this)"><title >_os_log_impl_stream (1.40%)</title> | |
<rect y="579.0" x="428.90002" fill="rgb(239,27,52)" rx="2" width="16.519989" height="15.0" ry="2"/> | |
<text font-family="Verdana" y="589.50" x="431.90" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_os_activity_stream_reflect (1.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_os_activity_stream_reflect (1.40%)</title> | |
<rect height="15.0" y="563.0" x="428.90002" fill="rgb(254,54,48)" rx="2" ry="2" width="16.519989"/> | |
<text font-size="12" font-family="Verdana" y="573.50" x="431.90"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('dispatch_block_perform (0.60%)')" onmouseout="c()"><title >dispatch_block_perform (0.60%)</title> | |
<rect y="547.0" width="7.0799866" fill="rgb(247,5,3)" x="428.90002" height="15.0" ry="2" rx="2"/> | |
<text y="557.50" x="431.90" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_dispatch_block_invoke_direct (0.60%)')"><title >_dispatch_block_invoke_direct (0.60%)</title> | |
<rect width="7.0799866" height="15.0" x="428.90002" rx="2" ry="2" y="531.0" fill="rgb(227,13,2)"/> | |
<text x="431.90" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_dispatch_client_callout (0.60%)')"><title >_dispatch_client_callout (0.60%)</title> | |
<rect ry="2" y="515.0" fill="rgb(224,190,0)" rx="2" x="428.90002" width="7.0799866" height="15.0"/> | |
<text font-family="Verdana" y="525.50" x="431.90" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('___os_activity_stream_reflect_block_invoke (0.60%)')"><title >___os_activity_stream_reflect_block_invoke (0.60%)</title> | |
<rect x="428.90002" y="499.0" fill="rgb(248,164,21)" width="7.0799866" height="15.0" ry="2" rx="2"/> | |
<text x="431.90" y="509.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_simpleroutine (0.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_pipe_simpleroutine (0.60%)</title> | |
<rect y="483.0" height="15.0" ry="2" x="428.90002" width="7.0799866" fill="rgb(254,19,44)" rx="2"/> | |
<text y="493.50" font-size="12" x="431.90" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_pack_message (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_xpc_pipe_pack_message (0.30%)</title> | |
<rect width="3.5400085" y="467.0" ry="2" height="15.0" fill="rgb(220,54,8)" rx="2" x="428.90002"/> | |
<text x="431.90" y="477.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_serializer_pack (0.30%)')" onmouseout="c()"><title >_xpc_serializer_pack (0.30%)</title> | |
<rect width="3.5400085" fill="rgb(218,64,7)" ry="2" height="15.0" x="428.90002" y="451.0" rx="2"/> | |
<text font-family="Verdana" y="461.50" font-size="12" x="431.90"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_xpc_dictionary_serialize (0.20%)')" onclick="zoom(this)" class="func_g"><title >_xpc_dictionary_serialize (0.20%)</title> | |
<rect height="15.0" y="435.0" width="2.3599854" rx="2" fill="rgb(218,160,18)" x="428.90002" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="445.50" x="431.90"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_apply_node_f (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_xpc_dictionary_apply_node_f (0.20%)</title> | |
<rect y="419.0" height="15.0" rx="2" x="428.90002" width="2.3599854" fill="rgb(247,44,29)" ry="2"/> | |
<text x="431.90" font-family="Verdana" font-size="12" y="429.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_dictionary_serialize_apply (0.20%)')" onmouseout="c()"><title >_xpc_dictionary_serialize_apply (0.20%)</title> | |
<rect width="2.3599854" height="15.0" fill="rgb(217,59,37)" rx="2" y="403.0" x="428.90002" ry="2"/> | |
<text y="413.50" font-size="12" font-family="Verdana" x="431.90"></text> | |
</g> | |
<g onmouseover="s('_xpc_send_serializer (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_xpc_send_serializer (0.10%)</title> | |
<rect width="1.1799927" y="467.0" ry="2" height="15.0" fill="rgb(255,52,45)" rx="2" x="432.44003"/> | |
<text x="435.44" y="477.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_xpc_pipe_mach_msg (0.10%)')" class="func_g" onclick="zoom(this)"><title >_xpc_pipe_mach_msg (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="451.0" x="432.44003" fill="rgb(243,157,14)" ry="2" rx="2"/> | |
<text font-family="Verdana" y="461.50" font-size="12" x="435.44"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg (0.10%)</title> | |
<rect fill="rgb(237,37,38)" y="435.0" rx="2" ry="2" width="1.1799927" height="15.0" x="432.44003"/> | |
<text font-family="Verdana" y="445.50" x="435.44" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('mach_msg_overwrite (0.10%)')" onmouseout="c()"><title >mach_msg_overwrite (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(252,37,10)" rx="2" y="419.0" x="432.44003" ry="2"/> | |
<text font-family="Verdana" x="435.44" y="429.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('mach_msg2_internal (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_internal (0.10%)</title> | |
<rect y="403.0" fill="rgb(250,192,28)" ry="2" x="432.44003" rx="2" height="15.0" width="1.1799927"/> | |
<text x="435.44" font-family="Verdana" y="413.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('mach_msg2_trap (0.10%)')" onclick="zoom(this)"><title >mach_msg2_trap (0.10%)</title> | |
<rect fill="rgb(247,103,15)" rx="2" ry="2" x="432.44003" height="15.0" y="387.0" width="1.1799927"/> | |
<text x="435.44" font-size="12" font-family="Verdana" y="397.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect width="1.1799927" y="467.0" x="433.62003" fill="rgb(210,174,1)" rx="2" height="15.0" ry="2"/> | |
<text x="436.62" y="477.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_os_activity_stream_entry_encode (0.40%)')" onclick="zoom(this)"><title >_os_activity_stream_entry_encode (0.40%)</title> | |
<rect width="4.720001" y="547.0" x="435.98" fill="rgb(247,195,40)" rx="2" height="15.0" ry="2"/> | |
<text x="438.98" font-family="Verdana" y="557.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('xpc_dictionary_set_string (0.10%)')" onclick="zoom(this)" class="func_g"><title >xpc_dictionary_set_string (0.10%)</title> | |
<rect x="435.98" y="531.0" width="1.1799927" fill="rgb(234,136,31)" rx="2" height="15.0" ry="2"/> | |
<text x="438.98" y="541.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect width="1.1799927" y="547.0" x="440.7" fill="rgb(218,9,46)" rx="2" height="15.0" ry="2"/> | |
<text font-family="Verdana" y="557.50" x="443.70" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_dispose (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_dictionary_dispose (0.10%)</title> | |
<rect x="440.7" y="531.0" width="1.1799927" fill="rgb(239,90,55)" rx="2" height="15.0" ry="2"/> | |
<text font-size="12" y="541.50" x="443.70" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_node_free (0.10%)')"><title >_xpc_dictionary_node_free (0.10%)</title> | |
<rect width="1.1799927" height="15.0" x="440.7" rx="2" ry="2" y="515.0" fill="rgb(225,123,38)"/> | |
<text y="525.50" x="443.70" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect ry="2" rx="2" y="499.0" height="15.0" fill="rgb(250,92,8)" x="440.7" width="1.1799927"/> | |
<text y="509.50" font-size="12" font-family="Verdana" x="443.70"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__kdebug_trace64 (0.10%)')" onclick="zoom(this)"><title >__kdebug_trace64 (0.10%)</title> | |
<rect fill="rgb(215,136,13)" y="627.0" height="15.0" x="445.42004" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="637.50" x="448.42" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIView(Geometry) setFrame:] (0.50%)')" onclick="zoom(this)"><title >-[UIView(Geometry) setFrame:] (0.50%)</title> | |
<rect fill="rgb(253,27,54)" y="643.0" height="15.0" x="452.50003" rx="2" width="5.899994" ry="2"/> | |
<text font-size="12" y="653.50" x="455.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIView _backing_setFrame:] (0.20%)')" class="func_g" onclick="zoom(this)"><title >-[UIView _backing_setFrame:] (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(236,10,42)" height="15.0" x="452.50003" rx="2" ry="2" y="627.0"/> | |
<text y="637.50" x="455.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[CALayer setFrame:] (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[CALayer setFrame:] (0.20%)</title> | |
<rect x="452.50003" rx="2" ry="2" y="611.0" height="15.0" fill="rgb(209,16,4)" width="2.3599854"/> | |
<text x="455.50" font-family="Verdana" y="621.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[CALayer setPosition:] (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[CALayer setPosition:] (0.20%)</title> | |
<rect ry="2" height="15.0" rx="2" x="452.50003" width="2.3599854" fill="rgb(224,102,34)" y="595.0"/> | |
<text font-family="Verdana" font-size="12" y="605.50" x="455.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.20%)')"><title >CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.20%)</title> | |
<rect width="2.3599854" y="579.0" x="452.50003" fill="rgb(218,116,32)" rx="2" height="15.0" ry="2"/> | |
<text x="455.50" font-size="12" font-family="Verdana" y="589.50"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::begin_change(CA::Transaction*, unsigned int, objc_object*, objc_object*&) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >CA::Layer::begin_change(CA::Transaction*, unsigned int, objc_object*, objc_object*&) (0.10%)</title> | |
<rect ry="2" rx="2" y="563.0" height="15.0" fill="rgb(228,183,42)" x="452.50003" width="1.1799927"/> | |
<text y="573.50" font-size="12" font-family="Verdana" x="455.50"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)</title> | |
<rect ry="2" rx="2" y="563.0" height="15.0" fill="rgb(234,219,21)" x="453.68002" width="1.1799927"/> | |
<text y="573.50" font-size="12" font-family="Verdana" x="456.68"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIView _updateInferredLayoutMarginsFromSuperview:] (0.10%)')"><title >-[UIView _updateInferredLayoutMarginsFromSuperview:] (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(217,178,33)" height="15.0" x="454.86002" rx="2" ry="2" y="627.0"/> | |
<text x="457.86" font-size="12" font-family="Verdana" y="637.50"></text> | |
</g> | |
<g onmouseover="s('_UIViewAdjustedLayoutMarginsForLayoutMargins (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_UIViewAdjustedLayoutMarginsForLayoutMargins (0.10%)</title> | |
<rect x="454.86002" rx="2" ry="2" y="611.0" height="15.0" fill="rgb(225,75,27)" width="1.1799927"/> | |
<text x="457.86" font-family="Verdana" y="621.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('+[NSString stringWithFormat:] (0.40%)')"><title >+[NSString stringWithFormat:] (0.40%)</title> | |
<rect fill="rgb(244,189,16)" y="643.0" height="15.0" x="458.40002" rx="2" width="4.720001" ry="2"/> | |
<text font-size="12" y="653.50" x="461.40" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('0x19ca17aab (0.40%)')"><title >0x19ca17aab (0.40%)</title> | |
<rect x="458.40002" rx="2" ry="2" y="627.0" height="15.0" fill="rgb(210,22,27)" width="4.720001"/> | |
<text font-family="Verdana" y="637.50" x="461.40" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19ca1b1d3 (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19ca1b1d3 (0.30%)</title> | |
<rect ry="2" rx="2" y="611.0" height="15.0" fill="rgb(217,72,53)" x="458.40002" width="3.5400085"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="461.40"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.40%)')"><title >flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.40%)</title> | |
<rect fill="rgb(253,41,36)" y="643.0" height="15.0" x="463.12003" rx="2" width="4.720001" ry="2"/> | |
<text font-size="12" y="653.50" x="466.12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[CAMetalLayer nextDrawable] (0.20%)')"><title >-[CAMetalLayer nextDrawable] (0.20%)</title> | |
<rect x="463.12003" rx="2" ry="2" y="627.0" height="15.0" fill="rgb(224,162,34)" width="2.3599854"/> | |
<text font-family="Verdana" y="637.50" x="466.12" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CAImageQueueCollect_ (0.10%)')" class="func_g" onclick="zoom(this)"><title >CAImageQueueCollect_ (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="611.0" x="463.12003" fill="rgb(205,166,45)" ry="2" rx="2"/> | |
<text x="466.12" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseover="s('release_images(_CAImageQueue*, CAImageQueueReleased*) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >release_images(_CAImageQueue*, CAImageQueueReleased*) (0.10%)</title> | |
<rect height="15.0" y="595.0" fill="rgb(238,230,34)" rx="2" x="463.12003" ry="2" width="1.1799927"/> | |
<text x="466.12" font-family="Verdana" y="605.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('CAImageQueueDidComposite (0.10%)')"><title >CAImageQueueDidComposite (0.10%)</title> | |
<rect x="463.12003" width="1.1799927" height="15.0" rx="2" ry="2" fill="rgb(251,151,28)" y="579.0"/> | |
<text font-size="12" font-family="Verdana" x="466.12" y="589.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::DisplayListEmbedderViewSlice::end_recording() (0.20%)')"><title >flutter::DisplayListEmbedderViewSlice::end_recording() (0.20%)</title> | |
<rect fill="rgb(228,0,4)" y="643.0" height="15.0" x="467.84003" rx="2" width="2.3599854" ry="2"/> | |
<text font-size="12" y="653.50" x="470.84" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::Build() (0.20%)')"><title >flutter::DisplayListBuilder::Build() (0.20%)</title> | |
<rect x="467.84003" rx="2" ry="2" y="627.0" height="15.0" fill="rgb(216,80,42)" width="2.3599854"/> | |
<text font-family="Verdana" y="637.50" x="470.84" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::DisplayListStorage::realloc(unsigned long) (0.10%)')" class="func_g" onclick="zoom(this)"><title >flutter::DisplayListStorage::realloc(unsigned long) (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="611.0" x="467.84003" fill="rgb(231,98,10)" ry="2" rx="2"/> | |
<text x="470.84" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseover="s('realloc (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >realloc (0.10%)</title> | |
<rect x="467.84003" fill="rgb(226,175,44)" rx="2" y="595.0" ry="2" width="1.1799927" height="15.0"/> | |
<text x="470.84" font-family="Verdana" y="605.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('malloc_zone_realloc (0.10%)')"><title >malloc_zone_realloc (0.10%)</title> | |
<rect ry="2" width="1.1799927" height="15.0" x="467.84003" fill="rgb(219,194,24)" y="579.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="470.84" y="589.50"></text> | |
</g> | |
<g onmouseover="s('szone_realloc (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >szone_realloc (0.10%)</title> | |
<rect height="15.0" rx="2" ry="2" x="467.84003" y="563.0" fill="rgb(233,34,48)" width="1.1799927"/> | |
<text font-family="Verdana" y="573.50" font-size="12" x="470.84"></text> | |
</g> | |
<g onmouseover="s('free_small (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >free_small (0.10%)</title> | |
<rect y="547.0" ry="2" x="467.84003" width="1.1799927" height="15.0" fill="rgb(219,179,29)" rx="2"/> | |
<text font-family="Verdana" x="470.84" y="557.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('small_madvise_free_range_no_lock (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >small_madvise_free_range_no_lock (0.10%)</title> | |
<rect x="467.84003" y="531.0" fill="rgb(254,133,36)" width="1.1799927" height="15.0" rx="2" ry="2"/> | |
<text font-family="Verdana" y="541.50" x="470.84" font-size="12"></text> | |
</g> | |
<g onmouseover="s('mvm_madvise_free (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >mvm_madvise_free (0.10%)</title> | |
<rect rx="2" y="515.0" height="15.0" width="1.1799927" x="467.84003" ry="2" fill="rgb(254,226,20)"/> | |
<text font-family="Verdana" x="470.84" font-size="12" y="525.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('madvise (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >madvise (0.10%)</title> | |
<rect ry="2" height="15.0" y="499.0" fill="rgb(225,208,52)" width="1.1799927" x="467.84003" rx="2"/> | |
<text x="470.84" font-family="Verdana" y="509.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('fml::tracing::TraceEventEnd(char const*) (0.10%)')"><title >fml::tracing::TraceEventEnd(char const*) (0.10%)</title> | |
<rect fill="rgb(208,114,31)" y="643.0" height="15.0" x="470.2" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="653.50" x="473.20" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('Dart_RecordTimelineEvent (0.10%)')"><title >Dart_RecordTimelineEvent (0.10%)</title> | |
<rect x="470.2" rx="2" ry="2" y="627.0" height="15.0" fill="rgb(249,95,47)" width="1.1799927"/> | |
<text font-family="Verdana" y="637.50" x="473.20" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[UIScreen scale] (0.10%)')"><title >-[UIScreen scale] (0.10%)</title> | |
<rect fill="rgb(238,181,22)" y="643.0" height="15.0" x="471.38" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="653.50" x="474.38" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::DisplayListBuilder::RestoreToCount(int) (0.10%)')"><title >flutter::DisplayListBuilder::RestoreToCount(int) (0.10%)</title> | |
<rect fill="rgb(233,217,33)" y="643.0" height="15.0" x="472.56" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="653.50" x="475.56" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::Restore() (0.10%)')"><title >flutter::DisplayListBuilder::Restore() (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="627.0" x="472.56" fill="rgb(229,162,26)" ry="2" rx="2"/> | |
<text font-family="Verdana" y="637.50" x="475.56" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[FlutterView pixelFormat] (0.10%)')"><title >-[FlutterView pixelFormat] (0.10%)</title> | |
<rect fill="rgb(242,184,45)" y="643.0" height="15.0" x="473.74" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="653.50" x="476.74" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x19c9ba053 (0.10%)')"><title >0x19c9ba053 (0.10%)</title> | |
<rect fill="rgb(220,140,2)" y="643.0" height="15.0" x="474.91998" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="653.50" x="477.92" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::CompositorContext::ScopedFrame::Raster(flutter::LayerTree&, bool, flutter::FrameDamage*) (6.90%)')"><title >flutter::CompositorContext::ScopedFrame::Raster(flutter::LayerTree&, bool, flutter::FrameDamage*) (6.90%)</title> | |
<rect fill="rgb(236,217,4)" y="659.0" height="15.0" x="497.34003" rx="2" width="81.41998" ry="2"/> | |
<text font-size="12" y="669.50" x="500.34" font-family="Verdana">flutter::..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::LayerTree::Paint(flutter::CompositorContext::ScopedFrame&, bool) const (4.70%)')" onclick="zoom(this)" class="func_g"><title >flutter::LayerTree::Paint(flutter::CompositorContext::ScopedFrame&, bool) const (4.70%)</title> | |
<rect width="55.460022" height="15.0" y="643.0" x="497.34003" fill="rgb(244,110,43)" ry="2" rx="2"/> | |
<text y="653.50" x="500.34" font-family="Verdana" font-size="12">flutt..</text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.60%)</title> | |
<rect x="497.34003" height="15.0" ry="2" y="627.0" width="54.28003" rx="2" fill="rgb(234,221,7)"/> | |
<text font-family="Verdana" y="637.50" x="500.34" font-size="12">flutt..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.60%)')" class="func_g" onclick="zoom(this)"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.60%)</title> | |
<rect rx="2" y="611.0" height="15.0" width="54.28003" x="497.34003" ry="2" fill="rgb(248,222,28)"/> | |
<text x="500.34" font-size="12" y="621.50" font-family="Verdana">flutt..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.40%)')"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.40%)</title> | |
<rect ry="2" x="497.34003" width="51.919983" rx="2" y="595.0" fill="rgb(205,144,54)" height="15.0"/> | |
<text x="500.34" y="605.50" font-size="12" font-family="Verdana">flutt..</text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.40%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.40%)</title> | |
<rect height="15.0" x="497.34003" ry="2" width="51.919983" fill="rgb(236,149,37)" y="579.0" rx="2"/> | |
<text font-family="Verdana" y="589.50" font-size="12" x="500.34">flutt..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.40%)')" class="func_g" onclick="zoom(this)"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.40%)</title> | |
<rect y="563.0" fill="rgb(241,214,52)" ry="2" rx="2" height="15.0" x="497.34003" width="51.919983"/> | |
<text x="500.34" y="573.50" font-size="12" font-family="Verdana">flutt..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.40%)')" onmouseout="c()"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.40%)</title> | |
<rect x="497.34003" height="15.0" y="547.0" fill="rgb(223,79,32)" width="51.919983" ry="2" rx="2"/> | |
<text x="500.34" y="557.50" font-size="12" font-family="Verdana">flutt..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.40%)')" class="func_g" onmouseout="c()"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.40%)</title> | |
<rect ry="2" height="15.0" y="531.0" rx="2" fill="rgb(226,226,3)" x="497.34003" width="51.919983"/> | |
<text font-size="12" x="500.34" font-family="Verdana" y="541.50">flutt..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.20%)')" class="func_g" onclick="zoom(this)"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.20%)</title> | |
<rect height="15.0" x="497.34003" ry="2" rx="2" width="49.559998" fill="rgb(229,171,23)" y="515.0"/> | |
<text x="500.34" font-family="Verdana" font-size="12" y="525.50">flut..</text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.10%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.10%)</title> | |
<rect width="48.380005" rx="2" ry="2" x="497.34003" fill="rgb(238,148,48)" height="15.0" y="499.0"/> | |
<text y="509.50" font-size="12" font-family="Verdana" x="500.34">flut..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::ClipShapeLayer<SkRect>::Paint(flutter::PaintContext&) const (4.10%)')" onmouseout="c()"><title >flutter::ClipShapeLayer<SkRect>::Paint(flutter::PaintContext&) const (4.10%)</title> | |
<rect fill="rgb(237,135,37)" x="497.34003" width="48.380005" rx="2" ry="2" y="483.0" height="15.0"/> | |
<text y="493.50" font-family="Verdana" x="500.34" font-size="12">flut..</text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (4.10%)</title> | |
<rect rx="2" fill="rgb(207,189,10)" ry="2" width="48.380005" x="497.34003" height="15.0" y="467.0"/> | |
<text x="500.34" font-family="Verdana" y="477.50" font-size="12">flut..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.00%)')" onclick="zoom(this)"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (4.00%)</title> | |
<rect y="451.0" rx="2" x="497.34003" height="15.0" ry="2" width="47.200012" fill="rgb(248,179,44)"/> | |
<text font-family="Verdana" y="461.50" x="500.34" font-size="12">flut..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (3.90%)')"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (3.90%)</title> | |
<rect rx="2" width="46.02002" fill="rgb(229,88,8)" y="435.0" x="497.34003" height="15.0" ry="2"/> | |
<text x="500.34" y="445.50" font-size="12" font-family="Verdana">flut..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (3.40%)')" class="func_g"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (3.40%)</title> | |
<rect width="40.119995" x="497.34003" rx="2" ry="2" y="419.0" height="15.0" fill="rgb(233,10,55)"/> | |
<text font-size="12" font-family="Verdana" x="500.34" y="429.50">flu..</text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (3.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (3.30%)</title> | |
<rect width="38.940002" rx="2" x="497.34003" ry="2" height="15.0" fill="rgb(236,15,12)" y="403.0"/> | |
<text font-family="Verdana" x="500.34" font-size="12" y="413.50">flu..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::PlatformViewLayer::Paint(flutter::PaintContext&) const (3.30%)')" class="func_g" onmouseout="c()"><title >flutter::PlatformViewLayer::Paint(flutter::PaintContext&) const (3.30%)</title> | |
<rect fill="rgb(211,18,40)" x="497.34003" y="387.0" ry="2" height="15.0" rx="2" width="38.940002"/> | |
<text x="500.34" font-size="12" font-family="Verdana" y="397.50">flu..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::IOSExternalViewEmbedder::CompositeEmbeddedView(long long) (2.90%)')"><title >flutter::IOSExternalViewEmbedder::CompositeEmbeddedView(long long) (2.90%)</title> | |
<rect rx="2" width="34.22003" fill="rgb(238,111,34)" x="497.34003" height="15.0" ry="2" y="371.0"/> | |
<text font-size="12" font-family="Verdana" y="381.50" x="500.34">fl..</text> | |
</g> | |
<g onmouseover="s('-[UIView(Geometry) setFrame:] (2.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[UIView(Geometry) setFrame:] (2.20%)</title> | |
<rect fill="rgb(212,74,27)" x="497.34003" y="355.0" width="25.960022" height="15.0" rx="2" ry="2"/> | |
<text font-family="Verdana" y="365.50" font-size="12" x="500.34">-..</text> | |
</g> | |
<g onmouseover="s('-[UIView _constraints_frameDidChange] (1.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIView _constraints_frameDidChange] (1.20%)</title> | |
<rect x="497.34003" rx="2" height="15.0" fill="rgb(244,166,35)" ry="2" y="339.0" width="14.160004"/> | |
<text font-family="Verdana" y="349.50" font-size="12" x="500.34"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange] (1.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange] (1.10%)</title> | |
<rect rx="2" y="323.0" fill="rgb(221,171,31)" x="497.34003" height="15.0" width="12.980011" ry="2"/> | |
<text font-family="Verdana" x="500.34" font-size="12" y="333.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIView(AdditionalLayoutSupport) _withUnsatisfiableConstraintsLoggingSuspendedIfEngineDelegateExists:] (0.80%)')" onmouseout="c()"><title >-[UIView(AdditionalLayoutSupport) _withUnsatisfiableConstraintsLoggingSuspendedIfEngineDelegateExists:] (0.80%)</title> | |
<rect ry="2" y="307.0" height="15.0" rx="2" fill="rgb(250,215,30)" width="9.440002" x="497.34003"/> | |
<text x="500.34" font-size="12" font-family="Verdana" y="317.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('__74-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange]_block_invoke (0.70%)')" class="func_g" onmouseout="c()"><title >__74-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange]_block_invoke (0.70%)</title> | |
<rect ry="2" fill="rgb(240,197,52)" y="291.0" rx="2" width="8.26001" height="15.0" x="497.34003"/> | |
<text font-size="12" y="301.50" x="500.34" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[NSLayoutConstraint setConstant:] (0.50%)')" class="func_g"><title >-[NSLayoutConstraint setConstant:] (0.50%)</title> | |
<rect y="275.0" ry="2" rx="2" width="5.899994" height="15.0" fill="rgb(251,82,50)" x="497.34003"/> | |
<text x="500.34" font-size="12" y="285.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[NSLayoutConstraint _setSymbolicConstant:constant:symbolicConstantMultiplier:] (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >-[NSLayoutConstraint _setSymbolicConstant:constant:symbolicConstantMultiplier:] (0.50%)</title> | |
<rect height="15.0" y="259.0" x="497.34003" ry="2" rx="2" fill="rgb(223,38,50)" width="5.899994"/> | |
<text font-size="12" font-family="Verdana" x="500.34" y="269.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[NSLayoutConstraint _tryToChangeContainerGeometryWithUndoHandler:] (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >-[NSLayoutConstraint _tryToChangeContainerGeometryWithUndoHandler:] (0.50%)</title> | |
<rect y="243.0" width="5.899994" fill="rgb(251,173,32)" x="497.34003" rx="2" height="15.0" ry="2"/> | |
<text x="500.34" y="253.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[NSLayoutConstraint _lowerIntoExpression:reportingConstantIsRounded:] (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[NSLayoutConstraint _lowerIntoExpression:reportingConstantIsRounded:] (0.30%)</title> | |
<rect width="3.5400085" height="15.0" x="497.34003" y="227.0" fill="rgb(223,102,46)" rx="2" ry="2"/> | |
<text x="500.34" y="237.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView(AdditionalLayoutSupport) nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:] (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(AdditionalLayoutSupport) nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:] (0.20%)</title> | |
<rect ry="2" width="2.3599854" y="211.0" height="15.0" rx="2" fill="rgb(209,7,36)" x="497.34003"/> | |
<text y="221.50" x="500.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIView(AdditionalLayoutSupport) nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:onBehalfOfLayoutGuide:] (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIView(AdditionalLayoutSupport) nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:onBehalfOfLayoutGuide:] (0.20%)</title> | |
<rect width="2.3599854" height="15.0" y="195.0" x="497.34003" rx="2" fill="rgb(227,105,14)" ry="2"/> | |
<text x="500.34" y="205.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[NSLayoutAnchor nsli_lowerIntoExpression:withCoefficient:forConstraint:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[NSLayoutAnchor nsli_lowerIntoExpression:withCoefficient:forConstraint:] (0.10%)</title> | |
<rect ry="2" width="1.1799927" y="211.0" height="15.0" rx="2" fill="rgb(232,192,19)" x="499.7"/> | |
<text y="221.50" x="502.70" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIView(UIConstraintBasedLayout) _constantsForHorizontalAutoresizingConstraints::] (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(UIConstraintBasedLayout) _constantsForHorizontalAutoresizingConstraints::] (0.20%)</title> | |
<rect height="15.0" y="275.0" x="503.24002" ry="2" rx="2" fill="rgb(250,230,51)" width="2.3599854"/> | |
<text y="285.50" font-family="Verdana" font-size="12" x="506.24"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[UIView(UIConstraintBasedLayout) _calculateSubviewAlignmentFrame:superviewAlignmentBounds:forAutoresizingMask:preservingNonzeroSuperviewAlignmentBoundsOriginForCompatibility:] (0.20%)')"><title >-[UIView(UIConstraintBasedLayout) _calculateSubviewAlignmentFrame:superviewAlignmentBounds:forAutoresizingMask:preservingNonzeroSuperviewAlignmentBoundsOriginForCompatibility:] (0.20%)</title> | |
<rect rx="2" y="259.0" height="15.0" ry="2" width="2.3599854" fill="rgb(233,107,25)" x="503.24002"/> | |
<text y="269.50" font-family="Verdana" x="506.24" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIView(AdditionalLayoutSupport) _alignmentFrame] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIView(AdditionalLayoutSupport) _alignmentFrame] (0.10%)</title> | |
<rect x="503.24002" y="243.0" width="1.1799927" height="15.0" fill="rgb(207,140,26)" rx="2" ry="2"/> | |
<text x="506.24" y="253.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('UIRoundToViewScale (0.10%)')" class="func_g"><title >UIRoundToViewScale (0.10%)</title> | |
<rect fill="rgb(240,57,10)" rx="2" ry="2" height="15.0" y="227.0" width="1.1799927" x="503.24002"/> | |
<text y="237.50" x="506.24" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[UIView(Hierarchy) setNeedsLayout] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIView(Hierarchy) setNeedsLayout] (0.10%)</title> | |
<rect x="506.78003" y="307.0" width="1.1799927" height="15.0" fill="rgb(216,59,53)" rx="2" ry="2"/> | |
<text x="509.78" y="317.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIView _notifyGeometryObserversWithChangeInfo:] (0.30%)')" class="func_g" onclick="zoom(this)"><title >-[UIView _notifyGeometryObserversWithChangeInfo:] (0.30%)</title> | |
<rect x="511.50003" y="339.0" width="3.5400085" height="15.0" fill="rgb(210,155,48)" rx="2" ry="2"/> | |
<text font-family="Verdana" y="349.50" font-size="12" x="514.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[NSConcreteMapTable copy] (0.10%)')" class="func_g"><title >-[NSConcreteMapTable copy] (0.10%)</title> | |
<rect y="323.0" width="1.1800232" fill="rgb(229,179,17)" rx="2" ry="2" height="15.0" x="511.50003"/> | |
<text y="333.50" font-size="12" font-family="Verdana" x="514.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIView _backing_setFrame:] (0.10%)')" class="func_g" onclick="zoom(this)"><title >-[UIView _backing_setFrame:] (0.10%)</title> | |
<rect x="515.04004" y="339.0" width="1.1799927" height="15.0" fill="rgb(233,99,12)" rx="2" ry="2"/> | |
<text font-family="Verdana" y="349.50" font-size="12" x="518.04"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[CALayer setFrame:] (0.10%)')" class="func_g"><title >-[CALayer setFrame:] (0.10%)</title> | |
<rect y="323.0" width="1.1799927" fill="rgb(210,99,1)" rx="2" ry="2" height="15.0" x="515.04004"/> | |
<text y="333.50" font-size="12" font-family="Verdana" x="518.04"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[CALayer setPosition:] (0.10%)')" onclick="zoom(this)" class="func_g"><title >-[CALayer setPosition:] (0.10%)</title> | |
<rect x="515.04004" rx="2" height="15.0" fill="rgb(244,179,8)" ry="2" y="307.0" width="1.1799927"/> | |
<text y="317.50" font-family="Verdana" font-size="12" x="518.04"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.10%)</title> | |
<rect width="1.1799927" height="15.0" x="515.04004" ry="2" fill="rgb(239,85,17)" y="291.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="301.50" x="518.04"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIView _updateInferredLayoutMarginsFromSuperview:] (0.10%)')" onmouseout="c()"><title >-[UIView _updateInferredLayoutMarginsFromSuperview:] (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(210,150,47)" x="516.22003" rx="2" y="339.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="349.50" x="519.22"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CA::Layer::setter(unsigned int, _CAValueType, void const*) (0.20%)')" class="func_g" onclick="zoom(this)"><title >CA::Layer::setter(unsigned int, _CAValueType, void const*) (0.20%)</title> | |
<rect width="2.3599854" height="15.0" fill="rgb(247,74,1)" x="523.30005" rx="2" y="355.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="365.50" x="526.30"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)')" class="func_g"><title >CA::Layer::end_change(CA::Transaction*, unsigned int, objc_object*, objc_object*) (0.10%)</title> | |
<rect x="523.30005" y="339.0" width="1.1799927" height="15.0" fill="rgb(249,217,43)" rx="2" ry="2"/> | |
<text x="526.30" y="349.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('CA::Layer::property_did_change(CA::Transaction*, unsigned int) (0.10%)')" onmouseout="c()" class="func_g"><title >CA::Layer::property_did_change(CA::Transaction*, unsigned int) (0.10%)</title> | |
<rect height="15.0" y="323.0" x="523.30005" ry="2" rx="2" fill="rgb(238,70,46)" width="1.1799927"/> | |
<text x="526.30" y="333.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::mark(CA::Transaction*, unsigned int, unsigned int) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >CA::Layer::mark(CA::Transaction*, unsigned int, unsigned int) (0.10%)</title> | |
<rect fill="rgb(225,151,49)" rx="2" ry="2" height="15.0" y="307.0" width="1.1799927" x="523.30005"/> | |
<text font-size="12" font-family="Verdana" x="526.30" y="317.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CA::Layer::begin_change(CA::Transaction*, unsigned int, objc_object*, objc_object*&) (0.10%)')" class="func_g" onclick="zoom(this)"><title >CA::Layer::begin_change(CA::Transaction*, unsigned int, objc_object*, objc_object*&) (0.10%)</title> | |
<rect x="524.48004" y="339.0" width="1.1799927" height="15.0" fill="rgb(252,200,17)" rx="2" ry="2"/> | |
<text x="527.48" y="349.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::LayerStateStack::reapply_all() (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::LayerStateStack::reapply_all() (0.10%)</title> | |
<rect x="531.56006" y="371.0" width="1.1799927" height="15.0" fill="rgb(231,111,50)" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="381.50" x="534.56"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListLayer::Paint(flutter::PaintContext&) const (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::DisplayListLayer::Paint(flutter::PaintContext&) const (0.50%)</title> | |
<rect x="537.46" y="419.0" width="5.9000244" height="15.0" fill="rgb(254,137,47)" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="429.50" x="540.46"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::DisplayListBuilder::DrawDisplayList(sk_sp<flutter::DisplayList>, float) (0.50%)')" class="func_g"><title >flutter::DisplayListBuilder::DrawDisplayList(sk_sp<flutter::DisplayList>, float) (0.50%)</title> | |
<rect width="5.9000244" height="15.0" fill="rgb(219,20,35)" x="537.46" rx="2" y="403.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="540.46" y="413.50"></text> | |
</g> | |
<g onmouseover="s('flutter::DlRTree::searchAndConsolidateRects(SkRect const&, bool) const (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::DlRTree::searchAndConsolidateRects(SkRect const&, bool) const (0.20%)</title> | |
<rect height="15.0" y="387.0" x="537.46" ry="2" rx="2" fill="rgb(250,14,10)" width="2.3599854"/> | |
<text y="397.50" x="540.46" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DlRegion::DlRegion(std::_fl::vector<SkIRect, std::_fl::allocator<SkIRect>> const&) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::DlRegion::DlRegion(std::_fl::vector<SkIRect, std::_fl::allocator<SkIRect>> const&) (0.10%)</title> | |
<rect width="1.1799927" x="537.46" height="15.0" ry="2" fill="rgb(238,97,39)" rx="2" y="371.0"/> | |
<text x="540.46" font-family="Verdana" y="381.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::LayerStateStack::restore_to_count(unsigned long) (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::LayerStateStack::restore_to_count(unsigned long) (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(232,105,42)" x="544.54004" rx="2" y="451.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="461.50" x="547.54"></text> | |
</g> | |
<g onmouseover="s('flutter::DisplayListLayer::Paint(flutter::PaintContext&) const (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::DisplayListLayer::Paint(flutter::PaintContext&) const (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(208,135,18)" x="546.9" rx="2" y="515.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="525.50" x="549.90"></text> | |
</g> | |
<g onmouseover="s('flutter::LayerStateStack::MutatorContext::transform(SkM44 const&) (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::LayerStateStack::MutatorContext::transform(SkM44 const&) (0.10%)</title> | |
<rect height="15.0" x="549.26" ry="2" width="1.1799927" fill="rgb(215,162,22)" y="595.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="605.50" x="552.26"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::ContainerLayer::Preroll(flutter::PrerollContext*) (1.00%)')" onclick="zoom(this)" class="func_g"><title >flutter::ContainerLayer::Preroll(flutter::PrerollContext*) (1.00%)</title> | |
<rect width="11.799988" height="15.0" y="643.0" x="552.80005" fill="rgb(247,31,2)" ry="2" rx="2"/> | |
<text y="653.50" x="555.80" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (1.00%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (1.00%)</title> | |
<rect height="15.0" x="552.80005" ry="2" width="11.799988" fill="rgb(206,43,52)" y="627.0" rx="2"/> | |
<text font-family="Verdana" y="637.50" x="555.80" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (1.00%)')" class="func_g" onclick="zoom(this)"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (1.00%)</title> | |
<rect width="11.799988" height="15.0" fill="rgb(248,10,38)" x="552.80005" rx="2" y="611.0" ry="2"/> | |
<text x="555.80" font-size="12" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.90%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.90%)</title> | |
<rect x="552.80005" y="595.0" width="10.619995" height="15.0" fill="rgb(246,59,42)" rx="2" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="605.50" x="555.80"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.90%)')"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.90%)</title> | |
<rect height="15.0" y="579.0" x="552.80005" ry="2" rx="2" fill="rgb(227,212,17)" width="10.619995"/> | |
<text x="555.80" y="589.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.90%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.90%)</title> | |
<rect width="10.619995" fill="rgb(211,177,24)" height="15.0" x="552.80005" rx="2" ry="2" y="563.0"/> | |
<text y="573.50" font-family="Verdana" x="555.80" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.90%)')" class="func_g"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.90%)</title> | |
<rect ry="2" height="15.0" y="547.0" rx="2" fill="rgb(254,213,49)" x="552.80005" width="10.619995"/> | |
<text font-size="12" font-family="Verdana" x="555.80" y="557.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.90%)')" onmouseout="c()"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.90%)</title> | |
<rect width="10.619995" fill="rgb(214,60,17)" height="15.0" x="552.80005" y="531.0" ry="2" rx="2"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="555.80"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.90%)')" class="func_g"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.90%)</title> | |
<rect fill="rgb(215,146,51)" width="10.619995" rx="2" height="15.0" x="552.80005" y="515.0" ry="2"/> | |
<text y="525.50" font-size="12" font-family="Verdana" x="555.80"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.80%)')" onmouseout="c()"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.80%)</title> | |
<rect width="9.440002" x="552.80005" height="15.0" ry="2" fill="rgb(215,158,47)" rx="2" y="499.0"/> | |
<text x="555.80" font-size="12" font-family="Verdana" y="509.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::ClipShapeLayer<SkRect>::Preroll(flutter::PrerollContext*) (0.80%)')" class="func_g" onmouseout="c()"><title >flutter::ClipShapeLayer<SkRect>::Preroll(flutter::PrerollContext*) (0.80%)</title> | |
<rect rx="2" width="9.440002" y="483.0" x="552.80005" fill="rgb(226,204,10)" ry="2" height="15.0"/> | |
<text x="555.80" y="493.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.80%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.80%)</title> | |
<rect rx="2" width="9.440002" fill="rgb(248,85,26)" x="552.80005" height="15.0" ry="2" y="467.0"/> | |
<text font-family="Verdana" x="555.80" font-size="12" y="477.50"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.80%)</title> | |
<rect height="15.0" y="451.0" fill="rgb(235,20,8)" rx="2" x="552.80005" width="9.440002" ry="2"/> | |
<text y="461.50" x="555.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.60%)')" class="func_g"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.60%)</title> | |
<rect y="435.0" ry="2" rx="2" height="15.0" fill="rgb(235,208,52)" width="7.080017" x="552.80005"/> | |
<text x="555.80" font-size="12" font-family="Verdana" y="445.50"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.60%)</title> | |
<rect fill="rgb(235,79,27)" y="419.0" height="15.0" width="7.080017" rx="2" x="552.80005" ry="2"/> | |
<text font-family="Verdana" y="429.50" x="555.80" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.60%)')" class="func_g" onmouseout="c()"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.60%)</title> | |
<rect ry="2" y="403.0" width="7.080017" height="15.0" fill="rgb(214,148,16)" rx="2" x="552.80005"/> | |
<text y="413.50" x="555.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::PlatformViewLayer::Preroll(flutter::PrerollContext*) (0.50%)')" onmouseout="c()"><title >flutter::PlatformViewLayer::Preroll(flutter::PrerollContext*) (0.50%)</title> | |
<rect y="387.0" ry="2" width="5.9000244" x="552.80005" height="15.0" fill="rgb(253,122,40)" rx="2"/> | |
<text x="555.80" font-size="12" font-family="Verdana" y="397.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::IOSExternalViewEmbedder::PrerollCompositeEmbeddedView(long long, std::_fl::unique_ptr<flutter::EmbeddedViewParams, std::_fl::default_delete<flutter::EmbeddedViewParams>>) (0.20%)')" class="func_g" onmouseout="c()"><title >flutter::IOSExternalViewEmbedder::PrerollCompositeEmbeddedView(long long, std::_fl::unique_ptr<flutter::EmbeddedViewParams, std::_fl::default_delete<flutter::EmbeddedViewParams>>) (0.20%)</title> | |
<rect rx="2" x="552.80005" fill="rgb(235,153,38)" y="371.0" width="2.3599854" height="15.0" ry="2"/> | |
<text x="555.80" font-family="Verdana" y="381.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('SkPath::addRect(SkRect const&, SkPathDirection, unsigned int) (0.10%)')" onmouseout="c()"><title >SkPath::addRect(SkRect const&, SkPathDirection, unsigned int) (0.10%)</title> | |
<rect width="1.1799927" x="555.16003" y="371.0" fill="rgb(228,121,24)" ry="2" height="15.0" rx="2"/> | |
<text x="558.16" font-family="Verdana" y="381.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.60%)')"><title >flutter::ContainerLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.60%)</title> | |
<rect width="7.080017" height="15.0" y="643.0" x="564.60004" fill="rgb(210,54,9)" ry="2" rx="2"/> | |
<text y="653.50" x="567.60" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.60%)')" onclick="zoom(this)"><title >flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.60%)</title> | |
<rect height="15.0" x="564.60004" ry="2" width="7.080017" fill="rgb(213,188,8)" y="627.0" rx="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="567.60"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.60%)</title> | |
<rect width="7.080017" height="15.0" fill="rgb(224,186,31)" x="564.60004" rx="2" y="611.0" ry="2"/> | |
<text x="567.60" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.50%)')" class="func_g" onclick="zoom(this)"><title >flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.50%)</title> | |
<rect x="564.60004" y="595.0" width="5.9000244" height="15.0" fill="rgb(221,43,15)" rx="2" ry="2"/> | |
<text x="567.60" font-family="Verdana" y="605.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.50%)</title> | |
<rect x="564.60004" height="15.0" y="579.0" width="5.9000244" fill="rgb(250,182,7)" ry="2" rx="2"/> | |
<text x="567.60" y="589.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.50%)')" onmouseout="c()" class="func_g"><title >flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.50%)</title> | |
<rect width="5.9000244" fill="rgb(210,60,20)" height="15.0" x="564.60004" rx="2" ry="2" y="563.0"/> | |
<text x="567.60" font-size="12" y="573.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.40%)</title> | |
<rect rx="2" width="4.7199707" height="15.0" fill="rgb(206,74,17)" y="547.0" ry="2" x="564.60004"/> | |
<text font-family="Verdana" y="557.50" font-size="12" x="567.60"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.40%)')" class="func_g" onmouseout="c()"><title >flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.40%)</title> | |
<rect fill="rgb(250,161,35)" x="564.60004" rx="2" y="531.0" width="4.7199707" height="15.0" ry="2"/> | |
<text x="567.60" y="541.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.40%)')" onmouseout="c()"><title >flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.40%)</title> | |
<rect ry="2" y="515.0" width="4.7199707" height="15.0" fill="rgb(232,19,32)" rx="2" x="564.60004"/> | |
<text font-family="Verdana" y="525.50" x="567.60" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.40%)')" class="func_g"><title >flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.40%)</title> | |
<rect width="4.7199707" fill="rgb(238,98,0)" ry="2" x="564.60004" height="15.0" rx="2" y="499.0"/> | |
<text font-family="Verdana" y="509.50" font-size="12" x="567.60"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::ClipShapeLayer<SkRect>::Diff(flutter::DiffContext*, flutter::Layer const*) (0.40%)')" onmouseout="c()"><title >flutter::ClipShapeLayer<SkRect>::Diff(flutter::DiffContext*, flutter::Layer const*) (0.40%)</title> | |
<rect width="4.7199707" height="15.0" ry="2" rx="2" y="483.0" fill="rgb(243,205,33)" x="564.60004"/> | |
<text y="493.50" x="567.60" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.30%)</title> | |
<rect rx="2" fill="rgb(247,5,21)" height="15.0" width="3.539978" ry="2" y="467.0" x="564.60004"/> | |
<text font-family="Verdana" x="567.60" y="477.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.30%)')"><title >flutter::TransformLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.30%)</title> | |
<rect width="3.539978" height="15.0" fill="rgb(205,152,43)" ry="2" x="564.60004" y="451.0" rx="2"/> | |
<text y="461.50" x="567.60" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.10%)')" onclick="zoom(this)"><title >flutter::ContainerLayer::DiffChildren(flutter::DiffContext*, flutter::ContainerLayer const*) (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(240,104,13)" rx="2" height="15.0" ry="2" y="435.0" x="564.60004"/> | |
<text x="567.60" font-size="12" y="445.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::DisplayListLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.10%)')"><title >flutter::DisplayListLayer::Diff(flutter::DiffContext*, flutter::Layer const*) (0.10%)</title> | |
<rect y="419.0" fill="rgb(252,38,36)" width="1.1799927" rx="2" height="15.0" x="564.60004" ry="2"/> | |
<text font-family="Verdana" x="567.60" y="429.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('fml::tracing::TraceEventEnd(char const*) (0.10%)')"><title >fml::tracing::TraceEventEnd(char const*) (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="643.0" x="571.68005" fill="rgb(210,116,49)" ry="2" rx="2"/> | |
<text y="653.50" x="574.68" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Dart_RecordTimelineEvent (0.10%)')" onclick="zoom(this)"><title >Dart_RecordTimelineEvent (0.10%)</title> | |
<rect height="15.0" x="571.68005" ry="2" width="1.1799927" fill="rgb(219,141,30)" y="627.0" rx="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="574.68"></text> | |
</g> | |
<g onmouseover="s('dart::TimelineEventRecorder::ThreadBlockStartEvent() (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dart::TimelineEventRecorder::ThreadBlockStartEvent() (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(219,39,25)" x="571.68005" rx="2" y="611.0" ry="2"/> | |
<text x="574.68" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('fml::tracing::TraceEvent0(char const*, char const*, unsigned long, unsigned long long const*) (0.10%)')"><title >fml::tracing::TraceEvent0(char const*, char const*, unsigned long, unsigned long long const*) (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="643.0" x="572.86005" fill="rgb(245,23,27)" ry="2" rx="2"/> | |
<text y="653.50" x="575.86" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('Dart_RecordTimelineEvent (0.10%)')" onclick="zoom(this)"><title >Dart_RecordTimelineEvent (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(215,89,35)" x="572.86005" rx="2" y="627.0" ry="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="575.86"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::IOSExternalViewEmbedder::PostPrerollAction(fml::RefPtr<fml::RasterThreadMerger> const&) (0.10%)')"><title >flutter::IOSExternalViewEmbedder::PostPrerollAction(fml::RefPtr<fml::RasterThreadMerger> const&) (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="643.0" x="574.04004" fill="rgb(217,84,21)" ry="2" rx="2"/> | |
<text y="653.50" x="577.04" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.70%)')"><title >flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.70%)</title> | |
<rect fill="rgb(229,113,3)" y="659.0" height="15.0" x="578.76" rx="2" width="8.26001" ry="2"/> | |
<text font-size="12" y="669.50" x="581.76" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[CAMetalLayer nextDrawable] (0.40%)')"><title >-[CAMetalLayer nextDrawable] (0.40%)</title> | |
<rect width="4.7199707" height="15.0" y="643.0" x="578.76" fill="rgb(212,26,46)" ry="2" rx="2"/> | |
<text y="653.50" x="581.76" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('CAImageQueueCollect_ (0.20%)')" onclick="zoom(this)"><title >CAImageQueueCollect_ (0.20%)</title> | |
<rect width="2.3599854" height="15.0" fill="rgb(207,152,18)" x="578.76" rx="2" y="627.0" ry="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="581.76"></text> | |
</g> | |
<g onmouseover="s('release_images(_CAImageQueue*, CAImageQueueReleased*) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >release_images(_CAImageQueue*, CAImageQueueReleased*) (0.10%)</title> | |
<rect x="578.76" y="611.0" width="1.1799927" height="15.0" fill="rgb(246,82,51)" rx="2" ry="2"/> | |
<text x="581.76" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('CAImageQueueDidComposite (0.10%)')" class="func_g" onclick="zoom(this)"><title >CAImageQueueDidComposite (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(242,96,29)" height="15.0" x="578.76" rx="2" ry="2" y="595.0"/> | |
<text x="581.76" font-family="Verdana" y="605.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__kdebug_trace64 (0.10%)')" onclick="zoom(this)"><title >__kdebug_trace64 (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(243,168,2)" x="581.12" rx="2" y="627.0" ry="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="584.12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('std::_fl::default_delete<flutter::LayerTreeTask>::operator()[abi:v15000](flutter::LayerTreeTask*) const (0.20%)')"><title >std::_fl::default_delete<flutter::LayerTreeTask>::operator()[abi:v15000](flutter::LayerTreeTask*) const (0.20%)</title> | |
<rect fill="rgb(245,20,37)" y="659.0" height="15.0" x="587.02" rx="2" width="2.3599854" ry="2"/> | |
<text font-size="12" y="669.50" x="590.02" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('std::_fl::default_delete<flutter::LayerTree>::operator()[abi:v15000](flutter::LayerTree*) const (0.20%)')"><title >std::_fl::default_delete<flutter::LayerTree>::operator()[abi:v15000](flutter::LayerTree*) const (0.20%)</title> | |
<rect width="2.3599854" height="15.0" y="643.0" x="587.02" fill="rgb(215,215,37)" ry="2" rx="2"/> | |
<text y="653.50" x="590.02" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)')" onclick="zoom(this)"><title >std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)</title> | |
<rect x="587.02" y="627.0" width="1.1799927" height="15.0" fill="rgb(255,79,47)" rx="2" ry="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="590.02"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::~ContainerLayer() (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::ContainerLayer::~ContainerLayer() (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(245,147,53)" height="15.0" x="587.02" rx="2" ry="2" y="611.0"/> | |
<text y="621.50" x="590.02" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)')" class="func_g" onclick="zoom(this)"><title >std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)</title> | |
<rect rx="2" width="1.1799927" height="15.0" fill="rgb(227,2,38)" y="595.0" ry="2" x="587.02"/> | |
<text x="590.02" font-size="12" y="605.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)</title> | |
<rect ry="2" x="587.02" height="15.0" fill="rgb(207,67,2)" rx="2" y="579.0" width="1.1799927"/> | |
<text font-family="Verdana" font-size="12" y="589.50" x="590.02"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::TransformLayer::~TransformLayer() (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::TransformLayer::~TransformLayer() (0.10%)</title> | |
<rect height="15.0" y="563.0" rx="2" width="1.1799927" ry="2" fill="rgb(211,28,1)" x="587.02"/> | |
<text font-family="Verdana" y="573.50" x="590.02" font-size="12"></text> | |
</g> | |
<g onmouseover="s('std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)</title> | |
<rect x="587.02" height="15.0" ry="2" fill="rgb(238,124,21)" width="1.1799927" rx="2" y="547.0"/> | |
<text font-size="12" x="590.02" y="557.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)')"><title >std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)</title> | |
<rect y="531.0" x="587.02" ry="2" fill="rgb(223,16,33)" rx="2" width="1.1799927" height="15.0"/> | |
<text font-family="Verdana" x="590.02" y="541.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::TransformLayer::~TransformLayer() (0.10%)')" onmouseout="c()"><title >flutter::TransformLayer::~TransformLayer() (0.10%)</title> | |
<rect fill="rgb(229,3,46)" y="515.0" height="15.0" x="587.02" ry="2" rx="2" width="1.1799927"/> | |
<text x="590.02" y="525.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)</title> | |
<rect ry="2" x="587.02" fill="rgb(245,53,9)" width="1.1799927" y="499.0" height="15.0" rx="2"/> | |
<text x="590.02" font-family="Verdana" y="509.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)')" onmouseout="c()"><title >std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)</title> | |
<rect x="587.02" ry="2" width="1.1799927" height="15.0" rx="2" fill="rgb(217,0,21)" y="483.0"/> | |
<text x="590.02" y="493.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::TransformLayer::~TransformLayer() (0.10%)')" onclick="zoom(this)"><title >flutter::TransformLayer::~TransformLayer() (0.10%)</title> | |
<rect ry="2" height="15.0" x="587.02" fill="rgb(249,28,22)" y="467.0" rx="2" width="1.1799927"/> | |
<text font-family="Verdana" x="590.02" y="477.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)</title> | |
<rect x="587.02" rx="2" height="15.0" y="451.0" ry="2" width="1.1799927" fill="rgb(240,132,36)"/> | |
<text font-family="Verdana" y="461.50" font-size="12" x="590.02"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)')" onmouseout="c()" class="func_g"><title >std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)</title> | |
<rect rx="2" fill="rgb(249,194,54)" y="435.0" ry="2" height="15.0" x="587.02" width="1.1799927"/> | |
<text font-family="Verdana" x="590.02" y="445.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::TransformLayer::~TransformLayer() (0.10%)')"><title >flutter::TransformLayer::~TransformLayer() (0.10%)</title> | |
<rect rx="2" fill="rgb(248,182,12)" width="1.1799927" x="587.02" y="419.0" height="15.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="429.50" x="590.02"></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >std::_fl::vector<std::_fl::shared_ptr<flutter::Layer>, std::_fl::allocator<std::_fl::shared_ptr<flutter::Layer>>>::~vector[abi:v15000]() (0.10%)</title> | |
<rect ry="2" width="1.1799927" x="587.02" y="403.0" rx="2" fill="rgb(205,107,15)" height="15.0"/> | |
<text x="590.02" y="413.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)')" class="func_g" onclick="zoom(this)"><title >std::_fl::shared_ptr<flutter::Layer>::~shared_ptr[abi:v15000]() (0.10%)</title> | |
<rect rx="2" y="387.0" width="1.1799927" height="15.0" ry="2" x="587.02" fill="rgb(220,86,4)"/> | |
<text y="397.50" font-size="12" x="590.02" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('std::_fl::to_string(double) (0.10%)')"><title >std::_fl::to_string(double) (0.10%)</title> | |
<rect fill="rgb(230,165,31)" y="659.0" height="15.0" x="589.38" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="669.50" x="592.38" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('snprintf (0.10%)')" class="func_g" onclick="zoom(this)"><title >snprintf (0.10%)</title> | |
<rect width="1.1799927" height="15.0" y="643.0" x="589.38" fill="rgb(255,215,13)" ry="2" rx="2"/> | |
<text y="653.50" x="592.38" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_vsnprintf (0.10%)')" onclick="zoom(this)"><title >_vsnprintf (0.10%)</title> | |
<rect ry="2" fill="rgb(212,52,6)" width="1.1799927" height="15.0" x="589.38" y="627.0" rx="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="592.38"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('__vfprintf (0.10%)')" class="func_g" onclick="zoom(this)"><title >__vfprintf (0.10%)</title> | |
<rect height="15.0" x="589.38" ry="2" width="1.1799927" fill="rgb(220,202,19)" y="611.0" rx="2"/> | |
<text x="592.38" font-size="12" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::IOSExternalViewEmbedder::PrepareFlutterView(long long, SkISize, double) (0.10%)')"><title >flutter::IOSExternalViewEmbedder::PrepareFlutterView(long long, SkISize, double) (0.10%)</title> | |
<rect fill="rgb(232,220,50)" y="659.0" height="15.0" x="590.56" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="669.50" x="593.56" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x19ca36337 (0.30%)')"><title >0x19ca36337 (0.30%)</title> | |
<rect fill="rgb(218,139,21)" y="771.0" height="15.0" x="603.54004" rx="2" width="3.539978" ry="2"/> | |
<text font-size="12" y="781.50" x="606.54" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19ca6d3bf (0.10%)')" class="func_g" onclick="zoom(this)"><title >0x19ca6d3bf (0.10%)</title> | |
<rect height="15.0" x="603.54004" ry="2" width="1.1799927" fill="rgb(248,149,2)" y="755.0" rx="2"/> | |
<text y="765.50" x="606.54" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x19ca362e7 (0.10%)')"><title >0x19ca362e7 (0.10%)</title> | |
<rect fill="rgb(255,15,24)" y="771.0" height="15.0" x="607.08" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="781.50" x="610.08" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19ca134eb (0.10%)')" class="func_g" onclick="zoom(this)"><title >0x19ca134eb (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(222,196,10)" height="15.0" x="607.08" rx="2" ry="2" y="755.0"/> | |
<text y="765.50" x="610.08" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19ca27ea3 (0.10%)')" onclick="zoom(this)"><title >0x19ca27ea3 (0.10%)</title> | |
<rect fill="rgb(223,138,49)" y="739.0" height="15.0" x="607.08" ry="2" rx="2" width="1.1799927"/> | |
<text font-size="12" y="749.50" font-family="Verdana" x="610.08"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('flutter::Shell::ReportTimings() (0.10%)')"><title >flutter::Shell::ReportTimings() (0.10%)</title> | |
<rect fill="rgb(237,118,55)" y="771.0" height="15.0" x="608.26" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="781.50" x="611.26" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.10%)')" class="func_g" onclick="zoom(this)"><title >fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.10%)</title> | |
<rect width="1.1799927" fill="rgb(205,215,10)" height="15.0" x="608.26" rx="2" ry="2" y="755.0"/> | |
<text y="765.50" x="611.26" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19ca363d3 (0.10%)')" onclick="zoom(this)"><title >0x19ca363d3 (0.10%)</title> | |
<rect rx="2" width="1.1799927" y="739.0" height="15.0" fill="rgb(227,112,14)" ry="2" x="608.26"/> | |
<text font-size="12" y="749.50" font-family="Verdana" x="611.26"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__NSFireTimer (1.00%)')"><title >__NSFireTimer (1.00%)</title> | |
<rect fill="rgb(240,28,53)" y="803.0" height="15.0" x="616.5201" rx="2" width="11.799988" ry="2"/> | |
<text font-size="12" y="813.50" x="619.52" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x1031a6a74 (1.00%)')" class="func_g" onclick="zoom(this)"><title >0x1031a6a74 (1.00%)</title> | |
<rect rx="2" width="11.799988" y="787.0" height="15.0" fill="rgb(248,43,45)" ry="2" x="616.5201"/> | |
<text y="797.50" x="619.52" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x1031a6b78 (1.00%)')" onclick="zoom(this)" class="func_g"><title >0x1031a6b78 (1.00%)</title> | |
<rect x="616.5201" height="15.0" ry="2" fill="rgb(239,154,23)" width="11.799988" rx="2" y="771.0"/> | |
<text font-family="Verdana" y="781.50" x="619.52" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x1031a6cbc (1.00%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x1031a6cbc (1.00%)</title> | |
<rect y="755.0" x="616.5201" ry="2" fill="rgb(248,92,1)" rx="2" width="11.799988" height="15.0"/> | |
<text x="619.52" font-family="Verdana" y="765.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x1031a7248 (0.90%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x1031a7248 (0.90%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(213,134,44)" y="739.0" width="10.619995" x="616.5201"/> | |
<text font-family="Verdana" font-size="12" y="749.50" x="619.52"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x1031a77a4 (0.70%)')"><title >0x1031a77a4 (0.70%)</title> | |
<rect width="8.26001" ry="2" height="15.0" x="616.5201" fill="rgb(237,86,0)" rx="2" y="723.0"/> | |
<text font-family="Verdana" y="733.50" x="619.52" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x1031a7980 (0.60%)')"><title >0x1031a7980 (0.60%)</title> | |
<rect height="15.0" ry="2" width="7.080017" x="616.5201" rx="2" y="707.0" fill="rgb(221,27,37)"/> | |
<text x="619.52" y="717.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x1031a77a4 (0.60%)')"><title >0x1031a77a4 (0.60%)</title> | |
<rect y="691.0" ry="2" height="15.0" rx="2" width="7.080017" fill="rgb(217,23,24)" x="616.5201"/> | |
<text font-size="12" font-family="Verdana" x="619.52" y="701.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x1031a7980 (0.60%)')" onmouseout="c()"><title >0x1031a7980 (0.60%)</title> | |
<rect width="7.080017" ry="2" x="616.5201" rx="2" y="675.0" fill="rgb(215,16,22)" height="15.0"/> | |
<text x="619.52" font-size="12" font-family="Verdana" y="685.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x1031a77a4 (0.60%)')" onmouseout="c()" onclick="zoom(this)"><title >0x1031a77a4 (0.60%)</title> | |
<rect y="659.0" fill="rgb(210,21,17)" ry="2" height="15.0" rx="2" x="616.5201" width="7.080017"/> | |
<text y="669.50" font-size="12" font-family="Verdana" x="619.52"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x1031a7980 (0.60%)')"><title >0x1031a7980 (0.60%)</title> | |
<rect y="643.0" width="7.080017" height="15.0" rx="2" ry="2" fill="rgb(207,4,49)" x="616.5201"/> | |
<text font-family="Verdana" font-size="12" x="619.52" y="653.50"></text> | |
</g> | |
<g onmouseover="s('0x1031a77a4 (0.60%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x1031a77a4 (0.60%)</title> | |
<rect y="627.0" ry="2" width="7.080017" fill="rgb(215,91,15)" rx="2" height="15.0" x="616.5201"/> | |
<text x="619.52" font-size="12" font-family="Verdana" y="637.50"></text> | |
</g> | |
<g onmouseover="s('0x1031a7980 (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x1031a7980 (0.50%)</title> | |
<rect y="611.0" fill="rgb(238,186,27)" x="616.5201" height="15.0" width="5.9000244" ry="2" rx="2"/> | |
<text font-family="Verdana" y="621.50" font-size="12" x="619.52"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x1031a77a4 (0.50%)')" class="func_g"><title >0x1031a77a4 (0.50%)</title> | |
<rect x="616.5201" y="595.0" ry="2" height="15.0" fill="rgb(254,92,17)" width="5.9000244" rx="2"/> | |
<text y="605.50" x="619.52" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x1031a7980 (0.40%)')" onclick="zoom(this)" class="func_g"><title >0x1031a7980 (0.40%)</title> | |
<rect x="616.5201" height="15.0" ry="2" width="4.7199707" y="579.0" fill="rgb(241,165,9)" rx="2"/> | |
<text x="619.52" font-size="12" font-family="Verdana" y="589.50"></text> | |
</g> | |
<g onmouseover="s('0x1031a77a4 (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x1031a77a4 (0.40%)</title> | |
<rect width="4.7199707" x="616.5201" rx="2" ry="2" height="15.0" y="563.0" fill="rgb(247,72,16)"/> | |
<text x="619.52" font-family="Verdana" font-size="12" y="573.50"></text> | |
</g> | |
<g onmouseover="s('0x1031a7980 (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x1031a7980 (0.30%)</title> | |
<rect x="616.5201" width="3.539978" ry="2" y="547.0" height="15.0" fill="rgb(248,166,52)" rx="2"/> | |
<text font-size="12" x="619.52" font-family="Verdana" y="557.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x1031a77a4 (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >0x1031a77a4 (0.30%)</title> | |
<rect fill="rgb(252,161,34)" y="531.0" x="616.5201" height="15.0" ry="2" width="3.539978" rx="2"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="619.52"></text> | |
</g> | |
<g onmouseover="s('0x1031a7980 (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x1031a7980 (0.30%)</title> | |
<rect ry="2" fill="rgb(246,228,34)" width="3.539978" x="616.5201" y="515.0" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="619.52" y="525.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x1031a77a4 (0.20%)')" onclick="zoom(this)"><title >0x1031a77a4 (0.20%)</title> | |
<rect width="2.3599854" height="15.0" ry="2" fill="rgb(236,191,52)" y="499.0" rx="2" x="616.5201"/> | |
<text y="509.50" font-family="Verdana" font-size="12" x="619.52"></text> | |
</g> | |
<g onmouseover="s('0x1031a7980 (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x1031a7980 (0.20%)</title> | |
<rect rx="2" width="2.3599854" y="483.0" x="616.5201" fill="rgb(212,52,24)" ry="2" height="15.0"/> | |
<text y="493.50" x="619.52" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x1031a77a4 (0.20%)')" onclick="zoom(this)"><title >0x1031a77a4 (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(221,217,50)" y="467.0" x="616.5201" rx="2" height="15.0" ry="2"/> | |
<text font-size="12" x="619.52" font-family="Verdana" y="477.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x1031a7980 (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >0x1031a7980 (0.20%)</title> | |
<rect y="451.0" rx="2" height="15.0" width="2.3599854" fill="rgb(234,81,53)" x="616.5201" ry="2"/> | |
<text x="619.52" font-size="12" font-family="Verdana" y="461.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x1031a77a4 (0.10%)')" onmouseout="c()"><title >0x1031a77a4 (0.10%)</title> | |
<rect y="435.0" ry="2" x="616.5201" height="15.0" width="1.1799927" fill="rgb(218,134,5)" rx="2"/> | |
<text y="445.50" x="619.52" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x1031a7980 (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x1031a7980 (0.10%)</title> | |
<rect y="419.0" fill="rgb(253,36,18)" rx="2" width="1.1799927" x="616.5201" height="15.0" ry="2"/> | |
<text y="429.50" font-size="12" font-family="Verdana" x="619.52"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x195a29bdb (0.30%)')"><title >0x195a29bdb (0.30%)</title> | |
<rect fill="rgb(211,227,44)" y="803.0" height="15.0" x="628.32007" rx="2" width="3.539978" ry="2"/> | |
<text font-size="12" y="813.50" x="631.32" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x195a261d3 (0.10%)')" class="func_g" onclick="zoom(this)"><title >0x195a261d3 (0.10%)</title> | |
<rect x="628.32007" height="15.0" ry="2" fill="rgb(215,132,32)" width="1.1799927" rx="2" y="787.0"/> | |
<text y="797.50" x="631.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('WTF::RunLoop::TimerBase::start(WTF::Seconds, bool)::$_1::__invoke(__CFRunLoopTimer*, void*) (0.10%)')"><title >WTF::RunLoop::TimerBase::start(WTF::Seconds, bool)::$_1::__invoke(__CFRunLoopTimer*, void*) (0.10%)</title> | |
<rect fill="rgb(236,124,42)" y="803.0" height="15.0" x="631.86005" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" y="813.50" x="634.86" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x19ca20003 (0.40%)')"><title >0x19ca20003 (0.40%)</title> | |
<rect fill="rgb(245,100,48)" y="835.0" height="15.0" x="635.4" rx="2" width="4.7199707" ry="2"/> | |
<text font-size="12" y="845.50" x="638.40" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19c9c6be7 (0.20%)')" class="func_g" onclick="zoom(this)"><title >0x19c9c6be7 (0.20%)</title> | |
<rect x="635.4" height="15.0" ry="2" fill="rgb(253,118,55)" width="2.3599854" rx="2" y="819.0"/> | |
<text y="829.50" x="638.40" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_dispatch_event_loop_poke (0.20%)')" onclick="zoom(this)" class="func_g"><title >_dispatch_event_loop_poke (0.20%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(224,14,49)" y="803.0" width="2.3599854" x="635.4"/> | |
<text font-family="Verdana" y="813.50" x="638.40" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_kq_drain (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_dispatch_kq_drain (0.20%)</title> | |
<rect width="2.3599854" ry="2" height="15.0" x="635.4" fill="rgb(214,226,38)" rx="2" y="787.0"/> | |
<text x="638.40" font-family="Verdana" y="797.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_kq_poll (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_dispatch_kq_poll (0.20%)</title> | |
<rect height="15.0" ry="2" width="2.3599854" x="635.4" rx="2" y="771.0" fill="rgb(236,87,32)"/> | |
<text font-family="Verdana" font-size="12" y="781.50" x="638.40"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('kevent_qos (0.20%)')" onclick="zoom(this)" class="func_g"><title >kevent_qos (0.20%)</title> | |
<rect rx="2" x="635.4" ry="2" height="15.0" fill="rgb(225,224,42)" width="2.3599854" y="755.0"/> | |
<text font-family="Verdana" y="765.50" x="638.40" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x19ca1fd07 (0.20%)')"><title >0x19ca1fd07 (0.20%)</title> | |
<rect fill="rgb(216,136,16)" y="835.0" height="15.0" x="640.12" rx="2" width="2.3599854" ry="2"/> | |
<text font-size="12" y="845.50" x="643.12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19c9c6b5f (0.10%)')" class="func_g" onclick="zoom(this)"><title >0x19c9c6b5f (0.10%)</title> | |
<rect x="640.12" height="15.0" ry="2" fill="rgb(251,110,48)" width="1.1799927" rx="2" y="819.0"/> | |
<text y="829.50" x="643.12" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_dispatch_event_loop_poke (0.10%)')" onclick="zoom(this)" class="func_g"><title >_dispatch_event_loop_poke (0.10%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(217,174,24)" y="803.0" width="1.1799927" x="640.12"/> | |
<text font-family="Verdana" y="813.50" x="643.12" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_kq_drain (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_dispatch_kq_drain (0.10%)</title> | |
<rect rx="2" x="640.12" ry="2" height="15.0" fill="rgb(235,214,30)" width="1.1799927" y="787.0"/> | |
<text x="643.12" font-family="Verdana" y="797.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_kq_poll (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_dispatch_kq_poll (0.10%)</title> | |
<rect ry="2" y="771.0" x="640.12" height="15.0" width="1.1799927" fill="rgb(221,33,42)" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="781.50" x="643.12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('kevent_qos (0.10%)')" onclick="zoom(this)" class="func_g"><title >kevent_qos (0.10%)</title> | |
<rect width="1.1799927" x="640.12" y="755.0" fill="rgb(211,111,27)" rx="2" height="15.0" ry="2"/> | |
<text font-family="Verdana" y="765.50" x="643.12" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x19ca110d3 (21.80%)')"><title >0x19ca110d3 (21.80%)</title> | |
<rect fill="rgb(207,189,49)" y="867.0" height="15.0" x="646.0201" rx="2" width="257.24005" ry="2"/> | |
<text font-size="12" y="877.50" x="649.02" font-family="Verdana">0x19ca110d3</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19c9fb5e7 (20.70%)')" class="func_g" onclick="zoom(this)"><title >0x19c9fb5e7 (20.70%)</title> | |
<rect x="646.0201" height="15.0" ry="2" fill="rgb(252,198,54)" width="244.26007" rx="2" y="851.0"/> | |
<text y="861.50" x="649.02" font-family="Verdana" font-size="12">0x19c9fb5e7</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19ca767b3 (20.60%)')" onclick="zoom(this)" class="func_g"><title >0x19ca767b3 (20.60%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(231,35,14)" y="835.0" width="243.08002" x="646.0201"/> | |
<text font-family="Verdana" y="845.50" x="649.02" font-size="12">0x19ca767b3</text> | |
</g> | |
<g onmouseover="s('0x19ca6a127 (20.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x19ca6a127 (20.60%)</title> | |
<rect rx="2" x="646.0201" ry="2" height="15.0" fill="rgb(233,2,38)" width="243.08002" y="819.0"/> | |
<text x="649.02" font-family="Verdana" y="829.50" font-size="12">0x19ca6a127</text> | |
</g> | |
<g onmouseover="s('runloopSourceCallback (18.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >runloopSourceCallback (18.10%)</title> | |
<rect fill="rgb(218,91,54)" height="15.0" y="803.0" x="646.0201" width="213.58002" ry="2" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="813.50" x="649.02">runloopSourceCallback</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('schedulerStepScheduledMainSection (17.50%)')" onclick="zoom(this)" class="func_g"><title >schedulerStepScheduledMainSection (17.50%)</title> | |
<rect height="15.0" fill="rgb(253,155,54)" x="646.0201" rx="2" ry="2" y="787.0" width="206.5"/> | |
<text font-family="Verdana" y="797.50" x="649.02" font-size="12">schedulerStepScheduledMainS..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_UIUpdateSequenceRun (17.30%)')" onmouseout="c()"><title >_UIUpdateSequenceRun (17.30%)</title> | |
<rect height="15.0" x="646.0201" rx="2" y="771.0" width="204.14001" fill="rgb(253,49,24)" ry="2"/> | |
<text y="781.50" font-size="12" font-family="Verdana" x="649.02">_UIUpdateSequenceRun</text> | |
</g> | |
<g onmouseover="s('updateCycleEntry (16.90%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >updateCycleEntry (16.90%)</title> | |
<rect x="646.0201" fill="rgb(238,40,42)" width="199.41998" y="755.0" height="15.0" rx="2" ry="2"/> | |
<text font-family="Verdana" x="649.02" y="765.50" font-size="12">updateCycleEntry</text> | |
</g> | |
<g onmouseover="s('__processEventQueue (16.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >__processEventQueue (16.40%)</title> | |
<rect rx="2" y="739.0" height="15.0" ry="2" width="193.52002" x="646.0201" fill="rgb(221,172,35)"/> | |
<text font-size="12" font-family="Verdana" x="649.02" y="749.50">__processEventQueue</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('__dispatchPreprocessedEventFromEventQueue (13.70%)')" onmouseout="c()"><title >__dispatchPreprocessedEventFromEventQueue (13.70%)</title> | |
<rect ry="2" rx="2" x="646.0201" y="723.0" fill="rgb(238,161,37)" width="161.65997" height="15.0"/> | |
<text font-family="Verdana" x="649.02" y="733.50" font-size="12">__dispatchPreprocess..</text> | |
</g> | |
<g onmouseover="s('-[UIApplication sendEvent:] (5.90%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[UIApplication sendEvent:] (5.90%)</title> | |
<rect height="15.0" ry="2" width="69.619995" x="646.0201" y="707.0" rx="2" fill="rgb(249,146,47)"/> | |
<text y="717.50" x="649.02" font-size="12" font-family="Verdana">-[UIApp..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIWindow sendEvent:] (3.90%)')" onclick="zoom(this)"><title >-[UIWindow sendEvent:] (3.90%)</title> | |
<rect width="46.02002" fill="rgb(232,54,33)" y="691.0" x="646.0201" rx="2" height="15.0" ry="2"/> | |
<text font-family="Verdana" x="649.02" y="701.50" font-size="12">-[UI..</text> | |
</g> | |
<g onmouseover="s('-[UIWindow _sendTouchesForEvent:] (2.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[UIWindow _sendTouchesForEvent:] (2.10%)</title> | |
<rect x="646.0201" rx="2" width="24.779968" fill="rgb(230,165,28)" height="15.0" ry="2" y="675.0"/> | |
<text x="649.02" font-size="12" font-family="Verdana" y="685.50">-..</text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('forwardTouchMethod (1.80%)')" onmouseout="c()"><title >forwardTouchMethod (1.80%)</title> | |
<rect y="659.0" fill="rgb(225,140,51)" width="21.23999" x="646.0201" rx="2" ry="2" height="15.0"/> | |
<text y="669.50" font-size="12" font-family="Verdana" x="649.02"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[FlutterViewController dispatchTouches:pointerDataChangeOverride:event:] (1.40%)')" onclick="zoom(this)"><title >-[FlutterViewController dispatchTouches:pointerDataChangeOverride:event:] (1.40%)</title> | |
<rect fill="rgb(225,13,7)" x="646.0201" rx="2" ry="2" y="643.0" width="16.52002" height="15.0"/> | |
<text font-family="Verdana" y="653.50" x="649.02" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[FlutterEngine dispatchPointerDataPacket:] (1.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[FlutterEngine dispatchPointerDataPacket:] (1.10%)</title> | |
<rect x="646.0201" rx="2" width="12.97998" y="627.0" height="15.0" fill="rgb(219,31,11)" ry="2"/> | |
<text font-family="Verdana" y="637.50" x="649.02" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('flutter::PlatformView::DispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (1.10%)')" class="func_g" onmouseout="c()"><title >flutter::PlatformView::DispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (1.10%)</title> | |
<rect y="611.0" height="15.0" fill="rgb(224,139,9)" x="646.0201" rx="2" ry="2" width="12.97998"/> | |
<text y="621.50" font-family="Verdana" font-size="12" x="649.02"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (0.90%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::Shell::OnPlatformViewDispatchPointerDataPacket(std::_fl::unique_ptr<flutter::PointerDataPacket, std::_fl::default_delete<flutter::PointerDataPacket>>) (0.90%)</title> | |
<rect rx="2" ry="2" fill="rgb(239,10,26)" width="10.619995" x="646.0201" height="15.0" y="595.0"/> | |
<text font-family="Verdana" x="649.02" y="605.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.80%)')" class="func_g"><title >fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.80%)</title> | |
<rect height="15.0" fill="rgb(253,182,49)" width="9.440002" ry="2" y="579.0" x="646.0201" rx="2"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="649.02"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x19ca36337 (0.30%)')" onmouseout="c()" class="func_g"><title >0x19ca36337 (0.30%)</title> | |
<rect fill="rgb(234,215,54)" height="15.0" width="3.539978" y="563.0" rx="2" x="646.0201" ry="2"/> | |
<text font-family="Verdana" y="573.50" x="649.02" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x19ca6d3bf (0.20%)')"><title >0x19ca6d3bf (0.20%)</title> | |
<rect fill="rgb(245,31,7)" ry="2" rx="2" y="547.0" x="646.0201" height="15.0" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" y="557.50" x="649.02"></text> | |
</g> | |
<g onmouseover="s('0x19c9c6bfb (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19c9c6bfb (0.20%)</title> | |
<rect height="15.0" fill="rgb(225,109,38)" x="646.0201" y="531.0" ry="2" rx="2" width="2.3599854"/> | |
<text x="649.02" font-size="12" y="541.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mk_timer_arm (0.20%)')" onmouseout="c()" class="func_g"><title >mk_timer_arm (0.20%)</title> | |
<rect ry="2" y="515.0" height="15.0" fill="rgb(219,32,40)" width="2.3599854" rx="2" x="646.0201"/> | |
<text y="525.50" font-family="Verdana" font-size="12" x="649.02"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x19ca363d3 (0.20%)')" onmouseout="c()" class="func_g"><title >0x19ca363d3 (0.20%)</title> | |
<rect fill="rgb(235,15,32)" height="15.0" width="2.3599854" y="563.0" rx="2" x="649.56006" ry="2"/> | |
<text font-family="Verdana" y="573.50" x="652.56" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x19ca486fb (0.20%)')" class="func_g"><title >0x19ca486fb (0.20%)</title> | |
<rect fill="rgb(224,3,10)" ry="2" rx="2" y="547.0" x="649.56006" height="15.0" width="2.3599854"/> | |
<text font-size="12" x="652.56" y="557.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_msg (0.20%)')" onmouseout="c()" class="func_g"><title >mach_msg (0.20%)</title> | |
<rect fill="rgb(219,21,35)" x="649.56006" rx="2" height="15.0" y="531.0" width="2.3599854" ry="2"/> | |
<text y="541.50" font-family="Verdana" font-size="12" x="652.56"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg_overwrite (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >mach_msg_overwrite (0.20%)</title> | |
<rect ry="2" x="649.56006" width="2.3599854" height="15.0" fill="rgb(251,82,7)" y="515.0" rx="2"/> | |
<text font-family="Verdana" font-size="12" x="652.56" y="525.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('mach_msg2_internal (0.20%)')" onclick="zoom(this)" class="func_g"><title >mach_msg2_internal (0.20%)</title> | |
<rect y="499.0" width="2.3599854" height="15.0" fill="rgb(249,208,3)" ry="2" rx="2" x="649.56006"/> | |
<text font-size="12" font-family="Verdana" y="509.50" x="652.56"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg2_trap (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_trap (0.20%)</title> | |
<rect rx="2" ry="2" width="2.3599854" y="483.0" fill="rgb(214,176,28)" x="649.56006" height="15.0"/> | |
<text x="652.56" font-family="Verdana" font-size="12" y="493.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIScreen scale] (0.10%)')" onclick="zoom(this)" class="func_g"><title >-[UIScreen scale] (0.10%)</title> | |
<rect height="15.0" fill="rgb(254,210,48)" x="659.00006" y="627.0" ry="2" rx="2" width="1.1799927"/> | |
<text font-family="Verdana" y="637.50" x="662.00" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19ca20807 (0.20%)')" onclick="zoom(this)"><title >0x19ca20807 (0.20%)</title> | |
<rect height="15.0" fill="rgb(218,190,35)" x="662.5401" y="643.0" ry="2" rx="2" width="2.3599854"/> | |
<text font-family="Verdana" y="653.50" x="665.54" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19c9a1247 (0.20%)')" onclick="zoom(this)"><title >0x19c9a1247 (0.20%)</title> | |
<rect rx="2" x="662.5401" ry="2" width="2.3599854" fill="rgb(231,63,13)" y="627.0" height="15.0"/> | |
<text y="637.50" x="665.54" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('__forwardTouchMethod_block_invoke (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >__forwardTouchMethod_block_invoke (0.20%)</title> | |
<rect fill="rgb(253,134,22)" rx="2" ry="2" x="662.5401" width="2.3599854" y="611.0" height="15.0"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="665.54"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_os_log_impl (1.30%)')"><title >_os_log_impl (1.30%)</title> | |
<rect y="675.0" fill="rgb(208,147,40)" width="15.340027" x="670.80005" rx="2" ry="2" height="15.0"/> | |
<text x="673.80" font-size="12" font-family="Verdana" y="685.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_log (1.30%)')" onclick="zoom(this)"><title >_os_log (1.30%)</title> | |
<rect height="15.0" fill="rgb(215,8,26)" x="670.80005" y="659.0" ry="2" rx="2" width="15.340027"/> | |
<text y="669.50" x="673.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl_flatten_and_send (1.30%)')" onmouseout="c()"><title >_os_log_impl_flatten_and_send (1.30%)</title> | |
<rect y="643.0" fill="rgb(233,77,55)" ry="2" x="670.80005" height="15.0" rx="2" width="15.340027"/> | |
<text x="673.80" y="653.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_os_log_impl_stream (1.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_os_log_impl_stream (1.20%)</title> | |
<rect fill="rgb(228,130,20)" rx="2" width="14.159973" x="670.80005" ry="2" height="15.0" y="627.0"/> | |
<text y="637.50" x="673.80" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_os_activity_stream_reflect (1.20%)')"><title >_os_activity_stream_reflect (1.20%)</title> | |
<rect y="611.0" height="15.0" fill="rgb(245,181,54)" x="670.80005" ry="2" rx="2" width="14.159973"/> | |
<text font-size="12" x="673.80" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dispatch_block_perform (0.40%)')" onmouseout="c()" class="func_g"><title >dispatch_block_perform (0.40%)</title> | |
<rect rx="2" ry="2" fill="rgb(245,109,6)" height="15.0" x="670.80005" y="595.0" width="4.7199707"/> | |
<text y="605.50" font-family="Verdana" font-size="12" x="673.80"></text> | |
</g> | |
<g onmouseover="s('_dispatch_block_invoke_direct (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_dispatch_block_invoke_direct (0.40%)</title> | |
<rect rx="2" x="670.80005" width="4.7199707" fill="rgb(237,189,8)" ry="2" y="579.0" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="673.80" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_dispatch_client_callout (0.40%)')"><title >_dispatch_client_callout (0.40%)</title> | |
<rect width="4.7199707" ry="2" y="563.0" height="15.0" rx="2" fill="rgb(253,103,15)" x="670.80005"/> | |
<text x="673.80" y="573.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('___os_activity_stream_reflect_block_invoke (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >___os_activity_stream_reflect_block_invoke (0.40%)</title> | |
<rect ry="2" y="547.0" fill="rgb(227,134,51)" x="670.80005" height="15.0" rx="2" width="4.7199707"/> | |
<text x="673.80" font-size="12" y="557.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_pipe_simpleroutine (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_pipe_simpleroutine (0.40%)</title> | |
<rect width="4.7199707" height="15.0" ry="2" rx="2" y="531.0" x="670.80005" fill="rgb(206,168,19)"/> | |
<text y="541.50" font-size="12" x="673.80" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_xpc_pipe_pack_message (0.20%)')" class="func_g"><title >_xpc_pipe_pack_message (0.20%)</title> | |
<rect ry="2" x="670.80005" fill="rgb(247,218,45)" height="15.0" y="515.0" width="2.3599854" rx="2"/> | |
<text font-family="Verdana" y="525.50" x="673.80" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_serializer_pack (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >_xpc_serializer_pack (0.20%)</title> | |
<rect ry="2" rx="2" width="2.3599854" y="499.0" fill="rgb(251,201,14)" height="15.0" x="670.80005"/> | |
<text y="509.50" font-family="Verdana" x="673.80" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_xpc_dictionary_serialize (0.10%)')"><title >_xpc_dictionary_serialize (0.10%)</title> | |
<rect height="15.0" y="483.0" fill="rgb(209,206,21)" rx="2" ry="2" width="1.1799927" x="670.80005"/> | |
<text y="493.50" font-family="Verdana" x="673.80" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_xpc_dictionary_apply_node_f (0.10%)')"><title >_xpc_dictionary_apply_node_f (0.10%)</title> | |
<rect rx="2" width="1.1799927" y="467.0" height="15.0" fill="rgb(212,227,45)" x="670.80005" ry="2"/> | |
<text x="673.80" font-size="12" font-family="Verdana" y="477.50"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_serialize_apply (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_dictionary_serialize_apply (0.10%)</title> | |
<rect width="1.1799927" rx="2" x="670.80005" fill="rgb(213,208,21)" height="15.0" ry="2" y="451.0"/> | |
<text x="673.80" font-size="12" y="461.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_xpc_send_serializer (0.10%)')" class="func_g"><title >_xpc_send_serializer (0.10%)</title> | |
<rect ry="2" x="673.16003" fill="rgb(217,185,29)" height="15.0" y="515.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" y="525.50" x="676.16" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_pipe_mach_msg (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_pipe_mach_msg (0.10%)</title> | |
<rect y="499.0" ry="2" rx="2" fill="rgb(212,65,31)" width="1.1799927" x="673.16003" height="15.0"/> | |
<text y="509.50" font-family="Verdana" x="676.16" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >mach_msg (0.10%)</title> | |
<rect rx="2" x="673.16003" width="1.1799927" height="15.0" y="483.0" fill="rgb(217,167,8)" ry="2"/> | |
<text font-size="12" x="676.16" y="493.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('mach_msg_overwrite (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >mach_msg_overwrite (0.10%)</title> | |
<rect height="15.0" x="673.16003" y="467.0" fill="rgb(255,138,5)" rx="2" width="1.1799927" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="676.16" y="477.50"></text> | |
</g> | |
<g onmouseover="s('mach_msg2_internal (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >mach_msg2_internal (0.10%)</title> | |
<rect height="15.0" ry="2" x="673.16003" width="1.1799927" fill="rgb(225,5,6)" rx="2" y="451.0"/> | |
<text y="461.50" x="676.16" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg2_trap (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_trap (0.10%)</title> | |
<rect height="15.0" y="435.0" fill="rgb(205,36,8)" width="1.1799927" rx="2" ry="2" x="673.16003"/> | |
<text x="676.16" y="445.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_os_activity_stream_entry_encode (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >_os_activity_stream_entry_encode (0.30%)</title> | |
<rect y="595.0" ry="2" rx="2" fill="rgb(249,135,40)" width="3.539978" x="675.52" height="15.0"/> | |
<text font-size="12" x="678.52" y="605.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('xpc_dictionary_set_string (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >xpc_dictionary_set_string (0.20%)</title> | |
<rect y="579.0" width="2.3599854" rx="2" height="15.0" fill="rgb(242,226,13)" x="675.52" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="678.52" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_xpc_dictionary_insert (0.10%)')"><title >_xpc_dictionary_insert (0.10%)</title> | |
<rect height="15.0" fill="rgb(249,161,1)" width="1.1799927" ry="2" rx="2" y="563.0" x="675.52"/> | |
<text y="573.50" x="678.52" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('xpc_dictionary_set_uint64 (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >xpc_dictionary_set_uint64 (0.10%)</title> | |
<rect y="579.0" width="1.1799927" rx="2" height="15.0" fill="rgb(214,117,26)" x="677.88" ry="2"/> | |
<text x="680.88" font-size="12" y="589.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[OS_xpc_object dealloc] (0.20%)')" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.20%)</title> | |
<rect y="595.0" width="2.3599854" rx="2" height="15.0" fill="rgb(235,91,29)" x="679.06006" ry="2"/> | |
<text font-size="12" x="682.06" y="605.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_dispose (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.20%)</title> | |
<rect height="15.0" ry="2" x="679.06006" width="2.3599854" fill="rgb(243,117,12)" rx="2" y="579.0"/> | |
<text font-family="Verdana" font-size="12" x="682.06" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_dictionary_node_free (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_dictionary_node_free (0.20%)</title> | |
<rect width="2.3599854" y="563.0" rx="2" height="15.0" fill="rgb(242,202,39)" x="679.06006" ry="2"/> | |
<text font-family="Verdana" x="682.06" font-size="12" y="573.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onmouseout="c()" class="func_g"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect height="15.0" x="679.06006" rx="2" y="547.0" ry="2" fill="rgb(211,51,55)" width="1.1799927"/> | |
<text font-family="Verdana" x="682.06" font-size="12" y="557.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIGestureEnvironment _updateForEvent:window:] (0.20%)')" onmouseout="c()"><title >-[UIGestureEnvironment _updateForEvent:window:] (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="675.0" height="15.0" fill="rgb(253,78,27)" x="686.1401" rx="2"/> | |
<text font-size="12" x="689.14" y="685.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UITouchesEvent _gestureRecognizersForWindow:] (0.10%)')" class="func_g" onmouseout="c()"><title >-[UITouchesEvent _gestureRecognizersForWindow:] (0.10%)</title> | |
<rect width="1.1799927" y="659.0" rx="2" height="15.0" fill="rgb(250,90,21)" x="686.1401" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="689.14" y="669.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_log_impl (1.10%)')" onmouseout="c()"><title >_os_log_impl (1.10%)</title> | |
<rect width="12.97998" ry="2" y="691.0" height="15.0" fill="rgb(237,65,43)" x="692.0401" rx="2"/> | |
<text font-size="12" x="695.04" y="701.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_os_log (1.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_os_log (1.10%)</title> | |
<rect height="15.0" ry="2" x="692.0401" width="12.97998" fill="rgb(254,198,40)" rx="2" y="675.0"/> | |
<text font-family="Verdana" font-size="12" x="695.04" y="685.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_os_log_impl_flatten_and_send (1.10%)')"><title >_os_log_impl_flatten_and_send (1.10%)</title> | |
<rect height="15.0" y="659.0" fill="rgb(218,133,12)" rx="2" ry="2" width="12.97998" x="692.0401"/> | |
<text font-size="12" x="695.04" font-family="Verdana" y="669.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_os_log_impl_stream (1.00%)')"><title >_os_log_impl_stream (1.00%)</title> | |
<rect rx="2" width="11.799988" y="643.0" height="15.0" fill="rgb(240,144,45)" x="692.0401" ry="2"/> | |
<text x="695.04" y="653.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (1.00%)')" class="func_g" onmouseout="c()"><title >_os_activity_stream_reflect (1.00%)</title> | |
<rect ry="2" fill="rgb(255,78,42)" width="11.799988" height="15.0" x="692.0401" rx="2" y="627.0"/> | |
<text font-size="12" x="695.04" y="637.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dispatch_block_perform (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >dispatch_block_perform (0.40%)</title> | |
<rect x="692.0401" rx="2" ry="2" y="611.0" fill="rgb(243,156,43)" width="4.7199707" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="621.50" x="695.04"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_dispatch_block_invoke_direct (0.40%)')" onmouseout="c()"><title >_dispatch_block_invoke_direct (0.40%)</title> | |
<rect x="692.0401" height="15.0" fill="rgb(210,21,28)" rx="2" width="4.7199707" ry="2" y="595.0"/> | |
<text font-family="Verdana" y="605.50" x="695.04" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_dispatch_client_callout (0.40%)')" onmouseout="c()"><title >_dispatch_client_callout (0.40%)</title> | |
<rect y="579.0" x="692.0401" rx="2" height="15.0" fill="rgb(236,118,28)" width="4.7199707" ry="2"/> | |
<text x="695.04" y="589.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('___os_activity_stream_reflect_block_invoke (0.40%)')" class="func_g"><title >___os_activity_stream_reflect_block_invoke (0.40%)</title> | |
<rect fill="rgb(222,80,8)" height="15.0" y="563.0" ry="2" x="692.0401" width="4.7199707" rx="2"/> | |
<text x="695.04" font-size="12" y="573.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_simpleroutine (0.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_xpc_pipe_simpleroutine (0.40%)</title> | |
<rect width="4.7199707" fill="rgb(250,94,28)" height="15.0" rx="2" ry="2" y="547.0" x="692.0401"/> | |
<text font-size="12" x="695.04" y="557.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_send_serializer (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_send_serializer (0.20%)</title> | |
<rect width="2.3599854" rx="2" ry="2" fill="rgb(220,57,50)" height="15.0" y="531.0" x="692.0401"/> | |
<text font-size="12" font-family="Verdana" x="695.04" y="541.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_pipe_mach_msg (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_pipe_mach_msg (0.20%)</title> | |
<rect rx="2" height="15.0" width="2.3599854" fill="rgb(223,152,15)" x="692.0401" ry="2" y="515.0"/> | |
<text font-family="Verdana" y="525.50" x="695.04" font-size="12"></text> | |
</g> | |
<g onmouseover="s('mach_msg (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >mach_msg (0.20%)</title> | |
<rect x="692.0401" height="15.0" rx="2" width="2.3599854" y="499.0" fill="rgb(245,49,19)" ry="2"/> | |
<text x="695.04" font-size="12" y="509.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg_overwrite (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg_overwrite (0.20%)</title> | |
<rect ry="2" fill="rgb(227,47,47)" x="692.0401" width="2.3599854" y="483.0" height="15.0" rx="2"/> | |
<text font-size="12" font-family="Verdana" y="493.50" x="695.04"></text> | |
</g> | |
<g onmouseover="s('mach_msg2_internal (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >mach_msg2_internal (0.20%)</title> | |
<rect y="467.0" rx="2" fill="rgb(206,98,8)" ry="2" height="15.0" x="692.0401" width="2.3599854"/> | |
<text x="695.04" font-size="12" font-family="Verdana" y="477.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('mach_msg2_trap (0.20%)')" onmouseout="c()"><title >mach_msg2_trap (0.20%)</title> | |
<rect ry="2" rx="2" height="15.0" width="2.3599854" fill="rgb(206,136,2)" x="692.0401" y="451.0"/> | |
<text y="461.50" font-family="Verdana" x="695.04" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_xpc_pipe_pack_message (0.10%)')" onclick="zoom(this)"><title >_xpc_pipe_pack_message (0.10%)</title> | |
<rect height="15.0" rx="2" x="694.4001" y="531.0" width="1.1799927" fill="rgb(255,14,50)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="697.40" y="541.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[OS_xpc_object dealloc] (0.20%)')" onclick="zoom(this)"><title >-[OS_xpc_object dealloc] (0.20%)</title> | |
<rect height="15.0" rx="2" x="696.7601" y="611.0" width="2.3599854" fill="rgb(239,25,22)" ry="2"/> | |
<text font-size="12" x="699.76" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_dispose (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.20%)</title> | |
<rect ry="2" x="696.7601" width="2.3599854" height="15.0" rx="2" y="595.0" fill="rgb(237,184,28)"/> | |
<text x="699.76" font-family="Verdana" y="605.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_node_free (0.10%)')" onclick="zoom(this)"><title >_xpc_dictionary_node_free (0.10%)</title> | |
<rect y="579.0" x="696.7601" rx="2" height="15.0" fill="rgb(215,107,5)" width="1.1799927" ry="2"/> | |
<text x="699.76" font-size="12" font-family="Verdana" y="589.50"></text> | |
</g> | |
<g onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect width="1.1799927" height="15.0" ry="2" x="696.7601" rx="2" fill="rgb(252,1,30)" y="563.0"/> | |
<text y="573.50" font-size="12" x="699.76" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_os_activity_stream_entry_encode (0.20%)')"><title >_os_activity_stream_entry_encode (0.20%)</title> | |
<rect ry="2" x="699.1201" width="2.3599854" height="15.0" rx="2" y="611.0" fill="rgb(236,77,34)"/> | |
<text x="702.12" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('xpc_dictionary_set_string (0.10%)')" class="func_g"><title >xpc_dictionary_set_string (0.10%)</title> | |
<rect height="15.0" rx="2" x="699.1201" y="595.0" width="1.1799927" fill="rgb(254,166,33)" ry="2"/> | |
<text font-size="12" y="605.50" x="702.12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_UIAnalyticsGatherMultitouchAnalytics (0.30%)')" onmouseout="c()"><title >_UIAnalyticsGatherMultitouchAnalytics (0.30%)</title> | |
<rect width="3.539978" ry="2" y="691.0" height="15.0" fill="rgb(227,215,53)" x="705.0201" rx="2"/> | |
<text font-size="12" x="708.02" y="701.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('AnalyticsIsEventUsed (0.20%)')"><title >AnalyticsIsEventUsed (0.20%)</title> | |
<rect height="15.0" rx="2" x="705.0201" y="675.0" width="2.3599854" fill="rgb(209,188,39)" ry="2"/> | |
<text x="708.02" font-size="12" font-family="Verdana" y="685.50"></text> | |
</g> | |
<g onmouseover="s('CoreAnalytics::Client::isEventUsed(std::__1::basic_string_view<char, std::__1::char_traits<char>>) const (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >CoreAnalytics::Client::isEventUsed(std::__1::basic_string_view<char, std::__1::char_traits<char>>) const (0.20%)</title> | |
<rect width="2.3599854" rx="2" ry="2" fill="rgb(218,154,9)" height="15.0" y="659.0" x="705.0201"/> | |
<text font-family="Verdana" font-size="12" x="708.02" y="669.50"></text> | |
</g> | |
<g onmouseover="s('FrameworkConfiguration::isEventUsed(std::__1::basic_string_view<char, std::__1::char_traits<char>>) const (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >FrameworkConfiguration::isEventUsed(std::__1::basic_string_view<char, std::__1::char_traits<char>>) const (0.20%)</title> | |
<rect height="15.0" ry="2" x="705.0201" width="2.3599854" fill="rgb(243,37,34)" rx="2" y="643.0"/> | |
<text x="708.02" font-size="12" font-family="Verdana" y="653.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIApplication checkForUIEventSessionActionAnalytics:forWindow:] (0.10%)')" onmouseout="c()"><title >-[UIApplication checkForUIEventSessionActionAnalytics:forWindow:] (0.10%)</title> | |
<rect width="1.1799927" ry="2" y="691.0" height="15.0" fill="rgb(255,115,3)" x="708.56006" rx="2"/> | |
<text font-size="12" x="711.56" y="701.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_log_impl (2.60%)')" onmouseout="c()"><title >_os_log_impl (2.60%)</title> | |
<rect width="30.679993" ry="2" y="707.0" height="15.0" fill="rgb(229,95,40)" x="715.6401" rx="2"/> | |
<text font-size="12" x="718.64" y="717.50" font-family="Verdana">_o..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_os_log (2.60%)')"><title >_os_log (2.60%)</title> | |
<rect height="15.0" rx="2" x="715.6401" y="691.0" width="30.679993" fill="rgb(216,83,4)" ry="2"/> | |
<text x="718.64" font-size="12" font-family="Verdana" y="701.50">_o..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_os_log_impl_flatten_and_send (2.50%)')" class="func_g"><title >_os_log_impl_flatten_and_send (2.50%)</title> | |
<rect width="29.5" rx="2" ry="2" fill="rgb(214,195,15)" height="15.0" y="675.0" x="715.6401"/> | |
<text font-family="Verdana" y="685.50" font-size="12" x="718.64">_o..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_os_log_impl_stream (2.40%)')"><title >_os_log_impl_stream (2.40%)</title> | |
<rect height="15.0" ry="2" x="715.6401" width="28.320007" fill="rgb(214,76,45)" rx="2" y="659.0"/> | |
<text y="669.50" font-size="12" x="718.64" font-family="Verdana">_o..</text> | |
</g> | |
<g onmouseover="s('_os_activity_stream_reflect (2.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_os_activity_stream_reflect (2.40%)</title> | |
<rect fill="rgb(248,214,50)" width="28.320007" rx="2" ry="2" x="715.6401" height="15.0" y="643.0"/> | |
<text font-size="12" x="718.64" font-family="Verdana" y="653.50">_o..</text> | |
</g> | |
<g onmouseover="s('dispatch_block_perform (1.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dispatch_block_perform (1.10%)</title> | |
<rect fill="rgb(232,159,46)" rx="2" y="627.0" x="715.6401" width="12.97998" height="15.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="637.50" x="718.64"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_dispatch_block_invoke_direct (1.10%)')" onmouseout="c()"><title >_dispatch_block_invoke_direct (1.10%)</title> | |
<rect y="611.0" x="715.6401" width="12.97998" rx="2" ry="2" height="15.0" fill="rgb(229,143,54)"/> | |
<text x="718.64" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_dispatch_client_callout (1.00%)')" onclick="zoom(this)"><title >_dispatch_client_callout (1.00%)</title> | |
<rect rx="2" fill="rgb(207,82,26)" width="11.799988" height="15.0" x="715.6401" ry="2" y="595.0"/> | |
<text font-size="12" font-family="Verdana" x="718.64" y="605.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('___os_activity_stream_reflect_block_invoke (1.00%)')" class="func_g" onclick="zoom(this)"><title >___os_activity_stream_reflect_block_invoke (1.00%)</title> | |
<rect rx="2" width="11.799988" fill="rgb(233,50,42)" ry="2" x="715.6401" y="579.0" height="15.0"/> | |
<text y="589.50" font-family="Verdana" x="718.64" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_simpleroutine (1.00%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >_xpc_pipe_simpleroutine (1.00%)</title> | |
<rect ry="2" fill="rgb(207,209,43)" height="15.0" width="11.799988" rx="2" x="715.6401" y="563.0"/> | |
<text font-size="12" font-family="Verdana" y="573.50" x="718.64"></text> | |
</g> | |
<g onmouseover="s('_xpc_send_serializer (0.60%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_send_serializer (0.60%)</title> | |
<rect x="715.6401" fill="rgb(239,229,14)" y="547.0" height="15.0" rx="2" width="7.080017" ry="2"/> | |
<text font-family="Verdana" x="718.64" font-size="12" y="557.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_pipe_mach_msg (0.60%)')" onmouseout="c()"><title >_xpc_pipe_mach_msg (0.60%)</title> | |
<rect x="715.6401" fill="rgb(231,43,17)" rx="2" height="15.0" width="7.080017" ry="2" y="531.0"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="718.64"></text> | |
</g> | |
<g onmouseover="s('mach_msg (0.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >mach_msg (0.60%)</title> | |
<rect x="715.6401" ry="2" width="7.080017" height="15.0" rx="2" fill="rgb(225,120,35)" y="515.0"/> | |
<text y="525.50" font-size="12" font-family="Verdana" x="718.64"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg_overwrite (0.60%)')" onclick="zoom(this)" onmouseout="c()"><title >mach_msg_overwrite (0.60%)</title> | |
<rect x="715.6401" rx="2" ry="2" fill="rgb(214,213,47)" height="15.0" y="499.0" width="7.080017"/> | |
<text y="509.50" x="718.64" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg2_internal (0.60%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_internal (0.60%)</title> | |
<rect ry="2" fill="rgb(247,34,31)" height="15.0" rx="2" x="715.6401" y="483.0" width="7.080017"/> | |
<text font-size="12" y="493.50" font-family="Verdana" x="718.64"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('mach_msg2_trap (0.60%)')"><title >mach_msg2_trap (0.60%)</title> | |
<rect x="715.6401" y="467.0" rx="2" width="7.080017" ry="2" height="15.0" fill="rgb(217,93,10)"/> | |
<text font-family="Verdana" y="477.50" x="718.64" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_xpc_pipe_pack_message (0.30%)')"><title >_xpc_pipe_pack_message (0.30%)</title> | |
<rect y="547.0" height="15.0" x="722.7201" rx="2" width="3.539978" ry="2" fill="rgb(227,146,26)"/> | |
<text font-family="Verdana" x="725.72" font-size="12" y="557.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('_xpc_serializer_pack (0.30%)')" class="func_g"><title >_xpc_serializer_pack (0.30%)</title> | |
<rect width="3.539978" height="15.0" fill="rgb(235,14,53)" ry="2" y="531.0" x="722.7201" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="725.72" y="541.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_dictionary_serialize (0.20%)')" onmouseout="c()"><title >_xpc_dictionary_serialize (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="515.0" x="722.7201" height="15.0" fill="rgb(232,11,41)" rx="2"/> | |
<text y="525.50" font-size="12" font-family="Verdana" x="725.72"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_apply_node_f (0.20%)')" onclick="zoom(this)"><title >_xpc_dictionary_apply_node_f (0.20%)</title> | |
<rect rx="2" ry="2" x="722.7201" y="499.0" width="2.3599854" height="15.0" fill="rgb(232,20,24)"/> | |
<text x="725.72" y="509.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('_xpc_dictionary_serialize_apply (0.20%)')"><title >_xpc_dictionary_serialize_apply (0.20%)</title> | |
<rect ry="2" fill="rgb(216,149,15)" width="2.3599854" rx="2" y="483.0" x="722.7201" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="493.50" x="725.72"></text> | |
</g> | |
<g onmouseover="s('_os_activity_stream_entry_encode (0.60%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_os_activity_stream_entry_encode (0.60%)</title> | |
<rect y="627.0" height="15.0" x="728.62006" rx="2" width="7.080017" ry="2" fill="rgb(255,168,43)"/> | |
<text y="637.50" font-family="Verdana" x="731.62" font-size="12"></text> | |
</g> | |
<g onmouseover="s('xpc_dictionary_set_uint64 (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >xpc_dictionary_set_uint64 (0.20%)</title> | |
<rect ry="2" fill="rgb(247,99,7)" width="2.3599854" rx="2" height="15.0" x="728.62006" y="611.0"/> | |
<text y="621.50" x="731.62" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_insert (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_xpc_dictionary_insert (0.20%)</title> | |
<rect fill="rgb(218,19,12)" rx="2" y="595.0" x="728.62006" width="2.3599854" height="15.0" ry="2"/> | |
<text x="731.62" y="605.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('xpc_dictionary_set_string (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >xpc_dictionary_set_string (0.10%)</title> | |
<rect ry="2" fill="rgb(212,41,16)" width="1.1799927" rx="2" height="15.0" x="730.98004" y="611.0"/> | |
<text y="621.50" x="733.98" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[OS_xpc_object dealloc] (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[OS_xpc_object dealloc] (0.30%)</title> | |
<rect y="627.0" height="15.0" x="735.7001" rx="2" width="3.539978" ry="2" fill="rgb(249,29,30)"/> | |
<text y="637.50" font-family="Verdana" x="738.70" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_dispose (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.30%)</title> | |
<rect ry="2" fill="rgb(222,166,41)" width="3.539978" rx="2" height="15.0" x="735.7001" y="611.0"/> | |
<text y="621.50" x="738.70" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_dictionary_node_free (0.20%)')" onmouseout="c()"><title >_xpc_dictionary_node_free (0.20%)</title> | |
<rect rx="2" y="595.0" fill="rgb(237,1,49)" x="735.7001" height="15.0" ry="2" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" y="605.50" x="738.70"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect ry="2" x="735.7001" width="1.1799927" rx="2" height="15.0" y="579.0" fill="rgb(207,117,55)"/> | |
<text x="738.70" font-family="Verdana" y="589.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dyld4::APIs::dyld_image_path_containing_address(void const*) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dyld4::APIs::dyld_image_path_containing_address(void const*) (0.10%)</title> | |
<rect ry="2" x="739.24005" width="1.1799927" rx="2" height="15.0" y="627.0" fill="rgb(250,172,24)"/> | |
<text y="637.50" font-size="12" font-family="Verdana" x="742.24"></text> | |
</g> | |
<g onmouseover="s('dyld4::APIs::findImageMappedAt(void const*, dyld3::MachOLoaded const**, bool*, char const**, void const**, unsigned long long*, unsigned char*) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dyld4::APIs::findImageMappedAt(void const*, dyld3::MachOLoaded const**, bool*, char const**, void const**, unsigned long long*, unsigned char*) (0.10%)</title> | |
<rect y="611.0" width="1.1799927" rx="2" height="15.0" x="739.24005" ry="2" fill="rgb(214,78,51)"/> | |
<text font-family="Verdana" y="621.50" x="742.24" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UIRemoteKeyboards peekApplicationEvent:] (1.40%)')" onmouseout="c()" onclick="zoom(this)"><title >-[_UIRemoteKeyboards peekApplicationEvent:] (1.40%)</title> | |
<rect ry="2" x="746.32007" width="16.52002" rx="2" height="15.0" y="707.0" fill="rgb(232,0,1)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="749.32"></text> | |
</g> | |
<g onmouseover="s('-[_UIRemoteKeyboards allowedToShowKeyboard] (1.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[_UIRemoteKeyboards allowedToShowKeyboard] (1.10%)</title> | |
<rect y="691.0" width="12.97998" rx="2" height="15.0" x="746.32007" ry="2" fill="rgb(248,25,42)"/> | |
<text font-family="Verdana" y="701.50" x="749.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UIRemoteKeyboards keyboardWindow] (0.60%)')" onclick="zoom(this)" onmouseout="c()"><title >-[_UIRemoteKeyboards keyboardWindow] (0.60%)</title> | |
<rect ry="2" fill="rgb(212,53,24)" rx="2" x="746.32007" height="15.0" y="675.0" width="7.080017"/> | |
<text font-family="Verdana" x="749.32" font-size="12" y="685.50"></text> | |
</g> | |
<g onmouseover="s('+[UIRemoteKeyboardWindow remoteKeyboardWindowForScreen:create:] (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >+[UIRemoteKeyboardWindow remoteKeyboardWindowForScreen:create:] (0.40%)</title> | |
<rect fill="rgb(249,201,15)" rx="2" x="746.32007" ry="2" y="659.0" height="15.0" width="4.7199707"/> | |
<text y="669.50" x="749.32" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x19c9d2b87 (0.10%)')" onmouseout="c()"><title >0x19c9d2b87 (0.10%)</title> | |
<rect rx="2" x="746.32007" y="643.0" width="1.1799927" height="15.0" ry="2" fill="rgb(214,219,43)"/> | |
<text x="749.32" font-family="Verdana" font-size="12" y="653.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19c9d2c53 (0.10%)')" onclick="zoom(this)"><title >0x19c9d2c53 (0.10%)</title> | |
<rect ry="2" x="746.32007" fill="rgb(223,179,10)" height="15.0" y="627.0" width="1.1799927" rx="2"/> | |
<text y="637.50" font-family="Verdana" x="749.32" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('+[UIView(Animation) performWithoutAnimation:] (0.10%)')" onmouseout="c()"><title >+[UIView(Animation) performWithoutAnimation:] (0.10%)</title> | |
<rect rx="2" x="747.50006" y="643.0" width="1.1799927" height="15.0" ry="2" fill="rgb(232,178,10)"/> | |
<text x="750.50" font-family="Verdana" font-size="12" y="653.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__63+[UIRemoteKeyboardWindow remoteKeyboardWindowForScreen:create:]_block_invoke (0.10%)')" onclick="zoom(this)"><title >__63+[UIRemoteKeyboardWindow remoteKeyboardWindowForScreen:create:]_block_invoke (0.10%)</title> | |
<rect ry="2" x="747.50006" fill="rgb(205,83,11)" height="15.0" y="627.0" width="1.1799927" rx="2"/> | |
<text y="637.50" font-family="Verdana" x="750.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIApplication isSuspendedEventsOnly] (0.30%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIApplication isSuspendedEventsOnly] (0.30%)</title> | |
<rect ry="2" fill="rgb(226,193,24)" rx="2" x="753.4001" height="15.0" y="675.0" width="3.539978"/> | |
<text font-family="Verdana" x="756.40" font-size="12" y="685.50"></text> | |
</g> | |
<g onmouseover="s('-[_UISceneLifecycleMultiplexer suspendedEventsOnly] (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[_UISceneLifecycleMultiplexer suspendedEventsOnly] (0.20%)</title> | |
<rect fill="rgb(213,163,8)" rx="2" x="753.4001" ry="2" y="659.0" height="15.0" width="2.3599854"/> | |
<text y="669.50" x="756.40" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScene _isSuspendedEventsOnly] (0.20%)')" onmouseout="c()"><title >-[UIScene _isSuspendedEventsOnly] (0.20%)</title> | |
<rect rx="2" x="753.4001" y="643.0" width="2.3599854" height="15.0" ry="2" fill="rgb(224,80,23)"/> | |
<text x="756.40" font-family="Verdana" font-size="12" y="653.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_UISceneLifecycleStateIsSEO (0.20%)')" onclick="zoom(this)"><title >_UISceneLifecycleStateIsSEO (0.20%)</title> | |
<rect ry="2" x="753.4001" fill="rgb(247,221,2)" height="15.0" y="627.0" width="2.3599854" rx="2"/> | |
<text y="637.50" font-family="Verdana" x="756.40" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIApplicationSceneSettings underLock] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIApplicationSceneSettings underLock] (0.10%)</title> | |
<rect height="15.0" fill="rgb(240,149,36)" rx="2" y="611.0" ry="2" x="753.4001" width="1.1799927"/> | |
<text font-family="Verdana" y="621.50" x="756.40" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIApplicationSceneSettings deactivationReasons] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIApplicationSceneSettings deactivationReasons] (0.10%)</title> | |
<rect height="15.0" fill="rgb(223,67,19)" rx="2" y="611.0" ry="2" x="754.5801" width="1.1799927"/> | |
<text font-family="Verdana" y="621.50" x="757.58" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIApplication isSuspended] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIApplication isSuspended] (0.10%)</title> | |
<rect ry="2" fill="rgb(222,157,50)" rx="2" x="756.94006" height="15.0" y="675.0" width="1.1799927"/> | |
<text font-family="Verdana" x="759.94" font-size="12" y="685.50"></text> | |
</g> | |
<g onmouseover="s('-[_UISceneLifecycleMultiplexer applicationState] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[_UISceneLifecycleMultiplexer applicationState] (0.10%)</title> | |
<rect ry="2" x="756.94006" fill="rgb(215,57,44)" height="15.0" y="659.0" width="1.1799927" rx="2"/> | |
<text y="669.50" x="759.94" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[_UIRemoteKeyboardsEventObserver peekApplicationEvent:] (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[_UIRemoteKeyboardsEventObserver peekApplicationEvent:] (0.20%)</title> | |
<rect y="691.0" width="2.3599854" rx="2" height="15.0" x="759.30005" ry="2" fill="rgb(220,110,16)"/> | |
<text font-family="Verdana" y="701.50" x="762.30" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UIRemoteKeyboardsEventObserver _trackTouch:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[_UIRemoteKeyboardsEventObserver _trackTouch:] (0.10%)</title> | |
<rect ry="2" x="759.30005" fill="rgb(246,61,2)" height="15.0" y="675.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="762.30" font-size="12" y="685.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIEventHIDEnumerateChildren (0.70%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIEventHIDEnumerateChildren (0.70%)</title> | |
<rect ry="2" x="762.8401" width="8.26001" rx="2" height="15.0" y="707.0" fill="rgb(229,146,20)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="765.84"></text> | |
</g> | |
<g onmouseover="s('____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.29 (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.29 (0.60%)</title> | |
<rect y="691.0" width="7.080017" rx="2" height="15.0" x="762.8401" ry="2" fill="rgb(248,142,4)"/> | |
<text font-family="Verdana" y="701.50" x="765.84" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIConvertScenePoint3DToWindow (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_UIConvertScenePoint3DToWindow (0.10%)</title> | |
<rect ry="2" x="762.8401" fill="rgb(246,52,31)" height="15.0" y="675.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="765.84" font-size="12" y="685.50"></text> | |
</g> | |
<g onmouseover="s('-[CALayer convertPoint:fromLayer:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[CALayer convertPoint:fromLayer:] (0.10%)</title> | |
<rect fill="rgb(232,145,2)" x="762.8401" height="15.0" y="659.0" ry="2" rx="2" width="1.1799927"/> | |
<text y="669.50" x="765.84" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIEventEnvironment _setCurrentTouch:forWindow:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIEventEnvironment _setCurrentTouch:forWindow:] (0.10%)</title> | |
<rect ry="2" x="764.0201" fill="rgb(221,153,47)" height="15.0" y="675.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="767.02" font-size="12" y="685.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UITouchSetBasicTouchPropertiesFromEvent (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_UITouchSetBasicTouchPropertiesFromEvent (0.10%)</title> | |
<rect ry="2" x="765.2001" fill="rgb(221,110,43)" height="15.0" y="675.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="768.20" font-size="12" y="685.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UITouchesEvent _setHIDEvent:] (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UITouchesEvent _setHIDEvent:] (0.30%)</title> | |
<rect ry="2" x="771.1001" width="3.539978" rx="2" height="15.0" y="707.0" fill="rgb(242,77,25)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="774.10"></text> | |
</g> | |
<g onmouseover="s('0x19ca29813 (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x19ca29813 (0.10%)</title> | |
<rect ry="2" x="771.1001" fill="rgb(249,83,9)" height="15.0" y="691.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" y="701.50" x="774.10" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19ca02a53 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19ca02a53 (0.10%)</title> | |
<rect x="771.1001" fill="rgb(246,90,26)" y="675.0" height="15.0" rx="2" ry="2" width="1.1799927"/> | |
<text font-family="Verdana" x="774.10" y="685.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19ca4d5d3 (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x19ca4d5d3 (0.10%)</title> | |
<rect y="659.0" fill="rgb(229,99,12)" rx="2" x="771.1001" ry="2" height="15.0" width="1.1799927"/> | |
<text x="774.10" y="669.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x19ca13f33 (0.10%)')" onclick="zoom(this)"><title >0x19ca13f33 (0.10%)</title> | |
<rect fill="rgb(219,54,19)" x="771.1001" width="1.1799927" rx="2" y="643.0" ry="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="653.50" x="774.10"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIEventEnvironment UIKitEventForHIDEvent:] (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIEventEnvironment UIKitEventForHIDEvent:] (0.30%)</title> | |
<rect ry="2" x="774.6401" width="3.539978" rx="2" height="15.0" y="707.0" fill="rgb(210,53,47)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="777.64"></text> | |
</g> | |
<g onmouseover="s('-[UIEventEnvironment _findTouchesEventWindowSceneForKeyboardWindowIfNeeded:] (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIEventEnvironment _findTouchesEventWindowSceneForKeyboardWindowIfNeeded:] (0.10%)</title> | |
<rect ry="2" x="774.6401" fill="rgb(228,139,17)" height="15.0" y="691.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" y="701.50" x="777.64" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIEventHIDUIWindowForHIDEvent (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIEventHIDUIWindowForHIDEvent (0.20%)</title> | |
<rect ry="2" x="778.18005" width="2.3599854" rx="2" height="15.0" y="707.0" fill="rgb(241,158,26)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="781.18"></text> | |
</g> | |
<g onmouseover="s('BKSHIDEventGetBaseAttributes (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >BKSHIDEventGetBaseAttributes (0.10%)</title> | |
<rect ry="2" x="778.18005" fill="rgb(243,164,25)" height="15.0" y="691.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" y="701.50" x="781.18" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19c9cdd67 (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19c9cdd67 (0.20%)</title> | |
<rect ry="2" x="780.5401" width="2.3599854" rx="2" height="15.0" y="707.0" fill="rgb(222,39,39)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="783.54"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca1b8bf (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >0x19ca1b8bf (0.20%)</title> | |
<rect ry="2" x="780.5401" fill="rgb(228,156,9)" height="15.0" y="691.0" width="2.3599854" rx="2"/> | |
<text font-family="Verdana" y="701.50" x="783.54" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19cad0847 (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x19cad0847 (0.20%)</title> | |
<rect height="15.0" fill="rgb(253,218,21)" y="675.0" x="780.5401" width="2.3599854" ry="2" rx="2"/> | |
<text font-family="Verdana" x="783.54" font-size="12" y="685.50"></text> | |
</g> | |
<g onmouseover="s('0x19c9aa69b (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19c9aa69b (0.20%)</title> | |
<rect height="15.0" x="780.5401" ry="2" fill="rgb(227,176,3)" width="2.3599854" y="659.0" rx="2"/> | |
<text y="669.50" x="783.54" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.51 (0.20%)')" onmouseout="c()"><title >____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.51 (0.20%)</title> | |
<rect ry="2" height="15.0" y="643.0" fill="rgb(238,208,24)" x="780.5401" width="2.3599854" rx="2"/> | |
<text x="783.54" font-family="Verdana" font-size="12" y="653.50"></text> | |
</g> | |
<g onmouseover="s('_AddTouchToEventAndDetermineIfNeedsCancel (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_AddTouchToEventAndDetermineIfNeedsCancel (0.10%)</title> | |
<rect height="15.0" width="1.1799927" y="627.0" ry="2" rx="2" x="780.5401" fill="rgb(210,121,1)"/> | |
<text font-family="Verdana" y="637.50" x="783.54" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UITouchesEvent _addTouch:forDelayedDelivery:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UITouchesEvent _addTouch:forDelayedDelivery:] (0.10%)</title> | |
<rect height="15.0" fill="rgb(230,102,36)" x="780.5401" y="611.0" ry="2" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" y="621.50" x="783.54" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.55 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >____updateTouchesWithDigitizerEventAndDetermineIfShouldSend_block_invoke.55 (0.10%)</title> | |
<rect ry="2" x="782.9001" width="1.1799927" rx="2" height="15.0" y="707.0" fill="rgb(224,193,50)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="785.90"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__kdebug_trace64 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >__kdebug_trace64 (0.10%)</title> | |
<rect ry="2" x="784.0801" width="1.1799927" rx="2" height="15.0" y="707.0" fill="rgb(213,7,16)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="787.08"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UITouchesEvent _clearTouches] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UITouchesEvent _clearTouches] (0.10%)</title> | |
<rect ry="2" x="785.2601" width="1.1799927" rx="2" height="15.0" y="707.0" fill="rgb(213,76,42)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="788.26"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__updateSystemGestureRecognitionIsPossible (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >__updateSystemGestureRecognitionIsPossible (0.10%)</title> | |
<rect ry="2" x="786.44006" width="1.1799927" rx="2" height="15.0" y="707.0" fill="rgb(218,123,54)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="789.44"></text> | |
</g> | |
<g class="func_g" onmouseover="s('BKSHIDEventGetDigitizerAttributes (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >BKSHIDEventGetDigitizerAttributes (0.10%)</title> | |
<rect ry="2" x="787.62006" width="1.1799927" rx="2" height="15.0" y="707.0" fill="rgb(207,76,40)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="790.62"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19c9cdcef (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19c9cdcef (0.10%)</title> | |
<rect ry="2" x="788.80005" width="1.1799927" rx="2" height="15.0" y="707.0" fill="rgb(213,170,47)"/> | |
<text y="717.50" font-size="12" font-family="Verdana" x="791.80"></text> | |
</g> | |
<g onmouseover="s('0x195a2a35b (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x195a2a35b (0.10%)</title> | |
<rect height="15.0" x="788.80005" ry="2" fill="rgb(218,227,44)" width="1.1799927" y="691.0" rx="2"/> | |
<text font-family="Verdana" y="701.50" x="791.80" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x195a2b907 (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >0x195a2b907 (0.10%)</title> | |
<rect height="15.0" fill="rgb(209,70,18)" y="675.0" x="788.80005" width="1.1799927" ry="2" rx="2"/> | |
<text y="685.50" font-size="12" x="791.80" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[HIDEvent dealloc] (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >-[HIDEvent dealloc] (0.20%)</title> | |
<rect ry="2" x="807.68005" width="2.3599854" rx="2" height="15.0" y="723.0" fill="rgb(215,111,49)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="810.68"></text> | |
</g> | |
<g onmouseover="s('0x19c9f9457 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19c9f9457 (0.10%)</title> | |
<rect height="15.0" fill="rgb(211,96,19)" y="707.0" x="807.68005" width="1.1799927" ry="2" rx="2"/> | |
<text font-family="Verdana" y="717.50" x="810.68" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19c9c118b (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x19c9c118b (0.10%)</title> | |
<rect height="15.0" fill="rgb(206,19,3)" x="807.68005" y="691.0" ry="2" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="810.68" y="701.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x195a344fb (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x195a344fb (0.10%)</title> | |
<rect height="15.0" width="1.1799927" rx="2" x="807.68005" fill="rgb(251,83,8)" y="675.0" ry="2"/> | |
<text y="685.50" x="810.68" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x195a2adff (0.10%)')" onclick="zoom(this)"><title >0x195a2adff (0.10%)</title> | |
<rect rx="2" x="807.68005" height="15.0" fill="rgb(208,102,20)" y="659.0" width="1.1799927" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="669.50" x="810.68"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x195a260a3 (0.10%)')" onclick="zoom(this)"><title >0x195a260a3 (0.10%)</title> | |
<rect y="643.0" fill="rgb(227,169,25)" width="1.1799927" x="807.68005" ry="2" height="15.0" rx="2"/> | |
<text y="653.50" font-family="Verdana" x="810.68" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UITouchSetBasicTouchPropertiesFromEvent (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >_UITouchSetBasicTouchPropertiesFromEvent (0.20%)</title> | |
<rect ry="2" x="810.0401" width="2.3599854" rx="2" height="15.0" y="723.0" fill="rgb(242,39,47)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="813.04"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__baseTouchLocationsForChild (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >__baseTouchLocationsForChild (0.10%)</title> | |
<rect ry="2" x="812.4001" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(206,105,13)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="815.40"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIConvertScenePoint3DToWindow (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIConvertScenePoint3DToWindow (0.10%)</title> | |
<rect ry="2" x="813.5801" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(245,21,11)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="816.58"></text> | |
</g> | |
<g onmouseover="s('-[CALayer convertPoint:fromLayer:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[CALayer convertPoint:fromLayer:] (0.10%)</title> | |
<rect height="15.0" fill="rgb(255,6,18)" y="707.0" x="813.5801" width="1.1799927" ry="2" rx="2"/> | |
<text font-family="Verdana" y="717.50" x="816.58" font-size="12"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::map_geometry(CALayer*, CALayer*, void (*)(void*, CA::Mat4<double> const&), void (*)(void*, CA::Mat4<double> const&), void*) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >CA::Layer::map_geometry(CALayer*, CALayer*, void (*)(void*, CA::Mat4<double> const&), void (*)(void*, CA::Mat4<double> const&), void*) (0.10%)</title> | |
<rect y="691.0" fill="rgb(247,211,17)" width="1.1799927" x="813.5801" ry="2" height="15.0" rx="2"/> | |
<text font-family="Verdana" x="816.58" y="701.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIEventEnvironment _touchesEventForWindow:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIEventEnvironment _touchesEventForWindow:] (0.10%)</title> | |
<rect ry="2" x="814.7601" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(213,142,48)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="817.76"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UITouchesEvent _addCoalescedTouch:forIndex:hidEvent:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UITouchesEvent _addCoalescedTouch:forIndex:hidEvent:] (0.10%)</title> | |
<rect ry="2" x="815.94006" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(247,135,44)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="818.94"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIEventHIDUIWindowForHIDEvent (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIEventHIDUIWindowForHIDEvent (0.10%)</title> | |
<rect ry="2" x="817.12006" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(205,103,15)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="820.12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x195a26844 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x195a26844 (0.10%)</title> | |
<rect ry="2" x="818.30005" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(238,161,54)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="821.30"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UITouchesEvent _moveCoalescedTouchesFromHidEvent:toHidEvent:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UITouchesEvent _moveCoalescedTouchesFromHidEvent:toHidEvent:] (0.10%)</title> | |
<rect ry="2" x="819.48004" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(236,217,2)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="822.48"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UITouchesEvent _coalescedTouchesForHidEvent:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UITouchesEvent _coalescedTouchesForHidEvent:] (0.10%)</title> | |
<rect height="15.0" width="1.1799927" rx="2" x="819.48004" fill="rgb(219,143,41)" y="707.0" ry="2"/> | |
<text font-family="Verdana" y="717.50" x="822.48" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIEventHIDPathAttributesForChild (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIEventHIDPathAttributesForChild (0.10%)</title> | |
<rect ry="2" x="820.66003" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(251,26,55)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="823.66"></text> | |
</g> | |
<g class="func_g" onmouseover="s('BKSHIDEventGetDigitizerAttributes (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >BKSHIDEventGetDigitizerAttributes (0.10%)</title> | |
<rect ry="2" x="821.84" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(234,87,49)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="824.84"></text> | |
</g> | |
<g class="func_g" onmouseover="s('BKSHIDEventGetBaseAttributes (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >BKSHIDEventGetBaseAttributes (0.10%)</title> | |
<rect fill="rgb(216,203,2)" rx="2" width="1.1799927" x="821.84" height="15.0" ry="2" y="707.0"/> | |
<text font-family="Verdana" y="717.50" x="824.84" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UITouch _clone] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UITouch _clone] (0.10%)</title> | |
<rect ry="2" x="823.02" width="1.1799927" rx="2" height="15.0" y="723.0" fill="rgb(210,111,33)"/> | |
<text y="733.50" font-size="12" font-family="Verdana" x="826.02"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[_UIEventBus drainEvents:] (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >-[_UIEventBus drainEvents:] (0.20%)</title> | |
<rect ry="2" x="839.5401" width="2.3599854" rx="2" height="15.0" y="739.0" fill="rgb(243,33,42)"/> | |
<text y="749.50" font-size="12" font-family="Verdana" x="842.54"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIUpdateInputGroupBatchChanges (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >_UIUpdateInputGroupBatchChanges (0.20%)</title> | |
<rect fill="rgb(234,123,28)" rx="2" width="2.3599854" x="839.5401" height="15.0" ry="2" y="723.0"/> | |
<text font-family="Verdana" y="733.50" x="842.54" font-size="12"></text> | |
</g> | |
<g onmouseover="s('__27-[_UIEventBus drainEvents:]_block_invoke (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >__27-[_UIEventBus drainEvents:]_block_invoke (0.10%)</title> | |
<rect height="15.0" rx="2" x="839.5401" fill="rgb(222,108,44)" ry="2" width="1.1799927" y="707.0"/> | |
<text font-family="Verdana" x="842.54" font-size="12" y="717.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIApplicationFlushCATransaction (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIApplicationFlushCATransaction (0.20%)</title> | |
<rect ry="2" x="845.44006" width="2.3599854" rx="2" height="15.0" y="755.0" fill="rgb(241,77,33)"/> | |
<text y="765.50" font-size="12" font-family="Verdana" x="848.44"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_cleanUpAfterCAFlushAndRunDeferredBlocks (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_cleanUpAfterCAFlushAndRunDeferredBlocks (0.10%)</title> | |
<rect height="15.0" rx="2" x="845.44006" fill="rgb(255,225,12)" ry="2" width="1.1799927" y="739.0"/> | |
<text font-family="Verdana" y="749.50" x="848.44" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CA::Transaction::flush_as_runloop_observer(bool) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >CA::Transaction::flush_as_runloop_observer(bool) (0.10%)</title> | |
<rect height="15.0" rx="2" x="846.62006" fill="rgb(242,62,11)" ry="2" width="1.1799927" y="739.0"/> | |
<text font-family="Verdana" y="749.50" x="849.62" font-size="12"></text> | |
</g> | |
<g onmouseover="s('CA::Transaction::commit() (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >CA::Transaction::commit() (0.10%)</title> | |
<rect rx="2" y="723.0" height="15.0" fill="rgb(249,167,33)" ry="2" width="1.1799927" x="846.62006"/> | |
<text font-family="Verdana" x="849.62" font-size="12" y="733.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIQOSProcessingBegin (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_UIQOSProcessingBegin (0.10%)</title> | |
<rect ry="2" x="850.1601" width="1.1799927" rx="2" height="15.0" y="771.0" fill="rgb(216,93,12)"/> | |
<text y="781.50" font-size="12" font-family="Verdana" x="853.16"></text> | |
</g> | |
<g class="func_g" onmouseover="s('schedulerStepScheduling (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >schedulerStepScheduling (0.20%)</title> | |
<rect ry="2" x="852.5201" width="2.3599854" rx="2" height="15.0" y="787.0" fill="rgb(224,123,49)"/> | |
<text y="797.50" font-size="12" font-family="Verdana" x="855.52"></text> | |
</g> | |
<g class="func_g" onmouseover="s('frameSourceGetTiming (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >frameSourceGetTiming (0.10%)</title> | |
<rect y="771.0" x="852.5201" ry="2" fill="rgb(222,90,55)" rx="2" width="1.1799927" height="15.0"/> | |
<text font-family="Verdana" y="781.50" x="855.52" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[_UIUpdateTarget requestPresentaionForMode:earliestReferenceDeadlineTime:earliestCommitDeadlineTime:] (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[_UIUpdateTarget requestPresentaionForMode:earliestReferenceDeadlineTime:earliestCommitDeadlineTime:] (0.10%)</title> | |
<rect y="755.0" x="852.5201" fill="rgb(216,66,5)" ry="2" height="15.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" x="855.52" font-size="12" y="765.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('schedulerStepScheduledWaitingMainInputs (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >schedulerStepScheduledWaitingMainInputs (0.10%)</title> | |
<rect ry="2" x="854.8801" width="1.1799927" rx="2" height="15.0" y="787.0" fill="rgb(223,33,3)"/> | |
<text y="797.50" font-size="12" font-family="Verdana" x="857.88"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_UIUpdateInputSetReadyForModelTimeCombine (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_UIUpdateInputSetReadyForModelTimeCombine (0.10%)</title> | |
<rect y="771.0" x="854.8801" fill="rgb(247,221,13)" ry="2" height="15.0" width="1.1799927" rx="2"/> | |
<text font-family="Verdana" y="781.50" x="857.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mk_timer_arm_leeway (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >mk_timer_arm_leeway (0.10%)</title> | |
<rect ry="2" x="856.06006" width="1.1799927" rx="2" height="15.0" y="787.0" fill="rgb(249,184,51)"/> | |
<text y="797.50" font-size="12" font-family="Verdana" x="859.06"></text> | |
</g> | |
<g class="func_g" onmouseover="s('schedulerStepScheduledDone (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >schedulerStepScheduledDone (0.10%)</title> | |
<rect ry="2" x="857.2401" width="1.1799927" rx="2" height="15.0" y="787.0" fill="rgb(252,172,47)"/> | |
<text y="797.50" font-size="12" font-family="Verdana" x="860.24"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WTF::RunLoop::performWork(void*) (1.60%)')" onmouseout="c()" onclick="zoom(this)"><title >WTF::RunLoop::performWork(void*) (1.60%)</title> | |
<rect ry="2" x="859.6001" width="18.880005" rx="2" height="15.0" y="803.0" fill="rgb(228,170,19)"/> | |
<text y="813.50" font-size="12" font-family="Verdana" x="862.60"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WTF::RunLoop::performWork() (1.60%)')" onclick="zoom(this)" onmouseout="c()"><title >WTF::RunLoop::performWork() (1.60%)</title> | |
<rect rx="2" fill="rgb(219,110,50)" y="787.0" width="18.880005" height="15.0" x="859.6001" ry="2"/> | |
<text font-family="Verdana" y="797.50" x="862.60" font-size="12"></text> | |
</g> | |
<g onmouseover="s('IPC::Connection::dispatchIncomingMessages() (1.50%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >IPC::Connection::dispatchIncomingMessages() (1.50%)</title> | |
<rect ry="2" fill="rgb(254,28,3)" width="17.700012" y="771.0" height="15.0" rx="2" x="859.6001"/> | |
<text font-family="Verdana" x="862.60" font-size="12" y="781.50"></text> | |
</g> | |
<g onmouseover="s('IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::Decoder, std::__1::default_delete<IPC::Decoder>>) (1.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::Decoder, std::__1::default_delete<IPC::Decoder>>) (1.50%)</title> | |
<rect width="17.700012" height="15.0" rx="2" ry="2" y="755.0" x="859.6001" fill="rgb(226,129,41)"/> | |
<text y="765.50" x="862.60" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('WTF::Detail::CallableWrapper<IPC::Connection::AsyncReplyHandler IPC::Connection::makeAsyncReplyHandler<Messages::WebPage::RunJavaScriptInFrameInScriptWorld, WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32>(WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32&&, WTF::ThreadLikeAssertion)::'lambda'(IPC::Decoder*), void, IPC::Decoder*>::~CallableWrapper() (0.50%)')" onclick="zoom(this)"><title >WTF::Detail::CallableWrapper<IPC::Connection::AsyncReplyHandler IPC::Connection::makeAsyncReplyHandler<Messages::WebPage::RunJavaScriptInFrameInScriptWorld, WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32>(WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32&&, WTF::ThreadLikeAssertion)::'lambda'(IPC::Decoder*), void, IPC::Decoder*>::~CallableWrapper() (0.50%)</title> | |
<rect height="15.0" x="859.6001" y="739.0" width="5.9000244" rx="2" ry="2" fill="rgb(232,121,44)"/> | |
<text font-size="12" font-family="Verdana" y="749.50" x="862.60"></text> | |
</g> | |
<g onmouseover="s('std::__1::unique_ptr<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>, std::__1::default_delete<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>>>::reset[abi:v15006](WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>*) (0.50%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >std::__1::unique_ptr<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>, std::__1::default_delete<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>>>::reset[abi:v15006](WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>*) (0.50%)</title> | |
<rect x="859.6001" fill="rgb(212,64,42)" rx="2" ry="2" height="15.0" width="5.9000244" y="723.0"/> | |
<text y="733.50" x="862.60" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>::invalidate() (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>::invalidate() (0.50%)</title> | |
<rect height="15.0" y="707.0" rx="2" width="5.9000244" ry="2" x="859.6001" fill="rgb(205,163,48)"/> | |
<text font-family="Verdana" y="717.50" x="862.60" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.40%)')" onclick="zoom(this)"><title >WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.40%)</title> | |
<rect y="691.0" width="4.7199707" rx="2" ry="2" x="859.6001" height="15.0" fill="rgb(216,81,24)"/> | |
<text font-family="Verdana" y="701.50" x="862.60" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.40%)')" onclick="zoom(this)"><title >WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.40%)</title> | |
<rect width="4.7199707" height="15.0" x="859.6001" y="675.0" rx="2" fill="rgb(232,175,23)" ry="2"/> | |
<text font-size="12" y="685.50" font-family="Verdana" x="862.60"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.40%)')"><title >WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.40%)</title> | |
<rect x="859.6001" y="659.0" width="4.7199707" fill="rgb(208,44,30)" height="15.0" ry="2" rx="2"/> | |
<text y="669.50" font-family="Verdana" x="862.60" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl (0.30%)')" onmouseout="c()"><title >_os_log_impl (0.30%)</title> | |
<rect fill="rgb(217,135,14)" height="15.0" ry="2" width="3.539978" rx="2" x="859.6001" y="643.0"/> | |
<text x="862.60" font-size="12" y="653.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_os_log (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_os_log (0.30%)</title> | |
<rect width="3.539978" height="15.0" rx="2" fill="rgb(223,110,9)" ry="2" x="859.6001" y="627.0"/> | |
<text font-family="Verdana" font-size="12" x="862.60" y="637.50"></text> | |
</g> | |
<g onmouseover="s('_os_log_impl_flatten_and_send (0.30%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_os_log_impl_flatten_and_send (0.30%)</title> | |
<rect fill="rgb(209,187,30)" height="15.0" x="859.6001" rx="2" width="3.539978" ry="2" y="611.0"/> | |
<text font-family="Verdana" x="862.60" y="621.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_os_log_impl_stream (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >_os_log_impl_stream (0.30%)</title> | |
<rect fill="rgb(210,184,19)" height="15.0" x="859.6001" width="3.539978" ry="2" y="595.0" rx="2"/> | |
<text font-size="12" x="862.60" font-family="Verdana" y="605.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (0.30%)')"><title >_os_activity_stream_reflect (0.30%)</title> | |
<rect y="579.0" fill="rgb(220,49,55)" width="3.539978" x="859.6001" height="15.0" rx="2" ry="2"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="862.60"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dispatch_block_perform (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >dispatch_block_perform (0.10%)</title> | |
<rect fill="rgb(210,153,11)" height="15.0" width="1.1799927" rx="2" x="859.6001" ry="2" y="563.0"/> | |
<text x="862.60" y="573.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_dispatch_block_invoke_direct (0.10%)')" onclick="zoom(this)" class="func_g"><title >_dispatch_block_invoke_direct (0.10%)</title> | |
<rect ry="2" height="15.0" y="547.0" rx="2" fill="rgb(243,151,30)" x="859.6001" width="1.1799927"/> | |
<text font-family="Verdana" y="557.50" x="862.60" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_client_callout (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_dispatch_client_callout (0.10%)</title> | |
<rect rx="2" width="1.1799927" x="859.6001" height="15.0" ry="2" fill="rgb(220,46,16)" y="531.0"/> | |
<text y="541.50" x="862.60" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('___os_activity_stream_reflect_block_invoke (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >___os_activity_stream_reflect_block_invoke (0.10%)</title> | |
<rect width="1.1799927" ry="2" y="515.0" fill="rgb(236,150,15)" rx="2" height="15.0" x="859.6001"/> | |
<text font-size="12" y="525.50" x="862.60" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_simpleroutine (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_xpc_pipe_simpleroutine (0.10%)</title> | |
<rect y="499.0" ry="2" rx="2" x="859.6001" width="1.1799927" height="15.0" fill="rgb(213,195,5)"/> | |
<text font-size="12" x="862.60" y="509.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_xpc_send_serializer (0.10%)')"><title >_xpc_send_serializer (0.10%)</title> | |
<rect width="1.1799927" ry="2" x="859.6001" y="483.0" fill="rgb(246,34,18)" rx="2" height="15.0"/> | |
<text font-family="Verdana" y="493.50" x="862.60" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_xpc_pipe_mach_msg (0.10%)')"><title >_xpc_pipe_mach_msg (0.10%)</title> | |
<rect height="15.0" x="859.6001" width="1.1799927" rx="2" ry="2" fill="rgb(232,76,24)" y="467.0"/> | |
<text font-family="Verdana" font-size="12" y="477.50" x="862.60"></text> | |
</g> | |
<g onmouseover="s('mach_msg (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >mach_msg (0.10%)</title> | |
<rect rx="2" x="859.6001" width="1.1799927" ry="2" y="451.0" height="15.0" fill="rgb(238,127,29)"/> | |
<text font-family="Verdana" font-size="12" x="862.60" y="461.50"></text> | |
</g> | |
<g onmouseover="s('mach_msg_overwrite (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >mach_msg_overwrite (0.10%)</title> | |
<rect x="859.6001" y="435.0" width="1.1799927" height="15.0" ry="2" fill="rgb(227,115,52)" rx="2"/> | |
<text x="862.60" font-size="12" y="445.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('mach_msg2_internal (0.10%)')" class="func_g" onclick="zoom(this)"><title >mach_msg2_internal (0.10%)</title> | |
<rect x="859.6001" rx="2" width="1.1799927" height="15.0" ry="2" fill="rgb(254,192,7)" y="419.0"/> | |
<text font-size="12" y="429.50" font-family="Verdana" x="862.60"></text> | |
</g> | |
<g onmouseover="s('mach_msg2_trap (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >mach_msg2_trap (0.10%)</title> | |
<rect x="859.6001" width="1.1799927" rx="2" height="15.0" y="403.0" fill="rgb(233,75,34)" ry="2"/> | |
<text y="413.50" font-family="Verdana" font-size="12" x="862.60"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect fill="rgb(253,57,0)" height="15.0" width="1.1799927" rx="2" x="860.7801" ry="2" y="563.0"/> | |
<text x="863.78" y="573.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_dictionary_dispose (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.10%)</title> | |
<rect rx="2" width="1.1799927" x="860.7801" height="15.0" ry="2" fill="rgb(234,151,7)" y="547.0"/> | |
<text font-family="Verdana" y="557.50" x="863.78" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('_os_activity_stream_entry_encode (0.10%)')" class="func_g"><title >_os_activity_stream_entry_encode (0.10%)</title> | |
<rect fill="rgb(252,13,52)" height="15.0" width="1.1799927" rx="2" x="861.9601" ry="2" y="563.0"/> | |
<text x="864.96" font-size="12" y="573.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_os_log_impl (0.10%)')" onclick="zoom(this)"><title >_os_log_impl (0.10%)</title> | |
<rect y="691.0" width="1.1799927" rx="2" ry="2" x="864.32007" height="15.0" fill="rgb(217,15,23)"/> | |
<text font-family="Verdana" y="701.50" x="867.32" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_log (0.10%)')" onclick="zoom(this)"><title >_os_log (0.10%)</title> | |
<rect width="1.1799927" height="15.0" x="864.32007" y="675.0" rx="2" fill="rgb(213,141,27)" ry="2"/> | |
<text font-size="12" y="685.50" font-family="Verdana" x="867.32"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('_os_log_impl_flatten_and_send (0.10%)')"><title >_os_log_impl_flatten_and_send (0.10%)</title> | |
<rect x="864.32007" y="659.0" width="1.1799927" fill="rgb(253,217,47)" height="15.0" ry="2" rx="2"/> | |
<text x="867.32" font-size="12" y="669.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl_stream (0.10%)')" onmouseout="c()"><title >_os_log_impl_stream (0.10%)</title> | |
<rect fill="rgb(240,51,28)" height="15.0" ry="2" width="1.1799927" rx="2" x="864.32007" y="643.0"/> | |
<text font-family="Verdana" font-size="12" x="867.32" y="653.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (0.10%)')" class="func_g" onmouseout="c()"><title >_os_activity_stream_reflect (0.10%)</title> | |
<rect width="1.1799927" height="15.0" rx="2" fill="rgb(218,170,17)" ry="2" x="864.32007" y="627.0"/> | |
<text y="637.50" x="867.32" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('WebKit::WebProcessProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.40%)')" onclick="zoom(this)"><title >WebKit::WebProcessProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.40%)</title> | |
<rect width="4.7199707" height="15.0" x="865.5001" y="739.0" rx="2" fill="rgb(243,84,25)" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="749.50" x="868.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('IPC::MessageReceiverMap::dispatchMessage(IPC::Connection&, IPC::Decoder&) (0.40%)')" onclick="zoom(this)"><title >IPC::MessageReceiverMap::dispatchMessage(IPC::Connection&, IPC::Decoder&) (0.40%)</title> | |
<rect x="865.5001" y="723.0" width="4.7199707" fill="rgb(237,101,2)" height="15.0" ry="2" rx="2"/> | |
<text y="733.50" font-family="Verdana" x="868.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('WebKit::WebUserContentControllerProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)')" class="func_g"><title >WebKit::WebUserContentControllerProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)</title> | |
<rect height="15.0" x="865.5001" y="707.0" width="1.1799927" rx="2" ry="2" fill="rgb(255,48,5)"/> | |
<text font-family="Verdana" x="868.50" font-size="12" y="717.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('WebKit::WebUserContentControllerProxy::didPostMessage(WTF::ObjectIdentifier<WebKit::WebPageProxyIdentifierType>, WebKit::FrameInfoData&&, unsigned long long, WTF::Span<unsigned char const, 18446744073709551615ul> const&, WTF::CompletionHandler<void (WTF::Span<unsigned char const, 18446744073709551615ul>&&, WTF::String const&)>&&) (0.10%)')" onclick="zoom(this)"><title >WebKit::WebUserContentControllerProxy::didPostMessage(WTF::ObjectIdentifier<WebKit::WebPageProxyIdentifierType>, WebKit::FrameInfoData&&, unsigned long long, WTF::Span<unsigned char const, 18446744073709551615ul> const&, WTF::CompletionHandler<void (WTF::Span<unsigned char const, 18446744073709551615ul>&&, WTF::String const&)>&&) (0.10%)</title> | |
<rect y="691.0" height="15.0" x="865.5001" fill="rgb(211,90,52)" ry="2" rx="2" width="1.1799927"/> | |
<text font-size="12" x="868.50" font-family="Verdana" y="701.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ScriptMessageHandlerDelegate::didPostMessage(WebKit::WebPageProxy&, WebKit::FrameInfoData&&, API::ContentWorld&, WebCore::SerializedScriptValue&) (0.10%)')" onmouseout="c()" class="func_g"><title >ScriptMessageHandlerDelegate::didPostMessage(WebKit::WebPageProxy&, WebKit::FrameInfoData&&, API::ContentWorld&, WebCore::SerializedScriptValue&) (0.10%)</title> | |
<rect width="1.1799927" x="865.5001" y="675.0" fill="rgb(221,0,34)" ry="2" height="15.0" rx="2"/> | |
<text y="685.50" font-size="12" x="868.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x103178048 (0.10%)')"><title >0x103178048 (0.10%)</title> | |
<rect y="659.0" fill="rgb(220,167,10)" width="1.1799927" x="865.5001" height="15.0" rx="2" ry="2"/> | |
<text y="669.50" font-size="12" x="868.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x1030b815c (0.10%)')" onmouseout="c()"><title >0x1030b815c (0.10%)</title> | |
<rect height="15.0" rx="2" x="865.5001" width="1.1799927" fill="rgb(231,57,18)" y="643.0" ry="2"/> | |
<text y="653.50" x="868.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x1030c1290 (0.10%)')" class="func_g" onmouseout="c()"><title >0x1030c1290 (0.10%)</title> | |
<rect width="1.1799927" ry="2" x="865.5001" y="627.0" fill="rgb(251,62,11)" rx="2" height="15.0"/> | |
<text y="637.50" font-size="12" font-family="Verdana" x="868.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('GADPostNotification (0.10%)')" onmouseout="c()"><title >GADPostNotification (0.10%)</title> | |
<rect rx="2" x="865.5001" width="1.1799927" ry="2" y="611.0" height="15.0" fill="rgb(225,44,32)"/> | |
<text x="868.50" font-size="12" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x103150fd8 (0.10%)')"><title >0x103150fd8 (0.10%)</title> | |
<rect x="865.5001" y="595.0" width="1.1799927" height="15.0" ry="2" fill="rgb(217,7,39)" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="605.50" x="868.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[NSNotificationCenter postNotificationName:object:userInfo:] (0.10%)')" onclick="zoom(this)" class="func_g"><title >-[NSNotificationCenter postNotificationName:object:userInfo:] (0.10%)</title> | |
<rect x="865.5001" width="1.1799927" rx="2" height="15.0" y="579.0" fill="rgb(238,7,47)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="868.50" y="589.50"></text> | |
</g> | |
<g onmouseover="s('0x19c9e2afb (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x19c9e2afb (0.10%)</title> | |
<rect fill="rgb(219,51,15)" width="1.1799927" y="563.0" ry="2" height="15.0" rx="2" x="865.5001"/> | |
<text y="573.50" font-family="Verdana" x="868.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19ca558b7 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19ca558b7 (0.10%)</title> | |
<rect fill="rgb(251,89,37)" x="865.5001" y="547.0" ry="2" rx="2" height="15.0" width="1.1799927"/> | |
<text x="868.50" y="557.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca72827 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19ca72827 (0.10%)</title> | |
<rect rx="2" fill="rgb(241,89,47)" y="531.0" x="865.5001" ry="2" height="15.0" width="1.1799927"/> | |
<text font-family="Verdana" x="868.50" y="541.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19c9ce57b (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x19c9ce57b (0.10%)</title> | |
<rect ry="2" x="865.5001" height="15.0" fill="rgb(229,96,15)" rx="2" y="515.0" width="1.1799927"/> | |
<text y="525.50" font-size="12" font-family="Verdana" x="868.50"></text> | |
</g> | |
<g onmouseover="s('0x103151400 (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x103151400 (0.10%)</title> | |
<rect ry="2" rx="2" height="15.0" x="865.5001" width="1.1799927" y="499.0" fill="rgb(222,54,42)"/> | |
<text font-family="Verdana" y="509.50" x="868.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('0x1031122d4 (0.10%)')"><title >0x1031122d4 (0.10%)</title> | |
<rect x="865.5001" y="483.0" fill="rgb(222,81,13)" width="1.1799927" rx="2" ry="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="868.50" y="493.50"></text> | |
</g> | |
<g onmouseover="s('0x10311231c (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x10311231c (0.10%)</title> | |
<rect height="15.0" y="467.0" width="1.1799927" ry="2" x="865.5001" fill="rgb(246,224,53)" rx="2"/> | |
<text font-family="Verdana" font-size="12" y="477.50" x="868.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('GADDictionaryFromURLQueryParameters (0.10%)')"><title >GADDictionaryFromURLQueryParameters (0.10%)</title> | |
<rect x="865.5001" fill="rgb(209,53,42)" rx="2" y="451.0" width="1.1799927" height="15.0" ry="2"/> | |
<text font-family="Verdana" x="868.50" font-size="12" y="461.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('WebKit::RemoteLayerTreeDrawingAreaProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)')" class="func_g"><title >WebKit::RemoteLayerTreeDrawingAreaProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)</title> | |
<rect height="15.0" rx="2" x="866.6801" width="1.1799927" fill="rgb(207,69,19)" y="707.0" ry="2"/> | |
<text font-family="Verdana" x="869.68" font-size="12" y="717.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('WebKit::RemoteLayerTreeDrawingAreaProxy::commitLayerTree(WebKit::RemoteLayerTreeTransaction const&, WebKit::RemoteScrollingCoordinatorTransaction const&) (0.10%)')" onclick="zoom(this)"><title >WebKit::RemoteLayerTreeDrawingAreaProxy::commitLayerTree(WebKit::RemoteLayerTreeTransaction const&, WebKit::RemoteScrollingCoordinatorTransaction const&) (0.10%)</title> | |
<rect height="15.0" x="866.6801" y="691.0" width="1.1799927" rx="2" ry="2" fill="rgb(235,153,51)"/> | |
<text font-size="12" x="869.68" font-family="Verdana" y="701.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('WebKit::WebPageProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)')" class="func_g"><title >WebKit::WebPageProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)</title> | |
<rect height="15.0" rx="2" x="867.8601" width="1.1799927" fill="rgb(218,86,41)" y="707.0" ry="2"/> | |
<text font-family="Verdana" x="870.86" font-size="12" y="717.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('WTF::Detail::CallableWrapper<WebKit::AuxiliaryProcessProxy::sendMessage(WTF::UniqueRef<IPC::Encoder>&&, WTF::OptionSet<IPC::SendOption>, std::__1::optional<IPC::Connection::AsyncReplyHandler>, WebKit::AuxiliaryProcessProxy::ShouldStartProcessThrottlerActivity)::$_4, void, IPC::Decoder*>::~CallableWrapper() (0.40%)')" onclick="zoom(this)"><title >WTF::Detail::CallableWrapper<WebKit::AuxiliaryProcessProxy::sendMessage(WTF::UniqueRef<IPC::Encoder>&&, WTF::OptionSet<IPC::SendOption>, std::__1::optional<IPC::Connection::AsyncReplyHandler>, WebKit::AuxiliaryProcessProxy::ShouldStartProcessThrottlerActivity)::$_4, void, IPC::Decoder*>::~CallableWrapper() (0.40%)</title> | |
<rect width="4.7199707" height="15.0" x="870.2201" y="739.0" rx="2" fill="rgb(243,227,27)" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="749.50" x="873.22"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::__1::unique_ptr<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>, std::__1::default_delete<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>>>::reset[abi:v15006](WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>*) (0.40%)')" onclick="zoom(this)"><title >std::__1::unique_ptr<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>, std::__1::default_delete<WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>>>::reset[abi:v15006](WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>*) (0.40%)</title> | |
<rect x="870.2201" y="723.0" width="4.7199707" fill="rgb(243,63,20)" height="15.0" ry="2" rx="2"/> | |
<text y="733.50" font-family="Verdana" x="873.22" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>::invalidate() (0.40%)')" class="func_g"><title >WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>::invalidate() (0.40%)</title> | |
<rect height="15.0" rx="2" x="870.2201" width="4.7199707" fill="rgb(218,13,30)" y="707.0" ry="2"/> | |
<text font-family="Verdana" x="873.22" font-size="12" y="717.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('WebKit::ProcessThrottler::removeActivity(WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>&) (0.40%)')" onclick="zoom(this)"><title >WebKit::ProcessThrottler::removeActivity(WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>&) (0.40%)</title> | |
<rect fill="rgb(239,7,42)" ry="2" width="4.7199707" height="15.0" x="870.2201" rx="2" y="691.0"/> | |
<text font-size="12" y="701.50" font-family="Verdana" x="873.22"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.40%)')"><title >WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.40%)</title> | |
<rect height="15.0" x="870.2201" y="675.0" width="4.7199707" rx="2" ry="2" fill="rgb(252,169,18)"/> | |
<text x="873.22" font-size="12" y="685.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.40%)')" class="func_g"><title >WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.40%)</title> | |
<rect rx="2" x="870.2201" width="4.7199707" ry="2" y="659.0" height="15.0" fill="rgb(217,166,51)"/> | |
<text font-family="Verdana" font-size="12" x="873.22" y="669.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.40%)')" onclick="zoom(this)"><title >WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.40%)</title> | |
<rect fill="rgb(255,192,27)" x="870.2201" rx="2" height="15.0" y="643.0" ry="2" width="4.7199707"/> | |
<text y="653.50" x="873.22" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl (0.30%)')" onmouseout="c()"><title >_os_log_impl (0.30%)</title> | |
<rect fill="rgb(251,32,14)" width="3.539978" y="627.0" ry="2" height="15.0" rx="2" x="870.2201"/> | |
<text x="873.22" y="637.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_os_log (0.30%)')" class="func_g" onclick="zoom(this)"><title >_os_log (0.30%)</title> | |
<rect fill="rgb(244,20,31)" x="870.2201" y="611.0" ry="2" rx="2" height="15.0" width="3.539978"/> | |
<text x="873.22" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_log_impl_flatten_and_send (0.30%)')" onmouseout="c()"><title >_os_log_impl_flatten_and_send (0.30%)</title> | |
<rect height="15.0" fill="rgb(234,205,51)" ry="2" rx="2" x="870.2201" y="595.0" width="3.539978"/> | |
<text y="605.50" font-size="12" font-family="Verdana" x="873.22"></text> | |
</g> | |
<g onmouseover="s('_os_log_impl_stream (0.30%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_os_log_impl_stream (0.30%)</title> | |
<rect width="3.539978" rx="2" ry="2" height="15.0" y="579.0" x="870.2201" fill="rgb(207,74,32)"/> | |
<text x="873.22" y="589.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (0.30%)')" onmouseout="c()" class="func_g"><title >_os_activity_stream_reflect (0.30%)</title> | |
<rect fill="rgb(233,171,54)" ry="2" y="563.0" height="15.0" width="3.539978" rx="2" x="870.2201"/> | |
<text x="873.22" y="573.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect height="15.0" rx="2" ry="2" fill="rgb(239,186,12)" x="870.2201" y="547.0" width="1.1799927"/> | |
<text x="873.22" font-size="12" y="557.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_dispose (0.10%)')" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.10%)</title> | |
<rect height="15.0" width="1.1799927" y="531.0" fill="rgb(248,192,50)" ry="2" rx="2" x="870.2201"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="873.22"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_activity_stream_entry_encode (0.10%)')" onclick="zoom(this)"><title >_os_activity_stream_entry_encode (0.10%)</title> | |
<rect fill="rgb(213,195,20)" width="1.1799927" ry="2" x="871.4001" y="547.0" rx="2" height="15.0"/> | |
<text x="874.40" y="557.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIEventFetcher drainEvents:] (0.80%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIEventFetcher drainEvents:] (0.80%)</title> | |
<rect ry="2" x="878.4801" width="9.440002" rx="2" height="15.0" y="803.0" fill="rgb(207,156,13)"/> | |
<text y="813.50" font-size="12" font-family="Verdana" x="881.48"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__30-[UIEventFetcher drainEvents:]_block_invoke (0.80%)')" onclick="zoom(this)" onmouseout="c()"><title >__30-[UIEventFetcher drainEvents:]_block_invoke (0.80%)</title> | |
<rect rx="2" fill="rgb(215,66,42)" y="787.0" width="9.440002" height="15.0" x="878.4801" ry="2"/> | |
<text font-family="Verdana" y="797.50" x="881.48" font-size="12"></text> | |
</g> | |
<g onmouseover="s('____eventFetcherSourceCallback_block_invoke (0.80%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >____eventFetcherSourceCallback_block_invoke (0.80%)</title> | |
<rect width="9.440002" height="15.0" x="878.4801" y="771.0" rx="2" fill="rgb(226,23,0)" ry="2"/> | |
<text font-family="Verdana" x="881.48" font-size="12" y="781.50"></text> | |
</g> | |
<g onmouseover="s('-[_UIEventBus addEvents:] (0.80%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[_UIEventBus addEvents:] (0.80%)</title> | |
<rect x="878.4801" y="755.0" width="9.440002" fill="rgb(238,11,37)" height="15.0" ry="2" rx="2"/> | |
<text y="765.50" x="881.48" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_UIUpdateInputGroupBatchChanges (0.50%)')" onclick="zoom(this)"><title >_UIUpdateInputGroupBatchChanges (0.50%)</title> | |
<rect height="15.0" rx="2" x="878.4801" width="5.9000244" fill="rgb(225,130,55)" y="739.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="749.50" x="881.48"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__25-[_UIEventBus addEvents:]_block_invoke (0.40%)')" onclick="zoom(this)"><title >__25-[_UIEventBus addEvents:]_block_invoke (0.40%)</title> | |
<rect fill="rgb(212,196,37)" ry="2" width="4.7199707" height="15.0" x="878.4801" rx="2" y="723.0"/> | |
<text y="733.50" font-family="Verdana" x="881.48" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[_UIUpdateHIDDigitizerInput addEvent:] (0.40%)')" class="func_g"><title >-[_UIUpdateHIDDigitizerInput addEvent:] (0.40%)</title> | |
<rect rx="2" fill="rgb(241,197,55)" y="707.0" x="878.4801" ry="2" height="15.0" width="4.7199707"/> | |
<text font-family="Verdana" x="881.48" font-size="12" y="717.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_UIEventHIDEnumerateChildren (0.20%)')" onclick="zoom(this)"><title >_UIEventHIDEnumerateChildren (0.20%)</title> | |
<rect rx="2" x="878.4801" width="2.3599854" ry="2" y="691.0" height="15.0" fill="rgb(253,170,31)"/> | |
<text font-size="12" x="881.48" font-family="Verdana" y="701.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('__39-[_UIUpdateHIDDigitizerInput addEvent:]_block_invoke_2 (0.20%)')" onmouseout="c()" class="func_g"><title >__39-[_UIUpdateHIDDigitizerInput addEvent:]_block_invoke_2 (0.20%)</title> | |
<rect fill="rgb(242,84,35)" width="2.3599854" ry="2" x="878.4801" y="675.0" rx="2" height="15.0"/> | |
<text y="685.50" font-size="12" x="881.48" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('BKSHIDEventDigitizerGetTouchLocus (0.10%)')"><title >BKSHIDEventDigitizerGetTouchLocus (0.10%)</title> | |
<rect ry="2" fill="rgb(217,180,35)" width="1.1799927" y="659.0" height="15.0" rx="2" x="878.4801"/> | |
<text y="669.50" font-size="12" x="881.48" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x19ca486fb (0.10%)')" onclick="zoom(this)"><title >0x19ca486fb (0.10%)</title> | |
<rect height="15.0" rx="2" x="884.3801" width="1.1799927" fill="rgb(250,97,16)" y="739.0" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="749.50" x="887.38"></text> | |
</g> | |
<g onmouseover="s('mach_msg (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >mach_msg (0.10%)</title> | |
<rect fill="rgb(247,193,34)" ry="2" width="1.1799927" height="15.0" x="884.3801" rx="2" y="723.0"/> | |
<text font-family="Verdana" y="733.50" x="887.38" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('mach_msg_overwrite (0.10%)')" onclick="zoom(this)"><title >mach_msg_overwrite (0.10%)</title> | |
<rect rx="2" x="884.3801" width="1.1799927" ry="2" y="707.0" height="15.0" fill="rgb(232,107,42)"/> | |
<text font-family="Verdana" x="887.38" font-size="12" y="717.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('mach_msg2_internal (0.10%)')" onclick="zoom(this)"><title >mach_msg2_internal (0.10%)</title> | |
<rect ry="2" fill="rgb(227,125,26)" width="1.1799927" y="691.0" height="15.0" rx="2" x="884.3801"/> | |
<text font-size="12" y="701.50" font-family="Verdana" x="887.38"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('mach_msg2_trap (0.10%)')"><title >mach_msg2_trap (0.10%)</title> | |
<rect fill="rgb(218,157,15)" width="1.1799927" ry="2" x="884.3801" height="15.0" rx="2" y="675.0"/> | |
<text x="887.38" font-size="12" y="685.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19c9fb647 (0.80%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19c9fb647 (0.80%)</title> | |
<rect ry="2" x="890.28015" width="9.440002" rx="2" height="15.0" y="851.0" fill="rgb(235,18,22)"/> | |
<text y="861.50" font-size="12" font-family="Verdana" x="893.28"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19ca767b3 (0.80%)')" class="func_g" onclick="zoom(this)"><title >0x19ca767b3 (0.80%)</title> | |
<rect x="890.28015" height="15.0" ry="2" fill="rgb(225,148,3)" width="9.440002" rx="2" y="835.0"/> | |
<text y="845.50" x="893.28" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19ca6a127 (0.80%)')" onclick="zoom(this)"><title >0x19ca6a127 (0.80%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(255,135,6)" y="819.0" width="9.440002" x="890.28015"/> | |
<text y="829.50" font-family="Verdana" font-size="12" x="893.28"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[FBSSerialQueue _performNextFromRunLoopSource] (0.40%)')" onclick="zoom(this)" class="func_g"><title >-[FBSSerialQueue _performNextFromRunLoopSource] (0.40%)</title> | |
<rect rx="2" x="890.28015" ry="2" height="15.0" fill="rgb(252,12,45)" width="4.7199707" y="803.0"/> | |
<text x="893.28" font-family="Verdana" y="813.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[FBSSerialQueue _targetQueue_performNextIfPossible] (0.40%)')" class="func_g" onclick="zoom(this)"><title >-[FBSSerialQueue _targetQueue_performNextIfPossible] (0.40%)</title> | |
<rect height="15.0" fill="rgb(205,75,27)" x="890.28015" rx="2" ry="2" y="787.0" width="4.7199707"/> | |
<text x="893.28" font-size="12" y="797.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ (0.40%)')" onclick="zoom(this)"><title >__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ (0.40%)</title> | |
<rect y="771.0" fill="rgb(241,121,30)" width="4.7199707" x="890.28015" rx="2" ry="2" height="15.0"/> | |
<text x="893.28" y="781.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_block_invoke_direct (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_dispatch_block_invoke_direct (0.40%)</title> | |
<rect ry="2" rx="2" x="890.28015" y="755.0" fill="rgb(245,85,3)" width="4.7199707" height="15.0"/> | |
<text y="765.50" font-size="12" font-family="Verdana" x="893.28"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_dispatch_client_callout (0.40%)')" onmouseout="c()"><title >_dispatch_client_callout (0.40%)</title> | |
<rect height="15.0" x="890.28015" rx="2" y="739.0" width="4.7199707" fill="rgb(207,115,3)" ry="2"/> | |
<text font-family="Verdana" x="893.28" y="749.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke (0.40%)')"><title >__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke (0.40%)</title> | |
<rect y="723.0" fill="rgb(244,136,40)" height="15.0" rx="2" x="890.28015" width="4.7199707" ry="2"/> | |
<text x="893.28" font-size="12" font-family="Verdana" y="733.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (0.40%)')"><title >-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] (0.40%)</title> | |
<rect x="890.28015" width="4.7199707" y="707.0" height="15.0" ry="2" fill="rgb(238,153,22)" rx="2"/> | |
<text y="717.50" x="893.28" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.80 (0.40%)')" onclick="zoom(this)"><title >__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.80 (0.40%)</title> | |
<rect rx="2" y="691.0" height="15.0" ry="2" width="4.7199707" x="890.28015" fill="rgb(208,99,27)"/> | |
<text x="893.28" font-size="12" font-family="Verdana" y="701.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[FBSScene _callOutQueue_agent_didCreateWithTransitionContext:completion:] (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >-[FBSScene _callOutQueue_agent_didCreateWithTransitionContext:completion:] (0.40%)</title> | |
<rect ry="2" width="4.7199707" y="675.0" height="15.0" fill="rgb(219,188,25)" rx="2" x="890.28015"/> | |
<text font-size="12" font-family="Verdana" x="893.28" y="685.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] (0.40%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] (0.40%)</title> | |
<rect rx="2" ry="2" fill="rgb(215,123,41)" height="15.0" x="890.28015" y="659.0" width="4.7199707"/> | |
<text y="669.50" font-size="12" x="893.28" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIApplication workspace:didCreateScene:withTransitionContext:completion:] (0.40%)')" class="func_g"><title >-[UIApplication workspace:didCreateScene:withTransitionContext:completion:] (0.40%)</title> | |
<rect y="643.0" width="4.7199707" ry="2" rx="2" height="15.0" fill="rgb(252,38,31)" x="890.28015"/> | |
<text x="893.28" y="653.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (0.40%)')" onclick="zoom(this)"><title >-[UIScene scene:didUpdateWithDiff:transitionContext:completion:] (0.40%)</title> | |
<rect x="890.28015" height="15.0" fill="rgb(219,182,4)" rx="2" y="627.0" width="4.7199707" ry="2"/> | |
<text y="637.50" font-family="Verdana" font-size="12" x="893.28"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (0.40%)')" onclick="zoom(this)"><title >-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] (0.40%)</title> | |
<rect y="611.0" height="15.0" rx="2" width="4.7199707" x="890.28015" fill="rgb(213,151,34)" ry="2"/> | |
<text y="621.50" font-family="Verdana" x="893.28" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.223 (0.40%)')"><title >__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.223 (0.40%)</title> | |
<rect x="890.28015" height="15.0" ry="2" rx="2" fill="rgb(233,112,18)" y="595.0" width="4.7199707"/> | |
<text x="893.28" y="605.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (0.40%)')" onmouseout="c()"><title >-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] (0.40%)</title> | |
<rect x="890.28015" y="579.0" width="4.7199707" ry="2" rx="2" height="15.0" fill="rgb(237,77,14)"/> | |
<text y="589.50" font-family="Verdana" font-size="12" x="893.28"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (0.40%)')"><title >_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion (0.40%)</title> | |
<rect fill="rgb(240,168,21)" rx="2" ry="2" y="563.0" width="4.7199707" x="890.28015" height="15.0"/> | |
<text x="893.28" font-family="Verdana" font-size="12" y="573.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (0.40%)')" onmouseout="c()"><title >+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] (0.40%)</title> | |
<rect fill="rgb(234,12,3)" rx="2" height="15.0" ry="2" width="4.7199707" y="547.0" x="890.28015"/> | |
<text y="557.50" font-size="12" font-family="Verdana" x="893.28"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke (0.40%)')"><title >__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke (0.40%)</title> | |
<rect width="4.7199707" height="15.0" y="531.0" ry="2" rx="2" fill="rgb(233,218,32)" x="890.28015"/> | |
<text y="541.50" x="893.28" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] (0.40%)')" onmouseout="c()"><title >-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] (0.40%)</title> | |
<rect x="890.28015" height="15.0" y="515.0" fill="rgb(234,93,2)" rx="2" width="4.7199707" ry="2"/> | |
<text x="893.28" y="525.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] (0.40%)')"><title >-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] (0.40%)</title> | |
<rect height="15.0" x="890.28015" rx="2" ry="2" y="499.0" width="4.7199707" fill="rgb(227,224,51)"/> | |
<text font-size="12" y="509.50" x="893.28" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] (0.40%)')"><title >-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] (0.40%)</title> | |
<rect height="15.0" x="890.28015" width="4.7199707" fill="rgb(251,167,51)" rx="2" y="483.0" ry="2"/> | |
<text y="493.50" font-family="Verdana" font-size="12" x="893.28"></text> | |
</g> | |
<g onmouseover="s('__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke (0.40%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke (0.40%)</title> | |
<rect ry="2" rx="2" x="890.28015" fill="rgb(219,110,45)" width="4.7199707" y="467.0" height="15.0"/> | |
<text x="893.28" font-family="Verdana" y="477.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_UIScenePerformActionsWithLifecycleActionMask (0.40%)')" onclick="zoom(this)"><title >_UIScenePerformActionsWithLifecycleActionMask (0.40%)</title> | |
<rect fill="rgb(245,159,49)" y="451.0" width="4.7199707" height="15.0" rx="2" x="890.28015" ry="2"/> | |
<text x="893.28" font-family="Verdana" y="461.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] (0.40%)')"><title >-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] (0.40%)</title> | |
<rect y="435.0" height="15.0" fill="rgb(208,181,4)" width="4.7199707" x="890.28015" rx="2" ry="2"/> | |
<text y="445.50" font-family="Verdana" font-size="12" x="893.28"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIApplication _runWithMainScene:transitionContext:completion:] (0.40%)')" onmouseout="c()"><title >-[UIApplication _runWithMainScene:transitionContext:completion:] (0.40%)</title> | |
<rect height="15.0" width="4.7199707" x="890.28015" rx="2" fill="rgb(219,222,34)" y="419.0" ry="2"/> | |
<text x="893.28" y="429.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIApplication _loadMainInterfaceFile] (0.20%)')" onmouseout="c()"><title >-[UIApplication _loadMainInterfaceFile] (0.20%)</title> | |
<rect x="890.28015" ry="2" width="2.3599854" height="15.0" rx="2" fill="rgb(232,191,21)" y="403.0"/> | |
<text font-family="Verdana" x="893.28" y="413.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIApplication _loadMainStoryboardFileNamed:bundle:] (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[UIApplication _loadMainStoryboardFileNamed:bundle:] (0.20%)</title> | |
<rect fill="rgb(251,72,55)" x="890.28015" y="387.0" ry="2" height="15.0" rx="2" width="2.3599854"/> | |
<text y="397.50" x="893.28" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[UIStoryboard _instantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)')"><title >-[UIStoryboard _instantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)</title> | |
<rect x="890.28015" y="371.0" rx="2" height="15.0" width="2.3599854" fill="rgb(219,126,16)" ry="2"/> | |
<text y="381.50" font-size="12" font-family="Verdana" x="893.28"></text> | |
</g> | |
<g onmouseover="s('-[UIStoryboard __reallyInstantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIStoryboard __reallyInstantiateViewControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] (0.20%)</title> | |
<rect y="355.0" fill="rgb(205,93,6)" ry="2" width="2.3599854" x="890.28015" rx="2" height="15.0"/> | |
<text y="365.50" font-family="Verdana" x="893.28" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UINib instantiateWithOwner:options:] (0.20%)')"><title >-[UINib instantiateWithOwner:options:] (0.20%)</title> | |
<rect x="890.28015" fill="rgb(212,78,15)" width="2.3599854" height="15.0" rx="2" ry="2" y="339.0"/> | |
<text y="349.50" font-size="12" x="893.28" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[FlutterViewController awakeFromNib] (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[FlutterViewController awakeFromNib] (0.20%)</title> | |
<rect x="890.28015" y="323.0" rx="2" width="2.3599854" height="15.0" ry="2" fill="rgb(206,228,9)"/> | |
<text y="333.50" font-family="Verdana" font-size="12" x="893.28"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[FlutterViewController sharedSetupWithProject:initialRoute:] (0.20%)')"><title >-[FlutterViewController sharedSetupWithProject:initialRoute:] (0.20%)</title> | |
<rect y="307.0" x="890.28015" height="15.0" fill="rgb(212,140,46)" rx="2" ry="2" width="2.3599854"/> | |
<text x="893.28" y="317.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[FlutterEngine createShell:libraryURI:initialRoute:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[FlutterEngine createShell:libraryURI:initialRoute:] (0.10%)</title> | |
<rect width="1.1799927" x="890.28015" y="291.0" ry="2" rx="2" height="15.0" fill="rgb(206,219,39)"/> | |
<text x="893.28" font-family="Verdana" font-size="12" y="301.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[FlutterDartProject initWithPrecompiledDartBundle:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[FlutterDartProject initWithPrecompiledDartBundle:] (0.10%)</title> | |
<rect width="1.1799927" x="891.46014" y="291.0" ry="2" rx="2" height="15.0" fill="rgb(255,86,10)"/> | |
<text x="894.46" font-family="Verdana" font-size="12" y="301.50"></text> | |
</g> | |
<g onmouseover="s('-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] (0.10%)</title> | |
<rect x="892.64014" ry="2" width="1.1799927" height="15.0" rx="2" fill="rgb(223,99,35)" y="403.0"/> | |
<text x="895.64" font-size="12" y="413.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIWindow _mainQueue_makeKeyAndVisible] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIWindow _mainQueue_makeKeyAndVisible] (0.10%)</title> | |
<rect x="892.64014" fill="rgb(223,40,46)" width="1.1799927" height="15.0" rx="2" ry="2" y="387.0"/> | |
<text y="397.50" font-size="12" font-family="Verdana" x="895.64"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[UIWindow _setHidden:forced:] (0.10%)')"><title >-[UIWindow _setHidden:forced:] (0.10%)</title> | |
<rect x="892.64014" y="371.0" rx="2" height="15.0" width="1.1799927" fill="rgb(241,210,10)" ry="2"/> | |
<text font-size="12" x="895.64" font-family="Verdana" y="381.50"></text> | |
</g> | |
<g onmouseover="s('-[UIWindow _updateLayerOrderingAndSetLayerHidden:actionBlock:] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIWindow _updateLayerOrderingAndSetLayerHidden:actionBlock:] (0.10%)</title> | |
<rect ry="2" rx="2" y="355.0" width="1.1799927" fill="rgb(238,183,5)" height="15.0" x="892.64014"/> | |
<text y="365.50" font-size="12" x="895.64" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIWindow addRootViewControllerViewIfPossible] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIWindow addRootViewControllerViewIfPossible] (0.10%)</title> | |
<rect rx="2" x="892.64014" ry="2" fill="rgb(212,127,39)" width="1.1799927" y="339.0" height="15.0"/> | |
<text x="895.64" font-size="12" y="349.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIPresentationController _presentWithAnimationController:inWindow:interactionController:target:didFinish:] (0.10%)')" onmouseout="c()"><title >-[UIPresentationController _presentWithAnimationController:inWindow:interactionController:target:didFinish:] (0.10%)</title> | |
<rect fill="rgb(224,86,28)" ry="2" height="15.0" rx="2" x="892.64014" y="323.0" width="1.1799927"/> | |
<text x="895.64" y="333.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[UIPresentationController runTransitionForCurrentState] (0.10%)')" onmouseout="c()"><title >-[UIPresentationController runTransitionForCurrentState] (0.10%)</title> | |
<rect x="892.64014" height="15.0" fill="rgb(238,26,19)" ry="2" y="307.0" rx="2" width="1.1799927"/> | |
<text x="895.64" y="317.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('+[UIPresentationController _scheduleTransition:] (0.10%)')" onmouseout="c()"><title >+[UIPresentationController _scheduleTransition:] (0.10%)</title> | |
<rect ry="2" fill="rgb(219,199,4)" width="1.1799927" height="15.0" rx="2" y="291.0" x="892.64014"/> | |
<text font-family="Verdana" x="895.64" font-size="12" y="301.50"></text> | |
</g> | |
<g onmouseover="s('__56-[UIPresentationController runTransitionForCurrentState]_block_invoke_3 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >__56-[UIPresentationController runTransitionForCurrentState]_block_invoke_3 (0.10%)</title> | |
<rect x="892.64014" height="15.0" rx="2" ry="2" y="275.0" fill="rgb(208,135,55)" width="1.1799927"/> | |
<text font-family="Verdana" y="285.50" font-size="12" x="895.64"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WTF::RunLoop::performWork(void*) (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >WTF::RunLoop::performWork(void*) (0.20%)</title> | |
<rect rx="2" x="895.0001" ry="2" height="15.0" fill="rgb(223,17,23)" width="2.3599854" y="803.0"/> | |
<text x="898.00" y="813.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('WTF::RunLoop::performWork() (0.20%)')" onclick="zoom(this)" class="func_g"><title >WTF::RunLoop::performWork() (0.20%)</title> | |
<rect height="15.0" fill="rgb(216,218,24)" x="895.0001" rx="2" ry="2" y="787.0" width="2.3599854"/> | |
<text x="898.00" font-family="Verdana" y="797.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('IPC::Connection::dispatchIncomingMessages() (0.20%)')" class="func_g" onclick="zoom(this)"><title >IPC::Connection::dispatchIncomingMessages() (0.20%)</title> | |
<rect y="771.0" fill="rgb(228,154,55)" width="2.3599854" x="895.0001" rx="2" ry="2" height="15.0"/> | |
<text x="898.00" font-size="12" y="781.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::Decoder, std::__1::default_delete<IPC::Decoder>>) (0.20%)')" onclick="zoom(this)"><title >IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::Decoder, std::__1::default_delete<IPC::Decoder>>) (0.20%)</title> | |
<rect fill="rgb(250,195,33)" ry="2" height="15.0" rx="2" x="895.0001" y="755.0" width="2.3599854"/> | |
<text x="898.00" y="765.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('WebKit::WebProcessProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >WebKit::WebProcessProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)</title> | |
<rect fill="rgb(226,171,3)" x="895.0001" y="739.0" ry="2" height="15.0" rx="2" width="1.1799927"/> | |
<text y="749.50" font-size="12" font-family="Verdana" x="898.00"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('IPC::MessageReceiverMap::dispatchMessage(IPC::Connection&, IPC::Decoder&) (0.10%)')" onclick="zoom(this)" class="func_g"><title >IPC::MessageReceiverMap::dispatchMessage(IPC::Connection&, IPC::Decoder&) (0.10%)</title> | |
<rect fill="rgb(225,180,0)" rx="2" height="15.0" ry="2" y="723.0" width="1.1799927" x="895.0001"/> | |
<text font-family="Verdana" x="898.00" y="733.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('WebKit::WebUserContentControllerProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)')"><title >WebKit::WebUserContentControllerProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) (0.10%)</title> | |
<rect ry="2" width="1.1799927" y="707.0" height="15.0" fill="rgb(227,124,3)" rx="2" x="895.0001"/> | |
<text font-family="Verdana" y="717.50" x="898.00" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('WebKit::WebUserContentControllerProxy::didPostMessage(WTF::ObjectIdentifier<WebKit::WebPageProxyIdentifierType>, WebKit::FrameInfoData&&, unsigned long long, WTF::Span<unsigned char const, 18446744073709551615ul> const&, WTF::CompletionHandler<void (WTF::Span<unsigned char const, 18446744073709551615ul>&&, WTF::String const&)>&&) (0.10%)')" onclick="zoom(this)"><title >WebKit::WebUserContentControllerProxy::didPostMessage(WTF::ObjectIdentifier<WebKit::WebPageProxyIdentifierType>, WebKit::FrameInfoData&&, unsigned long long, WTF::Span<unsigned char const, 18446744073709551615ul> const&, WTF::CompletionHandler<void (WTF::Span<unsigned char const, 18446744073709551615ul>&&, WTF::String const&)>&&) (0.10%)</title> | |
<rect x="895.0001" height="15.0" fill="rgb(248,93,55)" rx="2" y="691.0" width="1.1799927" ry="2"/> | |
<text y="701.50" font-family="Verdana" font-size="12" x="898.00"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('ScriptMessageHandlerDelegate::didPostMessage(WebKit::WebPageProxy&, WebKit::FrameInfoData&&, API::ContentWorld&, WebCore::SerializedScriptValue&) (0.10%)')" onmouseout="c()" class="func_g"><title >ScriptMessageHandlerDelegate::didPostMessage(WebKit::WebPageProxy&, WebKit::FrameInfoData&&, API::ContentWorld&, WebCore::SerializedScriptValue&) (0.10%)</title> | |
<rect y="675.0" fill="rgb(254,26,36)" height="15.0" rx="2" x="895.0001" width="1.1799927" ry="2"/> | |
<text font-size="12" y="685.50" font-family="Verdana" x="898.00"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x103178048 (0.10%)')"><title >0x103178048 (0.10%)</title> | |
<rect rx="2" y="659.0" height="15.0" ry="2" width="1.1799927" x="895.0001" fill="rgb(229,69,27)"/> | |
<text x="898.00" y="669.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('runloopSourceCallback (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >runloopSourceCallback (0.10%)</title> | |
<rect rx="2" x="897.36017" ry="2" height="15.0" fill="rgb(240,109,40)" width="1.1799927" y="803.0"/> | |
<text x="900.36" y="813.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19c9fb5ab (0.20%)')" class="func_g" onclick="zoom(this)"><title >0x19c9fb5ab (0.20%)</title> | |
<rect x="899.7201" height="15.0" ry="2" fill="rgb(238,128,51)" width="2.3599854" rx="2" y="851.0"/> | |
<text y="861.50" x="902.72" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca11e4f (0.10%)')"><title >0x19ca11e4f (0.10%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(217,0,6)" y="835.0" width="1.1799927" x="899.7201"/> | |
<text y="845.50" font-family="Verdana" font-size="12" x="902.72"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x19ca114a3 (12.40%)')"><title >0x19ca114a3 (12.40%)</title> | |
<rect fill="rgb(240,212,39)" y="867.0" height="15.0" x="903.26013" rx="2" width="146.31995" ry="2"/> | |
<text font-size="12" y="877.50" x="906.26" font-family="Verdana">0x19ca114a3</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19c9c571b (12.40%)')" class="func_g" onclick="zoom(this)"><title >0x19c9c571b (12.40%)</title> | |
<rect x="903.26013" height="15.0" ry="2" fill="rgb(253,57,13)" width="146.31995" rx="2" y="851.0"/> | |
<text y="861.50" x="906.26" font-family="Verdana" font-size="12">0x19c9c571b</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca1ff4b (12.10%)')"><title >0x19ca1ff4b (12.10%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(232,194,15)" y="835.0" width="142.78003" x="903.26013"/> | |
<text y="845.50" font-family="Verdana" font-size="12" x="906.26">0x19ca1ff4b</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19ca62623 (12.10%)')" onclick="zoom(this)"><title >0x19ca62623 (12.10%)</title> | |
<rect rx="2" x="903.26013" ry="2" height="15.0" fill="rgb(255,168,2)" width="142.78003" y="819.0"/> | |
<text y="829.50" x="906.26" font-size="12" font-family="Verdana">0x19ca62623</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (11.80%)')" onclick="zoom(this)" class="func_g"><title >fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) (11.80%)</title> | |
<rect height="15.0" fill="rgb(212,79,45)" x="903.26013" rx="2" ry="2" y="803.0" width="139.23999"/> | |
<text x="906.26" font-family="Verdana" y="813.50" font-size="12">fml::MessageLoopD..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('fml::MessageLoopImpl::FlushTasks(fml::FlushType) (11.80%)')" class="func_g" onclick="zoom(this)"><title >fml::MessageLoopImpl::FlushTasks(fml::FlushType) (11.80%)</title> | |
<rect y="787.0" fill="rgb(238,199,53)" width="139.23999" x="903.26013" rx="2" ry="2" height="15.0"/> | |
<text x="906.26" font-size="12" y="797.50" font-family="Verdana">fml::MessageLoopI..</text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>>, void ()>::operator()() (11.60%)')" onclick="zoom(this)"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>>)::$_0>>, void ()>::operator()() (11.60%)</title> | |
<rect fill="rgb(232,52,32)" ry="2" height="15.0" rx="2" x="903.26013" y="771.0" width="136.88"/> | |
<text x="906.26" y="781.50" font-family="Verdana" font-size="12">std::_fl::__funct..</text> | |
</g> | |
<g onmouseover="s('flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&) (11.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&) (11.60%)</title> | |
<rect fill="rgb(208,211,28)" rx="2" height="15.0" ry="2" y="755.0" width="136.88" x="903.26013"/> | |
<text y="765.50" font-size="12" font-family="Verdana" x="906.26">flutter::Rasteriz..</text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('std::_fl::__function::__func<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0, std::_fl::allocator<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0>, void (std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>)>::operator()(std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>&&) (11.50%)')" onclick="zoom(this)" class="func_g"><title >std::_fl::__function::__func<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0, std::_fl::allocator<flutter::Rasterizer::Draw(std::_fl::shared_ptr<flutter::Pipeline<flutter::FrameItem>> const&)::$_0>, void (std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>)>::operator()(std::_fl::unique_ptr<flutter::FrameItem, std::_fl::default_delete<flutter::FrameItem>>&&) (11.50%)</title> | |
<rect x="903.26013" rx="2" y="739.0" fill="rgb(238,85,3)" height="15.0" width="135.70007" ry="2"/> | |
<text font-family="Verdana" x="906.26" y="749.50" font-size="12">std::_fl::__funct..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (11.50%)')"><title >flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (11.50%)</title> | |
<rect height="15.0" ry="2" rx="2" x="903.26013" width="135.70007" fill="rgb(254,116,23)" y="723.0"/> | |
<text x="906.26" y="733.50" font-size="12" font-family="Verdana">flutter::Rasteriz..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('fml::SyncSwitch::Execute(fml::SyncSwitch::Handlers const&) const (11.50%)')"><title >fml::SyncSwitch::Execute(fml::SyncSwitch::Handlers const&) const (11.50%)</title> | |
<rect x="903.26013" y="707.0" height="15.0" fill="rgb(244,121,26)" rx="2" ry="2" width="135.70007"/> | |
<text y="717.50" x="906.26" font-size="12" font-family="Verdana">fml::SyncSwitch::..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('std::_fl::__function::__func<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1, std::_fl::allocator<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1>, void ()>::operator()() (11.50%)')" onmouseout="c()" class="func_g"><title >std::_fl::__function::__func<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1, std::_fl::allocator<flutter::Rasterizer::DrawToSurfaces(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>)::$_1>, void ()>::operator()() (11.50%)</title> | |
<rect fill="rgb(255,105,35)" x="903.26013" y="691.0" height="15.0" width="135.70007" rx="2" ry="2"/> | |
<text y="701.50" font-size="12" x="906.26" font-family="Verdana">std::_fl::__funct..</text> | |
</g> | |
<g onmouseover="s('flutter::Rasterizer::DrawToSurfacesUnsafe(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (11.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >flutter::Rasterizer::DrawToSurfacesUnsafe(flutter::FrameTimingsRecorder&, std::_fl::vector<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>, std::_fl::allocator<std::_fl::unique_ptr<flutter::LayerTreeTask, std::_fl::default_delete<flutter::LayerTreeTask>>>>) (11.50%)</title> | |
<rect y="675.0" height="15.0" fill="rgb(253,150,30)" width="135.70007" x="903.26013" rx="2" ry="2"/> | |
<text y="685.50" font-family="Verdana" font-size="12" x="906.26">flutter::Rasteriz..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::IOSExternalViewEmbedder::SubmitFlutterView(GrDirectContext*, std::_fl::shared_ptr<impeller::AiksContext> const&, std::_fl::unique_ptr<flutter::SurfaceFrame, std::_fl::default_delete<flutter::SurfaceFrame>>) (9.60%)')" onclick="zoom(this)"><title >flutter::IOSExternalViewEmbedder::SubmitFlutterView(GrDirectContext*, std::_fl::shared_ptr<impeller::AiksContext> const&, std::_fl::unique_ptr<flutter::SurfaceFrame, std::_fl::default_delete<flutter::SurfaceFrame>>) (9.60%)</title> | |
<rect x="903.26013" fill="rgb(233,21,26)" height="15.0" rx="2" y="659.0" width="113.28003" ry="2"/> | |
<text y="669.50" x="906.26" font-size="12" font-family="Verdana">flutter::IOSEx..</text> | |
</g> | |
<g onmouseover="s('flutter::SurfaceFrame::Submit() (5.60%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::SurfaceFrame::Submit() (5.60%)</title> | |
<rect y="643.0" width="66.08002" x="903.26013" height="15.0" fill="rgb(218,195,35)" rx="2" ry="2"/> | |
<text x="906.26" y="653.50" font-size="12" font-family="Verdana">flutter..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>>, bool (flutter::SurfaceFrame&, flutter::DlCanvas*)>::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*&&) (5.60%)')" class="func_g"><title >std::_fl::__function::__func<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>, std::_fl::allocator<fml::internal::CopyableLambda<flutter::GPUSurfaceMetalImpeller::AcquireFrameFromCAMetalLayer(SkISize const&)::$_0>>, bool (flutter::SurfaceFrame&, flutter::DlCanvas*)>::operator()(flutter::SurfaceFrame&, flutter::DlCanvas*&&) (5.60%)</title> | |
<rect rx="2" width="66.08002" fill="rgb(208,77,33)" ry="2" x="903.26013" y="627.0" height="15.0"/> | |
<text x="906.26" y="637.50" font-size="12" font-family="Verdana">std::_f..</text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::Renderer::Render(std::_fl::unique_ptr<impeller::Surface, std::_fl::default_delete<impeller::Surface>>, std::_fl::function<bool (impeller::RenderTarget&)> const&) const (4.60%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::Renderer::Render(std::_fl::unique_ptr<impeller::Surface, std::_fl::default_delete<impeller::Surface>>, std::_fl::function<bool (impeller::RenderTarget&)> const&) const (4.60%)</title> | |
<rect y="611.0" rx="2" width="54.28003" x="903.26013" height="15.0" fill="rgb(246,109,5)" ry="2"/> | |
<text x="906.26" font-family="Verdana" y="621.50" font-size="12">impel..</text> | |
</g> | |
<g onmouseover="s('impeller::AiksContext::Render(impeller::Picture const&, impeller::RenderTarget&, bool) (3.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >impeller::AiksContext::Render(impeller::Picture const&, impeller::RenderTarget&, bool) (3.10%)</title> | |
<rect width="36.580017" ry="2" y="595.0" height="15.0" fill="rgb(237,75,16)" x="903.26013" rx="2"/> | |
<text x="906.26" font-size="12" y="605.50" font-family="Verdana">imp..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('impeller::EntityPass::OnRender(impeller::ContentContext&, impeller::Capture&, impeller::TSize<long long>, impeller::EntityPassTarget&, impeller::TPoint<float>, impeller::TPoint<float>, unsigned int, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, unsigned long, std::_fl::shared_ptr<impeller::Contents>, std::_fl::optional<impeller::InlinePassContext::RenderPassResult> const&) const (2.80%)')" class="func_g"><title >impeller::EntityPass::OnRender(impeller::ContentContext&, impeller::Capture&, impeller::TSize<long long>, impeller::EntityPassTarget&, impeller::TPoint<float>, impeller::TPoint<float>, unsigned int, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, unsigned long, std::_fl::shared_ptr<impeller::Contents>, std::_fl::optional<impeller::InlinePassContext::RenderPassResult> const&) const (2.80%)</title> | |
<rect height="15.0" rx="2" x="903.26013" y="579.0" width="33.039978" fill="rgb(237,78,1)" ry="2"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="906.26">im..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('impeller::EntityPass::RenderElement(impeller::Entity&, unsigned long, impeller::InlinePassContext&, int, impeller::ContentContext&, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, impeller::TPoint<float>) const (1.40%)')"><title >impeller::EntityPass::RenderElement(impeller::Entity&, unsigned long, impeller::InlinePassContext&, int, impeller::ContentContext&, std::_fl::vector<impeller::EntityPass::ClipCoverageLayer, std::_fl::allocator<impeller::EntityPass::ClipCoverageLayer>>&, impeller::TPoint<float>) const (1.40%)</title> | |
<rect y="563.0" height="15.0" x="903.26013" rx="2" width="16.52002" ry="2" fill="rgb(248,139,31)"/> | |
<text font-family="Verdana" y="573.50" x="906.26" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('impeller::InlinePassContext::GetRenderPass(unsigned int) (0.60%)')"><title >impeller::InlinePassContext::GetRenderPass(unsigned int) (0.60%)</title> | |
<rect height="15.0" ry="2" x="903.26013" width="7.080017" fill="rgb(251,152,53)" rx="2" y="547.0"/> | |
<text font-size="12" font-family="Verdana" x="906.26" y="557.50"></text> | |
</g> | |
<g onmouseover="s('impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (0.50%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (0.50%)</title> | |
<rect y="531.0" x="903.26013" rx="2" height="15.0" fill="rgb(210,168,6)" width="5.9000244" ry="2"/> | |
<text font-size="12" x="906.26" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (0.50%)')" onclick="zoom(this)"><title >impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (0.50%)</title> | |
<rect height="15.0" y="515.0" fill="rgb(252,31,1)" rx="2" ry="2" width="5.9000244" x="903.26013"/> | |
<text font-family="Verdana" x="906.26" font-size="12" y="525.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x228871767 (0.40%)')"><title >0x228871767 (0.40%)</title> | |
<rect ry="2" fill="rgb(226,42,31)" width="4.7199707" rx="2" y="499.0" x="903.26013" height="15.0"/> | |
<text font-size="12" x="906.26" font-family="Verdana" y="509.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x22898a64b (0.20%)')"><title >0x22898a64b (0.20%)</title> | |
<rect ry="2" fill="rgb(223,109,21)" x="903.26013" y="483.0" width="2.3599854" height="15.0" rx="2"/> | |
<text font-size="12" x="906.26" font-family="Verdana" y="493.50"></text> | |
</g> | |
<g onmouseover="s('0x228972c87 (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x228972c87 (0.10%)</title> | |
<rect y="467.0" height="15.0" ry="2" width="1.1799927" rx="2" x="903.26013" fill="rgb(243,89,12)"/> | |
<text y="477.50" font-family="Verdana" x="906.26" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x228884d03 (0.10%)')" onmouseout="c()"><title >0x228884d03 (0.10%)</title> | |
<rect width="1.1799927" x="903.26013" y="451.0" height="15.0" ry="2" fill="rgb(234,45,49)" rx="2"/> | |
<text y="461.50" font-size="12" font-family="Verdana" x="906.26"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('impeller::ClipContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.20%)')"><title >impeller::ClipContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.20%)</title> | |
<rect height="15.0" ry="2" x="910.34015" width="2.3599854" fill="rgb(205,145,34)" rx="2" y="547.0"/> | |
<text font-size="12" x="913.34" font-family="Verdana" y="557.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('impeller::RenderPassMTL::Draw() (0.10%)')"><title >impeller::RenderPassMTL::Draw() (0.10%)</title> | |
<rect y="531.0" x="910.34015" rx="2" height="15.0" fill="rgb(242,63,44)" width="1.1799927" ry="2"/> | |
<text font-size="12" x="913.34" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x22897c297 (0.10%)')" onclick="zoom(this)"><title >0x22897c297 (0.10%)</title> | |
<rect ry="2" fill="rgb(216,56,8)" height="15.0" width="1.1799927" rx="2" x="910.34015" y="515.0"/> | |
<text x="913.34" font-size="12" y="525.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('impeller::TextContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.20%)')"><title >impeller::TextContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.20%)</title> | |
<rect height="15.0" ry="2" x="912.70013" width="2.3599854" fill="rgb(210,110,26)" rx="2" y="547.0"/> | |
<text font-size="12" x="915.70" font-family="Verdana" y="557.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('impeller::SolidColorContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.20%)')"><title >impeller::SolidColorContents::Render(impeller::ContentContext const&, impeller::Entity const&, impeller::RenderPass&) const (0.20%)</title> | |
<rect height="15.0" ry="2" x="915.0601" width="2.3599854" fill="rgb(220,152,42)" rx="2" y="547.0"/> | |
<text font-size="12" x="918.06" font-family="Verdana" y="557.50"></text> | |
</g> | |
<g onmouseover="s('impeller::RenderPassMTL::Draw() (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >impeller::RenderPassMTL::Draw() (0.10%)</title> | |
<rect ry="2" fill="rgb(243,22,14)" height="15.0" width="1.1799927" rx="2" x="915.0601" y="531.0"/> | |
<text y="541.50" x="918.06" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('impeller::InlinePassContext::GetRenderPass(unsigned int) (0.70%)')"><title >impeller::InlinePassContext::GetRenderPass(unsigned int) (0.70%)</title> | |
<rect y="563.0" height="15.0" x="919.78015" rx="2" width="8.26001" ry="2" fill="rgb(229,148,45)"/> | |
<text font-size="12" x="922.78" font-family="Verdana" y="573.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (0.40%)')" onclick="zoom(this)" class="func_g"><title >impeller::CommandBuffer::CreateRenderPass(impeller::RenderTarget const&) (0.40%)</title> | |
<rect width="4.7199707" rx="2" ry="2" fill="rgb(252,152,27)" height="15.0" y="547.0" x="919.78015"/> | |
<text y="557.50" x="922.78" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (0.40%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >impeller::CommandBufferMTL::OnCreateRenderPass(impeller::RenderTarget) (0.40%)</title> | |
<rect height="15.0" ry="2" x="919.78015" width="4.7199707" fill="rgb(222,170,4)" rx="2" y="531.0"/> | |
<text font-family="Verdana" y="541.50" x="922.78" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x228871767 (0.30%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >0x228871767 (0.30%)</title> | |
<rect ry="2" fill="rgb(228,99,43)" height="15.0" width="3.539978" rx="2" x="919.78015" y="515.0"/> | |
<text y="525.50" font-size="12" font-family="Verdana" x="922.78"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x22898a64b (0.10%)')" class="func_g"><title >0x22898a64b (0.10%)</title> | |
<rect ry="2" fill="rgb(221,33,8)" height="15.0" y="499.0" rx="2" width="1.1799927" x="919.78015"/> | |
<text font-family="Verdana" y="509.50" font-size="12" x="922.78"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x228972c87 (0.10%)')" onclick="zoom(this)"><title >0x228972c87 (0.10%)</title> | |
<rect rx="2" x="919.78015" ry="2" height="15.0" fill="rgb(207,215,18)" width="1.1799927" y="483.0"/> | |
<text font-family="Verdana" x="922.78" y="493.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x228884d03 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x228884d03 (0.10%)</title> | |
<rect x="919.78015" y="467.0" height="15.0" fill="rgb(231,63,50)" width="1.1799927" rx="2" ry="2"/> | |
<text y="477.50" font-family="Verdana" x="922.78" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('impeller::ContextMTL::CreateCommandBuffer() const (0.20%)')"><title >impeller::ContextMTL::CreateCommandBuffer() const (0.20%)</title> | |
<rect width="2.3599854" rx="2" ry="2" fill="rgb(207,146,49)" height="15.0" y="547.0" x="924.5001"/> | |
<text font-family="Verdana" y="557.50" font-size="12" x="927.50"></text> | |
</g> | |
<g onmouseover="s('0x2288743df (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x2288743df (0.10%)</title> | |
<rect rx="2" x="924.5001" ry="2" height="15.0" fill="rgb(249,145,32)" width="1.1799927" y="531.0"/> | |
<text y="541.50" x="927.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x228871f7f (0.10%)')"><title >0x228871f7f (0.10%)</title> | |
<rect height="15.0" ry="2" x="924.5001" width="1.1799927" fill="rgb(214,192,44)" rx="2" y="515.0"/> | |
<text font-size="12" x="927.50" font-family="Verdana" y="525.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[IOGPUMetalCommandBuffer initWithQueue:retainedReferences:synchronousDebugMode:] (0.10%)')" onmouseout="c()"><title >-[IOGPUMetalCommandBuffer initWithQueue:retainedReferences:synchronousDebugMode:] (0.10%)</title> | |
<rect fill="rgb(240,16,34)" y="499.0" rx="2" x="924.5001" ry="2" width="1.1799927" height="15.0"/> | |
<text y="509.50" font-family="Verdana" x="927.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('IOGPUMetalCommandBufferStoragePoolCreateStorage (0.10%)')" class="func_g"><title >IOGPUMetalCommandBufferStoragePoolCreateStorage (0.10%)</title> | |
<rect fill="rgb(249,209,14)" x="924.5001" rx="2" width="1.1799927" ry="2" height="15.0" y="483.0"/> | |
<text font-family="Verdana" font-size="12" y="493.50" x="927.50"></text> | |
</g> | |
<g onmouseover="s('IOGPUMetalCommandBufferStorageCreateExt (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >IOGPUMetalCommandBufferStorageCreateExt (0.10%)</title> | |
<rect x="924.5001" fill="rgb(234,144,55)" y="467.0" height="15.0" rx="2" width="1.1799927" ry="2"/> | |
<text y="477.50" x="927.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('IOGPUResourceListInit (0.10%)')" class="func_g" onmouseout="c()"><title >IOGPUResourceListInit (0.10%)</title> | |
<rect ry="2" fill="rgb(251,71,19)" y="451.0" width="1.1799927" height="15.0" x="924.5001" rx="2"/> | |
<text x="927.50" font-size="12" y="461.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('szone_malloc_should_clear (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >szone_malloc_should_clear (0.10%)</title> | |
<rect width="1.1799927" y="435.0" fill="rgb(254,126,3)" ry="2" x="924.5001" height="15.0" rx="2"/> | |
<text y="445.50" x="927.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('impeller::InlinePassContext::EndPass() (0.30%)')"><title >impeller::InlinePassContext::EndPass() (0.30%)</title> | |
<rect y="563.0" height="15.0" x="928.04016" rx="2" width="3.539978" ry="2" fill="rgb(244,111,18)"/> | |
<text font-size="12" x="931.04" y="573.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('impeller::ContentContext::RecordCommandBuffer(std::_fl::shared_ptr<impeller::CommandBuffer>) const (0.20%)')" class="func_g"><title >impeller::ContentContext::RecordCommandBuffer(std::_fl::shared_ptr<impeller::CommandBuffer>) const (0.20%)</title> | |
<rect x="928.04016" fill="rgb(228,133,49)" y="547.0" height="15.0" rx="2" width="2.3599854" ry="2"/> | |
<text font-family="Verdana" y="557.50" x="931.04" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('impeller::CommandQueue::Submit(std::_fl::vector<std::_fl::shared_ptr<impeller::CommandBuffer>, std::_fl::allocator<std::_fl::shared_ptr<impeller::CommandBuffer>>> const&, std::_fl::function<void (impeller::CommandBuffer::Status)> const&) (0.20%)')"><title >impeller::CommandQueue::Submit(std::_fl::vector<std::_fl::shared_ptr<impeller::CommandBuffer>, std::_fl::allocator<std::_fl::shared_ptr<impeller::CommandBuffer>>> const&, std::_fl::function<void (impeller::CommandBuffer::Status)> const&) (0.20%)</title> | |
<rect x="928.04016" fill="rgb(218,118,36)" y="531.0" height="15.0" rx="2" width="2.3599854" ry="2"/> | |
<text y="541.50" font-family="Verdana" x="931.04" font-size="12"></text> | |
</g> | |
<g onmouseover="s('impeller::CommandBufferMTL::OnSubmitCommands(std::_fl::function<void (impeller::CommandBuffer::Status)>) (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >impeller::CommandBufferMTL::OnSubmitCommands(std::_fl::function<void (impeller::CommandBuffer::Status)>) (0.20%)</title> | |
<rect y="515.0" height="15.0" ry="2" fill="rgb(242,197,50)" x="928.04016" width="2.3599854" rx="2"/> | |
<text y="525.50" x="931.04" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x228873157 (0.10%)')"><title >0x228873157 (0.10%)</title> | |
<rect ry="2" fill="rgb(216,90,54)" y="499.0" width="1.1799927" height="15.0" x="928.04016" rx="2"/> | |
<text font-size="12" x="931.04" font-family="Verdana" y="509.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x2288707d3 (0.10%)')" onclick="zoom(this)" class="func_g"><title >0x2288707d3 (0.10%)</title> | |
<rect fill="rgb(221,194,31)" y="483.0" height="15.0" rx="2" x="928.04016" width="1.1799927" ry="2"/> | |
<text y="493.50" x="931.04" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x22898738b (0.10%)')"><title >0x22898738b (0.10%)</title> | |
<rect height="15.0" x="928.04016" fill="rgb(245,71,35)" rx="2" y="467.0" ry="2" width="1.1799927"/> | |
<text x="931.04" font-family="Verdana" font-size="12" y="477.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('impeller::RenderTarget::SetupDepthStencilAttachments(impeller::Context const&, impeller::RenderTargetAllocator&, impeller::TSize<long long>, bool, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, impeller::RenderTarget::AttachmentConfig) (0.10%)')"><title >impeller::RenderTarget::SetupDepthStencilAttachments(impeller::Context const&, impeller::RenderTargetAllocator&, impeller::TSize<long long>, bool, std::_fl::basic_string<char, std::_fl::char_traits<char>, std::_fl::allocator<char>> const&, impeller::RenderTarget::AttachmentConfig) (0.10%)</title> | |
<rect ry="2" fill="rgb(215,109,36)" y="579.0" width="1.1799927" height="15.0" x="936.3001" rx="2"/> | |
<text font-size="12" x="939.30" y="589.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('impeller::SurfaceMTL::Present() const (1.50%)')" onmouseout="c()"><title >impeller::SurfaceMTL::Present() const (1.50%)</title> | |
<rect ry="2" fill="rgb(210,24,8)" y="595.0" width="17.700012" height="15.0" x="939.84015" rx="2"/> | |
<text font-size="12" x="942.84" y="605.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[CAMetalDrawable present] (1.20%)')"><title >-[CAMetalDrawable present] (1.20%)</title> | |
<rect width="14.159973" ry="2" y="579.0" height="15.0" fill="rgb(211,115,22)" x="939.84015" rx="2"/> | |
<text x="942.84" font-size="12" font-family="Verdana" y="589.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_os_signpost_emit_with_name_impl (0.60%)')"><title >_os_signpost_emit_with_name_impl (0.60%)</title> | |
<rect y="563.0" height="15.0" x="939.84015" rx="2" width="7.080017" ry="2" fill="rgb(243,67,7)"/> | |
<text y="573.50" font-family="Verdana" x="942.84" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('__os_signpost_emit_impl (0.60%)')" class="func_g"><title >__os_signpost_emit_impl (0.60%)</title> | |
<rect height="15.0" rx="2" x="939.84015" y="547.0" width="7.080017" fill="rgb(226,26,27)" ry="2"/> | |
<text font-family="Verdana" y="557.50" x="942.84" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_log_impl_flatten_and_send (0.50%)')" onmouseout="c()"><title >_os_log_impl_flatten_and_send (0.50%)</title> | |
<rect x="939.84015" fill="rgb(233,144,18)" y="531.0" height="15.0" rx="2" width="5.9000244" ry="2"/> | |
<text y="541.50" font-family="Verdana" x="942.84" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('_os_log_impl_stream (0.50%)')"><title >_os_log_impl_stream (0.50%)</title> | |
<rect width="5.9000244" rx="2" ry="2" fill="rgb(213,94,27)" height="15.0" y="515.0" x="939.84015"/> | |
<text y="525.50" x="942.84" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_os_activity_stream_reflect (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_os_activity_stream_reflect (0.50%)</title> | |
<rect height="15.0" ry="2" x="939.84015" width="5.9000244" fill="rgb(252,49,37)" rx="2" y="499.0"/> | |
<text y="509.50" x="942.84" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dispatch_block_perform (0.20%)')" onclick="zoom(this)"><title >dispatch_block_perform (0.20%)</title> | |
<rect height="15.0" x="939.84015" fill="rgb(249,192,27)" rx="2" y="483.0" ry="2" width="2.3599854"/> | |
<text font-size="12" x="942.84" font-family="Verdana" y="493.50"></text> | |
</g> | |
<g onmouseover="s('_dispatch_block_invoke_direct (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_dispatch_block_invoke_direct (0.20%)</title> | |
<rect height="15.0" y="467.0" fill="rgb(240,94,55)" width="2.3599854" rx="2" ry="2" x="939.84015"/> | |
<text font-family="Verdana" x="942.84" y="477.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_dispatch_client_callout (0.20%)')" onmouseout="c()"><title >_dispatch_client_callout (0.20%)</title> | |
<rect y="451.0" rx="2" x="939.84015" width="2.3599854" height="15.0" fill="rgb(228,203,45)" ry="2"/> | |
<text x="942.84" y="461.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('___os_activity_stream_reflect_block_invoke (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >___os_activity_stream_reflect_block_invoke (0.20%)</title> | |
<rect y="435.0" rx="2" width="2.3599854" ry="2" x="939.84015" height="15.0" fill="rgb(223,199,50)"/> | |
<text font-size="12" y="445.50" font-family="Verdana" x="942.84"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('_xpc_pipe_simpleroutine (0.20%)')" class="func_g"><title >_xpc_pipe_simpleroutine (0.20%)</title> | |
<rect rx="2" x="939.84015" width="2.3599854" y="419.0" ry="2" height="15.0" fill="rgb(232,21,29)"/> | |
<text y="429.50" font-family="Verdana" x="942.84" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_xpc_pipe_pack_message (0.10%)')" onclick="zoom(this)" class="func_g"><title >_xpc_pipe_pack_message (0.10%)</title> | |
<rect y="403.0" x="939.84015" rx="2" height="15.0" fill="rgb(254,137,16)" ry="2" width="1.1799927"/> | |
<text font-size="12" font-family="Verdana" y="413.50" x="942.84"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_xpc_serializer_pack (0.10%)')"><title >_xpc_serializer_pack (0.10%)</title> | |
<rect height="15.0" width="1.1799927" rx="2" ry="2" x="939.84015" fill="rgb(245,76,30)" y="387.0"/> | |
<text y="397.50" x="942.84" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_activity_stream_entry_encode (0.10%)')" onclick="zoom(this)"><title >_os_activity_stream_entry_encode (0.10%)</title> | |
<rect height="15.0" x="942.20013" fill="rgb(208,57,50)" rx="2" y="483.0" ry="2" width="1.1799927"/> | |
<text font-size="12" x="945.20" font-family="Verdana" y="493.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onclick="zoom(this)"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect fill="rgb(247,53,9)" ry="2" width="1.1799927" x="943.3801" rx="2" y="483.0" height="15.0"/> | |
<text font-size="12" x="946.38" font-family="Verdana" y="493.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_dictionary_dispose (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.10%)</title> | |
<rect y="467.0" rx="2" x="943.3801" width="1.1799927" height="15.0" fill="rgb(214,217,36)" ry="2"/> | |
<text font-size="12" y="477.50" x="946.38" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_xpc_dictionary_node_free (0.10%)')" onclick="zoom(this)"><title >_xpc_dictionary_node_free (0.10%)</title> | |
<rect x="943.3801" y="451.0" rx="2" fill="rgb(216,170,37)" height="15.0" ry="2" width="1.1799927"/> | |
<text y="461.50" font-family="Verdana" x="946.38" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('layer_private_present_impl(_CAMetalLayerPrivate*, CAMetalDrawable*, double, unsigned int) (0.50%)')"><title >layer_private_present_impl(_CAMetalLayerPrivate*, CAMetalDrawable*, double, unsigned int) (0.50%)</title> | |
<rect fill="rgb(216,132,27)" ry="2" width="5.9000244" x="946.92017" rx="2" y="563.0" height="15.0"/> | |
<text y="573.50" font-family="Verdana" x="949.92" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('CAImageQueueInsertImage_ (0.40%)')" class="func_g"><title >CAImageQueueInsertImage_ (0.40%)</title> | |
<rect y="547.0" height="15.0" x="946.92017" rx="2" width="4.7199707" ry="2" fill="rgb(227,64,44)"/> | |
<text font-family="Verdana" y="557.50" x="949.92" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_signpost_emit_with_name_impl (0.40%)')" onmouseout="c()"><title >_os_signpost_emit_with_name_impl (0.40%)</title> | |
<rect height="15.0" rx="2" x="946.92017" y="531.0" width="4.7199707" fill="rgb(255,197,19)" ry="2"/> | |
<text y="541.50" font-family="Verdana" x="949.92" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__os_signpost_emit_impl (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >__os_signpost_emit_impl (0.40%)</title> | |
<rect x="946.92017" fill="rgb(239,90,47)" y="515.0" height="15.0" rx="2" width="4.7199707" ry="2"/> | |
<text y="525.50" x="949.92" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl_flatten_and_send (0.40%)')"><title >_os_log_impl_flatten_and_send (0.40%)</title> | |
<rect width="4.7199707" rx="2" ry="2" fill="rgb(238,36,31)" height="15.0" y="499.0" x="946.92017"/> | |
<text y="509.50" x="949.92" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_log_impl_stream (0.40%)')" onclick="zoom(this)"><title >_os_log_impl_stream (0.40%)</title> | |
<rect y="483.0" width="4.7199707" rx="2" fill="rgb(232,73,6)" ry="2" x="946.92017" height="15.0"/> | |
<text font-family="Verdana" y="493.50" x="949.92" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_os_activity_stream_reflect (0.40%)')" class="func_g" onclick="zoom(this)"><title >_os_activity_stream_reflect (0.40%)</title> | |
<rect height="15.0" width="4.7199707" rx="2" ry="2" x="946.92017" fill="rgb(209,229,0)" y="467.0"/> | |
<text font-size="12" font-family="Verdana" y="477.50" x="949.92"></text> | |
</g> | |
<g onmouseover="s('dispatch_block_perform (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dispatch_block_perform (0.10%)</title> | |
<rect y="451.0" fill="rgb(243,15,23)" x="946.92017" ry="2" rx="2" width="1.1799927" height="15.0"/> | |
<text font-family="Verdana" x="949.92" font-size="12" y="461.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_dispatch_block_invoke_direct (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_dispatch_block_invoke_direct (0.10%)</title> | |
<rect y="435.0" width="1.1799927" x="946.92017" ry="2" height="15.0" fill="rgb(229,200,18)" rx="2"/> | |
<text font-family="Verdana" x="949.92" y="445.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('_dispatch_client_callout (0.10%)')" class="func_g"><title >_dispatch_client_callout (0.10%)</title> | |
<rect height="15.0" ry="2" x="946.92017" y="419.0" rx="2" fill="rgb(230,198,41)" width="1.1799927"/> | |
<text y="429.50" x="949.92" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('___os_activity_stream_reflect_block_invoke (0.10%)')" onmouseout="c()"><title >___os_activity_stream_reflect_block_invoke (0.10%)</title> | |
<rect width="1.1799927" ry="2" fill="rgb(239,210,16)" y="403.0" height="15.0" rx="2" x="946.92017"/> | |
<text x="949.92" y="413.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_simpleroutine (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_pipe_simpleroutine (0.10%)</title> | |
<rect height="15.0" x="946.92017" y="387.0" fill="rgb(226,190,8)" rx="2" ry="2" width="1.1799927"/> | |
<text font-size="12" y="397.50" x="949.92" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_pipe_pack_message (0.10%)')"><title >_xpc_pipe_pack_message (0.10%)</title> | |
<rect rx="2" y="371.0" width="1.1799927" ry="2" x="946.92017" height="15.0" fill="rgb(219,169,27)"/> | |
<text x="949.92" font-size="12" font-family="Verdana" y="381.50"></text> | |
</g> | |
<g onmouseover="s('_xpc_serializer_pack (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_serializer_pack (0.10%)</title> | |
<rect width="1.1799927" height="15.0" rx="2" x="946.92017" ry="2" y="355.0" fill="rgb(239,159,19)"/> | |
<text font-family="Verdana" y="365.50" x="949.92" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_dictionary_serialize (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_dictionary_serialize (0.10%)</title> | |
<rect x="946.92017" fill="rgb(243,221,22)" ry="2" width="1.1799927" y="339.0" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="349.50" x="949.92"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_xpc_dictionary_apply_node_f (0.10%)')" onmouseout="c()" class="func_g"><title >_xpc_dictionary_apply_node_f (0.10%)</title> | |
<rect y="323.0" fill="rgb(226,162,11)" height="15.0" rx="2" ry="2" x="946.92017" width="1.1799927"/> | |
<text x="949.92" y="333.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_xpc_dictionary_serialize_apply (0.10%)')" onclick="zoom(this)" class="func_g"><title >_xpc_dictionary_serialize_apply (0.10%)</title> | |
<rect y="307.0" width="1.1799927" rx="2" height="15.0" x="946.92017" fill="rgb(225,32,8)" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="317.50" x="949.92"></text> | |
</g> | |
<g onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect y="451.0" fill="rgb(241,22,38)" x="948.10016" ry="2" rx="2" width="1.1799927" height="15.0"/> | |
<text font-family="Verdana" x="951.10" font-size="12" y="461.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_xpc_dictionary_dispose (0.10%)')" class="func_g" onclick="zoom(this)"><title >_xpc_dictionary_dispose (0.10%)</title> | |
<rect height="15.0" ry="2" x="948.10016" y="435.0" rx="2" fill="rgb(253,48,24)" width="1.1799927"/> | |
<text x="951.10" y="445.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_xpc_dictionary_node_free (0.10%)')" onclick="zoom(this)"><title >_xpc_dictionary_node_free (0.10%)</title> | |
<rect width="1.1799927" x="948.10016" y="419.0" height="15.0" fill="rgb(217,83,0)" ry="2" rx="2"/> | |
<text y="429.50" font-family="Verdana" font-size="12" x="951.10"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x2288744df (0.10%)')"><title >0x2288744df (0.10%)</title> | |
<rect width="1.1799927" ry="2" y="579.0" height="15.0" fill="rgb(220,182,47)" x="954.0001" rx="2"/> | |
<text x="957.00" font-size="12" font-family="Verdana" y="589.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('impeller::SurfaceMTL::MakeFromTexture(std::_fl::shared_ptr<impeller::Context> const&, id<MTLTexture>, std::_fl::optional<impeller::TRect<long long>>, id<CAMetalDrawable>) (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >impeller::SurfaceMTL::MakeFromTexture(std::_fl::shared_ptr<impeller::Context> const&, id<MTLTexture>, std::_fl::optional<impeller::TRect<long long>>, id<CAMetalDrawable>) (0.40%)</title> | |
<rect ry="2" fill="rgb(207,26,15)" y="611.0" width="4.7199707" height="15.0" x="957.54016" rx="2"/> | |
<text font-size="12" x="960.54" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::AllocatorMTL::OnCreateTexture(impeller::TextureDescriptor const&) (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >impeller::AllocatorMTL::OnCreateTexture(impeller::TextureDescriptor const&) (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="595.0" height="15.0" fill="rgb(235,121,3)" x="957.54016" rx="2"/> | |
<text x="960.54" font-size="12" y="605.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.30%)</title> | |
<rect ry="2" fill="rgb(215,217,29)" y="611.0" width="3.539978" height="15.0" x="962.26013" rx="2"/> | |
<text font-size="12" x="965.26" y="621.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >impeller::DlDispatcher::drawDisplayList(sk_sp<flutter::DisplayList>, float) (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="595.0" height="15.0" fill="rgb(232,154,2)" x="962.26013" rx="2"/> | |
<text x="965.26" font-size="12" y="605.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.10%)')"><title >flutter::DisplayList::Dispatch(flutter::DlOpReceiver&, unsigned char*, unsigned char*, flutter::Culler&) const (0.10%)</title> | |
<rect fill="rgb(241,93,15)" ry="2" width="1.1799927" x="962.26013" rx="2" y="579.0" height="15.0"/> | |
<text y="589.50" font-size="12" font-family="Verdana" x="965.26"></text> | |
</g> | |
<g class="func_g" onmouseover="s('CA::Transaction::commit() (3.00%)')" onmouseout="c()" onclick="zoom(this)"><title >CA::Transaction::commit() (3.00%)</title> | |
<rect ry="2" fill="rgb(242,28,23)" y="643.0" width="35.400024" height="15.0" x="969.34015" rx="2"/> | |
<text font-size="12" x="972.34" y="653.50" font-family="Verdana">CA:..</text> | |
</g> | |
<g onmouseover="s('CA::Context::commit_transaction(CA::Transaction*, double, double*) (2.70%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >CA::Context::commit_transaction(CA::Transaction*, double, double*) (2.70%)</title> | |
<rect width="31.859985" ry="2" y="627.0" height="15.0" fill="rgb(216,168,37)" x="969.34015" rx="2"/> | |
<text x="972.34" font-size="12" y="637.50" font-family="Verdana">CA..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('CA::Layer::layout_and_display_if_needed(CA::Transaction*) (2.40%)')"><title >CA::Layer::layout_and_display_if_needed(CA::Transaction*) (2.40%)</title> | |
<rect fill="rgb(248,226,55)" ry="2" width="28.320007" x="969.34015" rx="2" y="611.0" height="15.0"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="972.34">CA..</text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('CA::Layer::layout_if_needed(CA::Transaction*) (2.40%)')"><title >CA::Layer::layout_if_needed(CA::Transaction*) (2.40%)</title> | |
<rect x="969.34015" fill="rgb(247,32,20)" y="595.0" height="15.0" rx="2" width="28.320007" ry="2"/> | |
<text y="605.50" font-family="Verdana" x="972.34" font-size="12">CA..</text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[UIView(CALayerDelegate) layoutSublayersOfLayer:] (2.30%)')" class="func_g"><title >-[UIView(CALayerDelegate) layoutSublayersOfLayer:] (2.30%)</title> | |
<rect width="27.140015" rx="2" ry="2" fill="rgb(216,166,31)" height="15.0" y="579.0" x="969.34015"/> | |
<text font-family="Verdana" y="589.50" x="972.34" font-size="12">-..</text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('-[FlutterViewController viewDidLayoutSubviews] (1.30%)')" onmouseout="c()"><title >-[FlutterViewController viewDidLayoutSubviews] (1.30%)</title> | |
<rect width="15.340027" ry="2" rx="2" fill="rgb(216,146,25)" x="969.34015" height="15.0" y="563.0"/> | |
<text font-size="12" y="573.50" font-family="Verdana" x="972.34"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView setFrame:] (0.60%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIScrollView setFrame:] (0.60%)</title> | |
<rect rx="2" y="547.0" width="7.080017" ry="2" x="969.34015" height="15.0" fill="rgb(255,148,55)"/> | |
<text font-size="12" y="557.50" x="972.34" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScrollView _adjustContentOffsetIfNecessary] (0.50%)')"><title >-[UIScrollView _adjustContentOffsetIfNecessary] (0.50%)</title> | |
<rect x="969.34015" width="5.9000244" fill="rgb(242,39,11)" ry="2" rx="2" y="531.0" height="15.0"/> | |
<text y="541.50" x="972.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIScrollView setContentOffset:] (0.40%)')" class="func_g" onclick="zoom(this)"><title >-[UIScrollView setContentOffset:] (0.40%)</title> | |
<rect x="969.34015" fill="rgb(217,90,22)" ry="2" width="4.7199707" y="515.0" rx="2" height="15.0"/> | |
<text font-family="Verdana" x="972.34" font-size="12" y="525.50"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (0.20%)</title> | |
<rect ry="2" x="969.34015" width="2.3599854" rx="2" height="15.0" y="499.0" fill="rgb(245,85,13)"/> | |
<text x="972.34" font-size="12" font-family="Verdana" y="509.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIScrollView _layoutVerticalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:] (0.10%)')" onclick="zoom(this)" class="func_g"><title >-[UIScrollView _layoutVerticalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:] (0.10%)</title> | |
<rect y="483.0" width="1.1799927" rx="2" height="15.0" x="969.34015" fill="rgb(222,157,22)" ry="2"/> | |
<text y="493.50" x="972.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('-[UIView(Geometry) setFrame:] (0.10%)')" onclick="zoom(this)" class="func_g"><title >-[UIView(Geometry) setFrame:] (0.10%)</title> | |
<rect width="1.1799927" y="467.0" height="15.0" fill="rgb(205,159,8)" ry="2" x="969.34015" rx="2"/> | |
<text y="477.50" font-family="Verdana" x="972.34" font-size="12"></text> | |
</g> | |
<g onmouseover="s('CA::Layer::set_bit(unsigned int, unsigned int, unsigned int, bool, void (CA::Layer::*)(CA::Transaction*)) (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >CA::Layer::set_bit(unsigned int, unsigned int, unsigned int, bool, void (CA::Layer::*)(CA::Transaction*)) (0.10%)</title> | |
<rect ry="2" x="971.70013" width="1.1799927" rx="2" height="15.0" y="499.0" fill="rgb(252,128,37)"/> | |
<text x="974.70" font-size="12" font-family="Verdana" y="509.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[FlutterViewController updateViewportMetricsIfNeeded] (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >-[FlutterViewController updateViewportMetricsIfNeeded] (0.20%)</title> | |
<rect x="976.42017" fill="rgb(231,186,1)" ry="2" width="2.3599854" y="547.0" rx="2" height="15.0"/> | |
<text x="979.42" font-size="12" font-family="Verdana" y="557.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[FlutterEngine updateViewportMetrics:] (0.20%)')"><title >-[FlutterEngine updateViewportMetrics:] (0.20%)</title> | |
<rect rx="2" y="531.0" width="2.3599854" ry="2" x="976.42017" height="15.0" fill="rgb(226,159,1)"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="979.42"></text> | |
</g> | |
<g onmouseover="s('flutter::Shell::OnPlatformViewSetViewportMetrics(long long, flutter::ViewportMetrics const&) (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::Shell::OnPlatformViewSetViewportMetrics(long long, flutter::ViewportMetrics const&) (0.20%)</title> | |
<rect ry="2" x="976.42017" width="2.3599854" rx="2" height="15.0" y="515.0" fill="rgb(217,215,31)"/> | |
<text font-size="12" x="979.42" font-family="Verdana" y="525.50"></text> | |
</g> | |
<g onmouseover="s('fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >fml::MessageLoopTaskQueues::RegisterTask(fml::TaskQueueId, std::_fl::function<void ()> const&, fml::TimePoint, fml::TaskSourceGrade) (0.20%)</title> | |
<rect width="2.3599854" y="499.0" height="15.0" fill="rgb(237,174,41)" ry="2" x="976.42017" rx="2"/> | |
<text font-size="12" font-family="Verdana" x="979.42" y="509.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca36337 (0.10%)')"><title >0x19ca36337 (0.10%)</title> | |
<rect ry="2" width="1.1799927" fill="rgb(221,62,27)" x="976.42017" y="483.0" rx="2" height="15.0"/> | |
<text x="979.42" y="493.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19ca6d3bf (0.10%)')" onclick="zoom(this)" class="func_g"><title >0x19ca6d3bf (0.10%)</title> | |
<rect width="1.1799927" ry="2" y="467.0" x="976.42017" height="15.0" rx="2" fill="rgb(238,19,2)"/> | |
<text x="979.42" y="477.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('0x19c9c6bfb (0.10%)')" class="func_g"><title >0x19c9c6bfb (0.10%)</title> | |
<rect ry="2" y="451.0" width="1.1799927" height="15.0" rx="2" x="976.42017" fill="rgb(227,69,36)"/> | |
<text x="979.42" font-size="12" y="461.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('mk_timer_arm (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >mk_timer_arm (0.10%)</title> | |
<rect rx="2" y="435.0" fill="rgb(234,133,4)" height="15.0" ry="2" x="976.42017" width="1.1799927"/> | |
<text font-size="12" x="979.42" y="445.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIScrollView setContentOffset:] (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIScrollView setContentOffset:] (0.20%)</title> | |
<rect x="978.78015" fill="rgb(205,127,39)" ry="2" width="2.3599854" y="547.0" rx="2" height="15.0"/> | |
<text x="981.78" font-size="12" font-family="Verdana" y="557.50"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:] (0.10%)</title> | |
<rect rx="2" y="531.0" width="1.1799927" ry="2" x="978.78015" height="15.0" fill="rgb(210,166,7)"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="981.78"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScrollView _layoutHorizontalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:verticalIndicatorFrame:] (0.10%)')"><title >-[UIScrollView _layoutHorizontalScrollIndicatorWithBounds:effectiveInset:contentOffset:fraction:additionalInset:cornerAdjust:needsIndicator:showing:recalcSize:verticalIndicatorFrame:] (0.10%)</title> | |
<rect width="1.1799927" ry="2" y="515.0" x="978.78015" height="15.0" rx="2" fill="rgb(209,54,29)"/> | |
<text y="525.50" x="981.78" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIApplication applicationState] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIApplication applicationState] (0.10%)</title> | |
<rect x="981.14014" fill="rgb(209,174,35)" ry="2" width="1.1799927" y="547.0" rx="2" height="15.0"/> | |
<text x="984.14" font-size="12" font-family="Verdana" y="557.50"></text> | |
</g> | |
<g onmouseover="s('-[_UISceneLifecycleMultiplexer applicationState] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[_UISceneLifecycleMultiplexer applicationState] (0.10%)</title> | |
<rect rx="2" y="531.0" width="1.1799927" ry="2" x="981.14014" height="15.0" fill="rgb(215,165,54)"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="984.14"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScene activationState] (0.10%)')"><title >-[UIScene activationState] (0.10%)</title> | |
<rect ry="2" width="1.1799927" fill="rgb(231,223,12)" x="981.14014" y="515.0" rx="2" height="15.0"/> | |
<text y="525.50" x="984.14" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[_UIWindowSceneFBSSceneLifecycleMonitor currentActivationState] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[_UIWindowSceneFBSSceneLifecycleMonitor currentActivationState] (0.10%)</title> | |
<rect y="499.0" x="981.14014" fill="rgb(227,118,55)" width="1.1799927" rx="2" height="15.0" ry="2"/> | |
<text x="984.14" y="509.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIView _updateSafeAreaInsets] (0.20%)')" onmouseout="c()"><title >-[UIView _updateSafeAreaInsets] (0.20%)</title> | |
<rect rx="2" y="563.0" width="2.3599854" ry="2" x="984.6802" height="15.0" fill="rgb(238,79,39)"/> | |
<text x="987.68" font-size="12" font-family="Verdana" y="573.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIScrollView setSafeAreaInsets:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIScrollView setSafeAreaInsets:] (0.10%)</title> | |
<rect x="984.6802" fill="rgb(225,56,55)" ry="2" width="1.1799927" y="547.0" rx="2" height="15.0"/> | |
<text y="557.50" x="987.68" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIScrollView _shouldContentOffsetMaintainRelativeDistanceFromSafeArea] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIScrollView _shouldContentOffsetMaintainRelativeDistanceFromSafeArea] (0.10%)</title> | |
<rect ry="2" width="1.1799927" fill="rgb(216,90,3)" x="984.6802" y="531.0" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="987.68"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('-[UIScrollView isDecelerating] (0.10%)')"><title >-[UIScrollView isDecelerating] (0.10%)</title> | |
<rect y="515.0" x="984.6802" fill="rgb(230,170,49)" width="1.1799927" rx="2" height="15.0" ry="2"/> | |
<text y="525.50" x="987.68" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView _safeAreaInsetsForFrame:inSuperview:ignoreViewController:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIView _safeAreaInsetsForFrame:inSuperview:ignoreViewController:] (0.10%)</title> | |
<rect x="985.86017" fill="rgb(212,138,25)" ry="2" width="1.1799927" y="547.0" rx="2" height="15.0"/> | |
<text y="557.50" x="988.86" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIView _updateConstraintsAsNecessaryAndApplyLayoutFromEngine] (0.10%)')" onmouseout="c()"><title >-[UIView _updateConstraintsAsNecessaryAndApplyLayoutFromEngine] (0.10%)</title> | |
<rect rx="2" y="563.0" width="1.1799927" ry="2" x="987.04016" height="15.0" fill="rgb(242,129,13)"/> | |
<text x="990.04" font-size="12" font-family="Verdana" y="573.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView(AdditionalLayoutSupport) _is_layout] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(AdditionalLayoutSupport) _is_layout] (0.10%)</title> | |
<rect x="987.04016" fill="rgb(221,167,25)" ry="2" width="1.1799927" y="547.0" rx="2" height="15.0"/> | |
<text y="557.50" x="990.04" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIView(Geometry) resizeSubviewsWithOldSize:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIView(Geometry) resizeSubviewsWithOldSize:] (0.10%)</title> | |
<rect fill="rgb(254,216,46)" ry="2" rx="2" y="531.0" height="15.0" x="987.04016" width="1.1799927"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="990.04"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('0x19c9ce6b7 (0.10%)')"><title >0x19c9ce6b7 (0.10%)</title> | |
<rect y="515.0" fill="rgb(216,145,2)" x="987.04016" height="15.0" ry="2" rx="2" width="1.1799927"/> | |
<text y="525.50" x="990.04" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19c9a11cb (0.10%)')" class="func_g" onclick="zoom(this)"><title >0x19c9a11cb (0.10%)</title> | |
<rect ry="2" y="499.0" x="987.04016" rx="2" width="1.1799927" height="15.0" fill="rgb(227,69,43)"/> | |
<text font-family="Verdana" x="990.04" font-size="12" y="509.50"></text> | |
</g> | |
<g onmouseover="s('-[UIView(Geometry) _resizeWithOldSuperviewSize:] (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >-[UIView(Geometry) _resizeWithOldSuperviewSize:] (0.10%)</title> | |
<rect fill="rgb(250,229,29)" ry="2" x="987.04016" y="483.0" width="1.1799927" height="15.0" rx="2"/> | |
<text x="990.04" font-size="12" y="493.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[UIView(Geometry) _applyISEngineLayoutValuesToBoundsOnly:] (0.10%)')" onclick="zoom(this)"><title >-[UIView(Geometry) _applyISEngineLayoutValuesToBoundsOnly:] (0.10%)</title> | |
<rect y="467.0" fill="rgb(243,172,10)" ry="2" rx="2" x="987.04016" width="1.1799927" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="990.04" y="477.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView(AdditionalLayoutSupport) _nsis_center:bounds:inEngine:forLayoutGuide:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(AdditionalLayoutSupport) _nsis_center:bounds:inEngine:forLayoutGuide:] (0.10%)</title> | |
<rect width="1.1799927" height="15.0" fill="rgb(218,220,3)" ry="2" rx="2" x="987.04016" y="451.0"/> | |
<text x="990.04" y="461.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[_UIViewLayoutEngineRelativeAlignmentRectOriginCache origin] (0.10%)')"><title >-[_UIViewLayoutEngineRelativeAlignmentRectOriginCache origin] (0.10%)</title> | |
<rect ry="2" height="15.0" rx="2" x="987.04016" y="435.0" width="1.1799927" fill="rgb(207,171,8)"/> | |
<text x="990.04" y="445.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[UIViewController _updateTraitsIfNecessary] (0.10%)')" onmouseout="c()"><title >-[UIViewController _updateTraitsIfNecessary] (0.10%)</title> | |
<rect rx="2" y="563.0" width="1.1799927" ry="2" x="988.22015" height="15.0" fill="rgb(246,88,10)"/> | |
<text x="991.22" font-size="12" font-family="Verdana" y="573.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[FlutterView layoutSubviews] (0.10%)')" onmouseout="c()"><title >-[FlutterView layoutSubviews] (0.10%)</title> | |
<rect rx="2" y="563.0" width="1.1799927" ry="2" x="989.40015" height="15.0" fill="rgb(245,26,2)"/> | |
<text x="992.40" font-size="12" font-family="Verdana" y="573.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_signpost_emit_unreliably_with_name_impl (0.20%)')" onmouseout="c()"><title >_os_signpost_emit_unreliably_with_name_impl (0.20%)</title> | |
<rect rx="2" y="627.0" width="2.3599854" ry="2" x="1001.20013" height="15.0" fill="rgb(235,34,33)"/> | |
<text x="1004.20" font-size="12" font-family="Verdana" y="637.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('__os_signpost_emit_impl (0.20%)')"><title >__os_signpost_emit_impl (0.20%)</title> | |
<rect ry="2" y="611.0" x="1001.20013" rx="2" width="2.3599854" height="15.0" fill="rgb(212,14,8)"/> | |
<text x="1004.20" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('_os_log_impl_flatten_and_send (0.20%)')" class="func_g"><title >_os_log_impl_flatten_and_send (0.20%)</title> | |
<rect width="2.3599854" ry="2" y="595.0" height="15.0" fill="rgb(220,214,42)" x="1001.20013" rx="2"/> | |
<text font-size="12" x="1004.20" font-family="Verdana" y="605.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl_stream (0.20%)')"><title >_os_log_impl_stream (0.20%)</title> | |
<rect width="2.3599854" rx="2" ry="2" fill="rgb(211,21,5)" height="15.0" y="579.0" x="1001.20013"/> | |
<text y="589.50" font-family="Verdana" x="1004.20" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_os_activity_stream_reflect (0.20%)')" onmouseout="c()"><title >_os_activity_stream_reflect (0.20%)</title> | |
<rect height="15.0" x="1001.20013" y="563.0" rx="2" fill="rgb(236,148,48)" width="2.3599854" ry="2"/> | |
<text font-family="Verdana" y="573.50" font-size="12" x="1004.20"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dispatch_block_perform (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dispatch_block_perform (0.10%)</title> | |
<rect y="547.0" fill="rgb(237,152,28)" ry="2" rx="2" x="1001.20013" width="1.1799927" height="15.0"/> | |
<text y="557.50" x="1004.20" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_dispatch_block_invoke_direct (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_dispatch_block_invoke_direct (0.10%)</title> | |
<rect width="1.1799927" x="1001.20013" fill="rgb(246,211,21)" height="15.0" y="531.0" rx="2" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="541.50" x="1004.20"></text> | |
</g> | |
<g onmouseover="s('_dispatch_client_callout (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_dispatch_client_callout (0.10%)</title> | |
<rect x="1001.20013" y="515.0" rx="2" ry="2" width="1.1799927" fill="rgb(245,140,49)" height="15.0"/> | |
<text y="525.50" x="1004.20" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('___os_activity_stream_reflect_block_invoke (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >___os_activity_stream_reflect_block_invoke (0.10%)</title> | |
<rect ry="2" height="15.0" rx="2" x="1001.20013" y="499.0" width="1.1799927" fill="rgb(247,77,13)"/> | |
<text font-size="12" font-family="Verdana" x="1004.20" y="509.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_pipe_simpleroutine (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_pipe_simpleroutine (0.10%)</title> | |
<rect rx="2" height="15.0" x="1001.20013" fill="rgb(215,131,39)" width="1.1799927" ry="2" y="483.0"/> | |
<text x="1004.20" y="493.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_xpc_pipe_pack_message (0.10%)')" class="func_g" onclick="zoom(this)"><title >_xpc_pipe_pack_message (0.10%)</title> | |
<rect y="467.0" width="1.1799927" height="15.0" x="1001.20013" ry="2" rx="2" fill="rgb(237,109,28)"/> | |
<text font-family="Verdana" font-size="12" x="1004.20" y="477.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_xpc_serializer_pack (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >_xpc_serializer_pack (0.10%)</title> | |
<rect height="15.0" rx="2" y="451.0" ry="2" x="1001.20013" width="1.1799927" fill="rgb(237,79,37)"/> | |
<text font-family="Verdana" font-size="12" x="1004.20" y="461.50"></text> | |
</g> | |
<g onmouseover="s('flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.10%)</title> | |
<rect ry="2" fill="rgb(221,74,1)" y="643.0" width="1.1799927" height="15.0" x="1004.7401" rx="2"/> | |
<text font-size="12" x="1007.74" y="653.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[CAMetalLayer nextDrawable] (0.10%)')" onmouseout="c()"><title >-[CAMetalLayer nextDrawable] (0.10%)</title> | |
<rect rx="2" y="627.0" width="1.1799927" ry="2" x="1004.7401" height="15.0" fill="rgb(208,118,53)"/> | |
<text font-size="12" x="1007.74" y="637.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('+[NSString stringWithFormat:] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >+[NSString stringWithFormat:] (0.10%)</title> | |
<rect ry="2" fill="rgb(212,42,50)" y="643.0" width="1.1799927" height="15.0" x="1005.92017" rx="2"/> | |
<text font-size="12" x="1008.92" y="653.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca17aab (0.10%)')" onmouseout="c()"><title >0x19ca17aab (0.10%)</title> | |
<rect ry="2" y="627.0" x="1005.92017" rx="2" width="1.1799927" height="15.0" fill="rgb(255,31,11)"/> | |
<text font-size="12" x="1008.92" y="637.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca1b1d3 (0.10%)')"><title >0x19ca1b1d3 (0.10%)</title> | |
<rect width="1.1799927" ry="2" y="611.0" height="15.0" fill="rgb(205,184,2)" x="1005.92017" rx="2"/> | |
<text x="1008.92" font-size="12" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseover="s('-[UIView(Geometry) setFrame:] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[UIView(Geometry) setFrame:] (0.10%)</title> | |
<rect ry="2" fill="rgb(231,14,27)" y="643.0" width="1.1799927" height="15.0" x="1007.10016" rx="2"/> | |
<text font-size="12" x="1010.10" y="653.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::CompositorContext::ScopedFrame::Raster(flutter::LayerTree&, bool, flutter::FrameDamage*) (1.60%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >flutter::CompositorContext::ScopedFrame::Raster(flutter::LayerTree&, bool, flutter::FrameDamage*) (1.60%)</title> | |
<rect ry="2" fill="rgb(242,225,1)" y="659.0" width="18.880005" height="15.0" x="1016.54016" rx="2"/> | |
<text font-size="12" x="1019.54" y="669.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('flutter::LayerTree::Paint(flutter::CompositorContext::ScopedFrame&, bool) const (1.30%)')" onmouseout="c()"><title >flutter::LayerTree::Paint(flutter::CompositorContext::ScopedFrame&, bool) const (1.30%)</title> | |
<rect width="15.339966" ry="2" y="643.0" height="15.0" fill="rgb(218,168,12)" x="1016.54016" rx="2"/> | |
<text font-size="12" x="1019.54" y="653.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.20%)')"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.20%)</title> | |
<rect y="627.0" width="14.160034" fill="rgb(249,90,27)" rx="2" ry="2" x="1016.54016" height="15.0"/> | |
<text x="1019.54" font-size="12" font-family="Verdana" y="637.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.20%)')" class="func_g"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.20%)</title> | |
<rect ry="2" height="15.0" rx="2" x="1016.54016" y="611.0" width="14.160034" fill="rgb(251,37,21)"/> | |
<text font-size="12" x="1019.54" font-family="Verdana" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.10%)')"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.10%)</title> | |
<rect rx="2" height="15.0" x="1016.54016" fill="rgb(216,54,8)" width="12.97998" ry="2" y="595.0"/> | |
<text y="605.50" font-family="Verdana" x="1019.54" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.10%)')" class="func_g"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.10%)</title> | |
<rect rx="2" y="579.0" fill="rgb(205,211,14)" width="12.97998" x="1016.54016" ry="2" height="15.0"/> | |
<text font-size="12" x="1019.54" font-family="Verdana" y="589.50"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.10%)')" onmouseout="c()"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.10%)</title> | |
<rect rx="2" y="563.0" width="12.97998" height="15.0" x="1016.54016" fill="rgb(230,173,9)" ry="2"/> | |
<text font-size="12" y="573.50" font-family="Verdana" x="1019.54"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.10%)</title> | |
<rect x="1016.54016" rx="2" y="547.0" width="12.97998" height="15.0" ry="2" fill="rgb(237,51,4)"/> | |
<text font-size="12" y="557.50" x="1019.54" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.10%)</title> | |
<rect ry="2" fill="rgb(214,94,45)" height="15.0" width="12.97998" y="531.0" rx="2" x="1016.54016"/> | |
<text x="1019.54" y="541.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.00%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.00%)</title> | |
<rect ry="2" fill="rgb(223,78,32)" width="11.800049" rx="2" x="1016.54016" y="515.0" height="15.0"/> | |
<text font-size="12" font-family="Verdana" x="1019.54" y="525.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.00%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.00%)</title> | |
<rect rx="2" width="11.800049" height="15.0" y="499.0" x="1016.54016" fill="rgb(229,48,54)" ry="2"/> | |
<text x="1019.54" font-family="Verdana" y="509.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::ClipShapeLayer<SkRect>::Paint(flutter::PaintContext&) const (1.00%)')" onclick="zoom(this)"><title >flutter::ClipShapeLayer<SkRect>::Paint(flutter::PaintContext&) const (1.00%)</title> | |
<rect fill="rgb(248,186,54)" x="1016.54016" y="483.0" rx="2" width="11.800049" height="15.0" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1019.54" y="493.50"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.00%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.00%)</title> | |
<rect ry="2" height="15.0" rx="2" width="11.800049" y="467.0" fill="rgb(212,75,26)" x="1016.54016"/> | |
<text x="1019.54" font-size="12" y="477.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.00%)')"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (1.00%)</title> | |
<rect x="1016.54016" y="451.0" height="15.0" fill="rgb(209,210,25)" rx="2" ry="2" width="11.800049"/> | |
<text x="1019.54" font-family="Verdana" font-size="12" y="461.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.00%)')"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (1.00%)</title> | |
<rect fill="rgb(217,66,4)" rx="2" y="435.0" ry="2" height="15.0" x="1016.54016" width="11.800049"/> | |
<text x="1019.54" font-family="Verdana" font-size="12" y="445.50"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Paint(flutter::PaintContext&) const (0.90%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >flutter::TransformLayer::Paint(flutter::PaintContext&) const (0.90%)</title> | |
<rect x="1016.54016" y="419.0" width="10.619995" ry="2" height="15.0" rx="2" fill="rgb(207,113,49)"/> | |
<text font-family="Verdana" font-size="12" y="429.50" x="1019.54"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (0.80%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::PaintChildren(flutter::PaintContext&) const (0.80%)</title> | |
<rect y="403.0" fill="rgb(235,32,15)" rx="2" width="9.439941" height="15.0" x="1016.54016" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1019.54" y="413.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('flutter::PlatformViewLayer::Paint(flutter::PaintContext&) const (0.80%)')"><title >flutter::PlatformViewLayer::Paint(flutter::PaintContext&) const (0.80%)</title> | |
<rect fill="rgb(239,186,19)" ry="2" rx="2" y="387.0" width="9.439941" height="15.0" x="1016.54016"/> | |
<text font-size="12" font-family="Verdana" y="397.50" x="1019.54"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::IOSExternalViewEmbedder::CompositeEmbeddedView(long long) (0.80%)')" class="func_g"><title >flutter::IOSExternalViewEmbedder::CompositeEmbeddedView(long long) (0.80%)</title> | |
<rect width="9.439941" x="1016.54016" rx="2" height="15.0" ry="2" fill="rgb(220,120,18)" y="371.0"/> | |
<text font-family="Verdana" font-size="12" y="381.50" x="1019.54"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView(Geometry) setFrame:] (0.60%)')" onmouseout="c()" onclick="zoom(this)"><title >-[UIView(Geometry) setFrame:] (0.60%)</title> | |
<rect ry="2" x="1016.54016" width="7.080017" rx="2" height="15.0" y="355.0" fill="rgb(254,206,52)"/> | |
<text y="365.50" font-size="12" font-family="Verdana" x="1019.54"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView _constraints_frameDidChange] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIView _constraints_frameDidChange] (0.10%)</title> | |
<rect rx="2" fill="rgb(211,47,1)" y="339.0" width="1.1799927" height="15.0" x="1016.54016" ry="2"/> | |
<text font-family="Verdana" y="349.50" x="1019.54" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange] (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange] (0.10%)</title> | |
<rect x="1016.54016" y="323.0" width="1.1799927" fill="rgb(254,11,36)" height="15.0" ry="2" rx="2"/> | |
<text font-family="Verdana" x="1019.54" font-size="12" y="333.50"></text> | |
</g> | |
<g onmouseover="s('-[UIView(AdditionalLayoutSupport) _withUnsatisfiableConstraintsLoggingSuspendedIfEngineDelegateExists:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[UIView(AdditionalLayoutSupport) _withUnsatisfiableConstraintsLoggingSuspendedIfEngineDelegateExists:] (0.10%)</title> | |
<rect height="15.0" rx="2" x="1016.54016" width="1.1799927" fill="rgb(220,12,43)" y="307.0" ry="2"/> | |
<text y="317.50" x="1019.54" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('__74-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange]_block_invoke (0.10%)')" onclick="zoom(this)"><title >__74-[UIView(UIConstraintBasedLayout) _autoresizingConstraints_frameDidChange]_block_invoke (0.10%)</title> | |
<rect fill="rgb(237,27,34)" ry="2" width="1.1799927" height="15.0" x="1016.54016" rx="2" y="291.0"/> | |
<text font-size="12" font-family="Verdana" y="301.50" x="1019.54"></text> | |
</g> | |
<g onmouseover="s('-[UIView(UIConstraintBasedLayout) _constantsForHorizontalAutoresizingConstraints::] (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >-[UIView(UIConstraintBasedLayout) _constantsForHorizontalAutoresizingConstraints::] (0.10%)</title> | |
<rect fill="rgb(249,92,20)" width="1.1799927" ry="2" x="1016.54016" height="15.0" rx="2" y="275.0"/> | |
<text font-family="Verdana" y="285.50" x="1019.54" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView _backing_setFrame:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIView _backing_setFrame:] (0.10%)</title> | |
<rect rx="2" fill="rgb(205,26,37)" y="339.0" width="1.1799927" height="15.0" x="1017.72015" ry="2"/> | |
<text font-family="Verdana" y="349.50" x="1020.72" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[CALayer setFrame:] (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >-[CALayer setFrame:] (0.10%)</title> | |
<rect height="15.0" rx="2" x="1017.72015" width="1.1799927" fill="rgb(218,43,19)" y="323.0" ry="2"/> | |
<text font-family="Verdana" x="1020.72" font-size="12" y="333.50"></text> | |
</g> | |
<g onmouseover="s('-[CALayer setPosition:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[CALayer setPosition:] (0.10%)</title> | |
<rect fill="rgb(229,150,15)" ry="2" width="1.1799927" height="15.0" x="1017.72015" rx="2" y="307.0"/> | |
<text y="317.50" x="1020.72" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.10%)')" onclick="zoom(this)"><title >CA::Layer::set_position(CA::Vec2<double> const&, bool) (0.10%)</title> | |
<rect width="1.1799927" y="291.0" height="15.0" rx="2" fill="rgb(217,82,10)" x="1017.72015" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="301.50" x="1020.72"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayListLayer::Paint(flutter::PaintContext&) const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::DisplayListLayer::Paint(flutter::PaintContext&) const (0.10%)</title> | |
<rect ry="2" x="1027.1602" width="1.1800537" rx="2" height="15.0" y="419.0" fill="rgb(233,59,6)"/> | |
<text y="429.50" font-size="12" font-family="Verdana" x="1030.16"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::DisplayListBuilder::DrawDisplayList(sk_sp<flutter::DisplayList>, float) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::DisplayListBuilder::DrawDisplayList(sk_sp<flutter::DisplayList>, float) (0.10%)</title> | |
<rect rx="2" fill="rgb(222,61,20)" y="403.0" width="1.1800537" height="15.0" x="1027.1602" ry="2"/> | |
<text font-family="Verdana" y="413.50" x="1030.16" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::DlRTree::searchAndConsolidateRects(SkRect const&, bool) const (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::DlRTree::searchAndConsolidateRects(SkRect const&, bool) const (0.10%)</title> | |
<rect fill="rgb(225,125,31)" ry="2" width="1.1800537" height="15.0" x="1027.1602" rx="2" y="387.0"/> | |
<text font-family="Verdana" x="1030.16" font-size="12" y="397.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::ContainerLayer::Preroll(flutter::PrerollContext*) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect rx="2" fill="rgb(245,146,40)" y="643.0" width="1.1800537" height="15.0" x="1031.8801" ry="2"/> | |
<text y="653.50" font-size="12" font-family="Verdana" x="1034.88"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect ry="2" x="1031.8801" width="1.1800537" rx="2" height="15.0" y="627.0" fill="rgb(218,158,35)"/> | |
<text font-family="Verdana" y="637.50" x="1034.88" font-size="12"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect width="1.1800537" y="611.0" height="15.0" rx="2" fill="rgb(216,191,42)" x="1031.8801" ry="2"/> | |
<text font-family="Verdana" x="1034.88" font-size="12" y="621.50"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect height="15.0" width="1.1800537" x="1031.8801" rx="2" fill="rgb(230,94,37)" ry="2" y="595.0"/> | |
<text y="605.50" x="1034.88" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)')" onclick="zoom(this)"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect fill="rgb(243,45,47)" height="15.0" x="1031.8801" rx="2" y="579.0" width="1.1800537" ry="2"/> | |
<text font-size="12" font-family="Verdana" y="589.50" x="1034.88"></text> | |
</g> | |
<g onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect width="1.1800537" rx="2" height="15.0" ry="2" x="1031.8801" fill="rgb(208,203,48)" y="563.0"/> | |
<text font-family="Verdana" y="573.50" x="1034.88" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)')" onclick="zoom(this)"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect rx="2" fill="rgb(238,87,44)" height="15.0" x="1031.8801" y="547.0" ry="2" width="1.1800537"/> | |
<text font-family="Verdana" x="1034.88" font-size="12" y="557.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')" onclick="zoom(this)"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect ry="2" x="1031.8801" height="15.0" width="1.1800537" y="531.0" fill="rgb(224,170,1)" rx="2"/> | |
<text font-size="12" y="541.50" font-family="Verdana" x="1034.88"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)')"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect x="1031.8801" width="1.1800537" fill="rgb(238,47,15)" y="515.0" ry="2" rx="2" height="15.0"/> | |
<text x="1034.88" font-size="12" y="525.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')" class="func_g"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect fill="rgb(210,211,11)" ry="2" height="15.0" x="1031.8801" y="499.0" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" font-size="12" x="1034.88" y="509.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::ClipShapeLayer<SkRect>::Preroll(flutter::PrerollContext*) (0.10%)')" onclick="zoom(this)"><title >flutter::ClipShapeLayer<SkRect>::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect y="483.0" height="15.0" rx="2" fill="rgb(243,146,47)" x="1031.8801" width="1.1800537" ry="2"/> | |
<text y="493.50" x="1034.88" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800537" x="1031.8801" height="15.0" fill="rgb(227,139,23)" y="467.0"/> | |
<text font-family="Verdana" y="477.50" font-size="12" x="1034.88"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect height="15.0" x="1031.8801" ry="2" y="451.0" width="1.1800537" rx="2" fill="rgb(225,83,50)"/> | |
<text font-family="Verdana" font-size="12" x="1034.88" y="461.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect fill="rgb(216,77,11)" width="1.1800537" ry="2" x="1031.8801" height="15.0" rx="2" y="435.0"/> | |
<text font-family="Verdana" font-size="12" x="1034.88" y="445.50"></text> | |
</g> | |
<g onmouseover="s('flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >flutter::TransformLayer::Preroll(flutter::PrerollContext*) (0.10%)</title> | |
<rect height="15.0" y="419.0" width="1.1800537" x="1031.8801" rx="2" ry="2" fill="rgb(247,69,17)"/> | |
<text font-family="Verdana" x="1034.88" y="429.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)')" onclick="zoom(this)"><title >flutter::ContainerLayer::PrerollChildren(flutter::PrerollContext*, SkRect*) (0.10%)</title> | |
<rect fill="rgb(245,203,32)" rx="2" height="15.0" x="1031.8801" ry="2" y="403.0" width="1.1800537"/> | |
<text font-size="12" font-family="Verdana" x="1034.88" y="413.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >flutter::GPUSurfaceMetalImpeller::AcquireFrame(SkISize const&) (0.10%)</title> | |
<rect rx="2" fill="rgb(218,120,23)" y="659.0" width="1.1800537" height="15.0" x="1035.4202" ry="2"/> | |
<text y="669.50" font-size="12" font-family="Verdana" x="1038.42"></text> | |
</g> | |
<g class="func_g" onmouseover="s('__NSFireTimer (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >__NSFireTimer (0.10%)</title> | |
<rect rx="2" fill="rgb(207,95,11)" y="803.0" width="1.1800537" height="15.0" x="1042.5001" ry="2"/> | |
<text y="813.50" font-size="12" font-family="Verdana" x="1045.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x10310211c (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >0x10310211c (0.10%)</title> | |
<rect ry="2" x="1042.5001" width="1.1800537" rx="2" height="15.0" y="787.0" fill="rgb(211,150,32)"/> | |
<text font-family="Verdana" y="797.50" x="1045.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca1fd07 (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19ca1fd07 (0.10%)</title> | |
<rect rx="2" fill="rgb(253,88,3)" y="835.0" width="1.1800537" height="15.0" x="1046.0402" ry="2"/> | |
<text y="845.50" font-size="12" font-family="Verdana" x="1049.04"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca201cf (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19ca201cf (0.10%)</title> | |
<rect rx="2" fill="rgb(217,216,34)" y="835.0" width="1.1800537" height="15.0" x="1047.2201" ry="2"/> | |
<text y="845.50" font-size="12" font-family="Verdana" x="1050.22"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca1155f (4.20%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19ca1155f (4.20%)</title> | |
<rect rx="2" fill="rgb(244,186,44)" y="867.0" width="49.56006" height="15.0" x="1049.5801" ry="2"/> | |
<text y="877.50" font-size="12" font-family="Verdana" x="1052.58">0x19c..</text> | |
</g> | |
<g onmouseover="s('0x19ca2fc27 (4.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x19ca2fc27 (4.20%)</title> | |
<rect height="15.0" width="49.56006" x="1049.5801" rx="2" fill="rgb(241,28,46)" ry="2" y="851.0"/> | |
<text font-family="Verdana" y="861.50" x="1052.58" font-size="12">0x19c..</text> | |
</g> | |
<g onmouseover="s('_dispatch_main_queue_callback_4CF (4.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >_dispatch_main_queue_callback_4CF (4.20%)</title> | |
<rect width="49.56006" rx="2" height="15.0" ry="2" x="1049.5801" fill="rgb(218,136,5)" y="835.0"/> | |
<text font-family="Verdana" x="1052.58" y="845.50" font-size="12">_disp..</text> | |
</g> | |
<g onmouseover="s('_dispatch_main_queue_drain (4.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_dispatch_main_queue_drain (4.20%)</title> | |
<rect rx="2" fill="rgb(254,22,19)" height="15.0" x="1049.5801" y="819.0" ry="2" width="49.56006"/> | |
<text y="829.50" x="1052.58" font-family="Verdana" font-size="12">_disp..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('_dispatch_client_callout (4.10%)')" onclick="zoom(this)"><title >_dispatch_client_callout (4.10%)</title> | |
<rect x="1049.5801" width="48.380005" fill="rgb(238,93,4)" y="803.0" ry="2" rx="2" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="813.50" x="1052.58">_dis..</text> | |
</g> | |
<g onmouseover="s('_dispatch_call_block_and_release (2.50%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_dispatch_call_block_and_release (2.50%)</title> | |
<rect y="787.0" height="15.0" rx="2" fill="rgb(249,58,26)" x="1049.5801" width="29.5" ry="2"/> | |
<text font-family="Verdana" y="797.50" x="1052.58" font-size="12">_d..</text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.60%)')" onclick="zoom(this)"><title >invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) (0.60%)</title> | |
<rect rx="2" ry="2" width="7.079956" x="1049.5801" height="15.0" fill="rgb(252,81,34)" y="771.0"/> | |
<text font-family="Verdana" x="1052.58" font-size="12" y="781.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('__45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke (0.60%)')" onclick="zoom(this)"><title >__45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke (0.60%)</title> | |
<rect y="755.0" fill="rgb(249,168,48)" rx="2" x="1049.5801" ry="2" width="7.079956" height="15.0"/> | |
<text font-size="12" y="765.50" font-family="Verdana" x="1052.58"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[FLTGoogleMobileAdsPlugin handleMethodCall:result:] (0.50%)')"><title >-[FLTGoogleMobileAdsPlugin handleMethodCall:result:] (0.50%)</title> | |
<rect height="15.0" ry="2" width="5.9000244" rx="2" x="1049.5801" fill="rgb(231,77,10)" y="739.0"/> | |
<text x="1052.58" font-size="12" y="749.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('-[FLTAdInstanceManager loadAd:] (0.50%)')" class="func_g"><title >-[FLTAdInstanceManager loadAd:] (0.50%)</title> | |
<rect width="5.9000244" rx="2" x="1049.5801" y="723.0" height="15.0" fill="rgb(223,128,24)" ry="2"/> | |
<text font-family="Verdana" font-size="12" x="1052.58" y="733.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[FLTBannerAd load] (0.50%)')" onclick="zoom(this)"><title >-[FLTBannerAd load] (0.50%)</title> | |
<rect width="5.9000244" x="1049.5801" y="707.0" height="15.0" ry="2" rx="2" fill="rgb(217,167,33)"/> | |
<text y="717.50" x="1052.58" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x1030fcee8 (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x1030fcee8 (0.50%)</title> | |
<rect x="1049.5801" y="691.0" width="5.9000244" height="15.0" fill="rgb(205,202,50)" ry="2" rx="2"/> | |
<text x="1052.58" y="701.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x103148504 (0.50%)')" onmouseout="c()" onclick="zoom(this)"><title >0x103148504 (0.50%)</title> | |
<rect fill="rgb(246,159,3)" width="5.9000244" y="675.0" rx="2" ry="2" height="15.0" x="1049.5801"/> | |
<text font-family="Verdana" font-size="12" y="685.50" x="1052.58"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x103148094 (0.50%)')"><title >0x103148094 (0.50%)</title> | |
<rect fill="rgb(238,124,28)" height="15.0" x="1049.5801" rx="2" y="659.0" ry="2" width="5.9000244"/> | |
<text x="1052.58" y="669.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('GADDispatchAsyncSafeMainQueue (0.50%)')"><title >GADDispatchAsyncSafeMainQueue (0.50%)</title> | |
<rect y="643.0" height="15.0" rx="2" width="5.9000244" ry="2" x="1049.5801" fill="rgb(240,221,39)"/> | |
<text font-family="Verdana" x="1052.58" y="653.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x103148158 (0.50%)')" onmouseout="c()"><title >0x103148158 (0.50%)</title> | |
<rect height="15.0" fill="rgb(252,93,45)" y="627.0" x="1049.5801" ry="2" width="5.9000244" rx="2"/> | |
<text y="637.50" font-family="Verdana" x="1052.58" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('0x103148b30 (0.50%)')" onmouseout="c()"><title >0x103148b30 (0.50%)</title> | |
<rect rx="2" ry="2" height="15.0" x="1049.5801" width="5.9000244" y="611.0" fill="rgb(214,84,28)"/> | |
<text y="621.50" font-size="12" font-family="Verdana" x="1052.58"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x10318975c (0.50%)')" onclick="zoom(this)" onmouseout="c()"><title >0x10318975c (0.50%)</title> | |
<rect rx="2" fill="rgb(246,157,11)" height="15.0" y="595.0" width="5.9000244" x="1049.5801" ry="2"/> | |
<text font-size="12" y="605.50" font-family="Verdana" x="1052.58"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x103130c6c (0.50%)')" class="func_g" onmouseout="c()"><title >0x103130c6c (0.50%)</title> | |
<rect x="1049.5801" y="579.0" ry="2" rx="2" width="5.9000244" fill="rgb(238,178,34)" height="15.0"/> | |
<text font-size="12" y="589.50" x="1052.58" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('GADDispatchAsyncSafeMainQueue (0.50%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >GADDispatchAsyncSafeMainQueue (0.50%)</title> | |
<rect rx="2" x="1049.5801" y="563.0" fill="rgb(210,92,26)" ry="2" height="15.0" width="5.9000244"/> | |
<text font-size="12" font-family="Verdana" y="573.50" x="1052.58"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x103130cfc (0.50%)')"><title >0x103130cfc (0.50%)</title> | |
<rect ry="2" x="1049.5801" width="5.9000244" height="15.0" fill="rgb(222,128,18)" rx="2" y="547.0"/> | |
<text font-family="Verdana" x="1052.58" font-size="12" y="557.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('0x1031853f8 (0.40%)')"><title >0x1031853f8 (0.40%)</title> | |
<rect width="4.7199707" height="15.0" x="1049.5801" y="531.0" ry="2" rx="2" fill="rgb(218,0,30)"/> | |
<text font-size="12" font-family="Verdana" x="1052.58" y="541.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_dispatch_once_callout (0.40%)')"><title >_dispatch_once_callout (0.40%)</title> | |
<rect rx="2" fill="rgb(206,207,55)" width="4.7199707" x="1049.5801" ry="2" height="15.0" y="515.0"/> | |
<text font-size="12" x="1052.58" font-family="Verdana" y="525.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_dispatch_client_callout (0.40%)')" class="func_g" onmouseout="c()"><title >_dispatch_client_callout (0.40%)</title> | |
<rect fill="rgb(223,100,28)" x="1049.5801" rx="2" ry="2" height="15.0" y="499.0" width="4.7199707"/> | |
<text font-size="12" y="509.50" x="1052.58" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x103185438 (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >0x103185438 (0.40%)</title> | |
<rect width="4.7199707" x="1049.5801" y="483.0" fill="rgb(210,111,25)" ry="2" rx="2" height="15.0"/> | |
<text x="1052.58" y="493.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('0x103185468 (0.40%)')"><title >0x103185468 (0.40%)</title> | |
<rect fill="rgb(224,157,39)" y="467.0" ry="2" height="15.0" width="4.7199707" rx="2" x="1049.5801"/> | |
<text x="1052.58" y="477.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('GADDispatchAsyncSafeMainQueue (0.40%)')" onclick="zoom(this)"><title >GADDispatchAsyncSafeMainQueue (0.40%)</title> | |
<rect y="451.0" x="1049.5801" rx="2" height="15.0" width="4.7199707" fill="rgb(234,180,35)" ry="2"/> | |
<text x="1052.58" font-family="Verdana" y="461.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x1031855d8 (0.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x1031855d8 (0.40%)</title> | |
<rect y="435.0" height="15.0" x="1049.5801" fill="rgb(223,216,41)" width="4.7199707" rx="2" ry="2"/> | |
<text font-family="Verdana" y="445.50" x="1052.58" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x1031782bc (0.40%)')" class="func_g" onmouseout="c()"><title >0x1031782bc (0.40%)</title> | |
<rect width="4.7199707" fill="rgb(232,230,11)" rx="2" height="15.0" y="419.0" x="1049.5801" ry="2"/> | |
<text x="1052.58" y="429.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('_dispatch_once_callout (0.20%)')"><title >_dispatch_once_callout (0.20%)</title> | |
<rect x="1049.5801" ry="2" height="15.0" rx="2" fill="rgb(216,207,2)" y="403.0" width="2.3599854"/> | |
<text x="1052.58" y="413.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_dispatch_client_callout (0.20%)')" class="func_g" onclick="zoom(this)"><title >_dispatch_client_callout (0.20%)</title> | |
<rect width="2.3599854" y="387.0" height="15.0" fill="rgb(233,112,38)" ry="2" x="1049.5801" rx="2"/> | |
<text y="397.50" font-size="12" x="1052.58" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x1031795d8 (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x1031795d8 (0.20%)</title> | |
<rect rx="2" width="2.3599854" x="1049.5801" fill="rgb(224,76,4)" height="15.0" ry="2" y="371.0"/> | |
<text font-family="Verdana" x="1052.58" y="381.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[WKProcessPool init] (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[WKProcessPool init] (0.20%)</title> | |
<rect width="2.3599854" rx="2" y="355.0" fill="rgb(247,40,42)" x="1049.5801" height="15.0" ry="2"/> | |
<text font-size="12" x="1052.58" y="365.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[WKProcessPool _initWithConfiguration:] (0.20%)')" onclick="zoom(this)"><title >-[WKProcessPool _initWithConfiguration:] (0.20%)</title> | |
<rect fill="rgb(231,117,20)" y="339.0" width="2.3599854" ry="2" height="15.0" x="1049.5801" rx="2"/> | |
<text font-size="12" x="1052.58" y="349.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('WebKit::WebProcessPool::WebProcessPool(API::ProcessPoolConfiguration&) (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >WebKit::WebProcessPool::WebProcessPool(API::ProcessPoolConfiguration&) (0.20%)</title> | |
<rect height="15.0" x="1049.5801" width="2.3599854" y="323.0" fill="rgb(254,78,38)" ry="2" rx="2"/> | |
<text font-size="12" y="333.50" font-family="Verdana" x="1052.58"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('WebKit::WebPageGroup::WebPageGroup(WTF::String const&) (0.20%)')"><title >WebKit::WebPageGroup::WebPageGroup(WTF::String const&) (0.20%)</title> | |
<rect rx="2" ry="2" height="15.0" fill="rgb(246,12,24)" y="307.0" x="1049.5801" width="2.3599854"/> | |
<text font-size="12" font-family="Verdana" y="317.50" x="1052.58"></text> | |
</g> | |
<g onmouseover="s('WebKit::WebPreferences::createWithLegacyDefaults(WTF::String const&, WTF::String const&, WTF::String const&) (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >WebKit::WebPreferences::createWithLegacyDefaults(WTF::String const&, WTF::String const&, WTF::String const&) (0.20%)</title> | |
<rect x="1049.5801" ry="2" y="291.0" height="15.0" rx="2" width="2.3599854" fill="rgb(215,154,15)"/> | |
<text y="301.50" x="1052.58" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('WebKit::WebPreferences::WebPreferences(WTF::String const&, WTF::String const&, WTF::String const&) (0.20%)')"><title >WebKit::WebPreferences::WebPreferences(WTF::String const&, WTF::String const&, WTF::String const&) (0.20%)</title> | |
<rect fill="rgb(205,216,50)" ry="2" y="275.0" width="2.3599854" height="15.0" rx="2" x="1049.5801"/> | |
<text font-size="12" font-family="Verdana" x="1052.58" y="285.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WebKit::WebPreferences::platformInitializeStore() (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >WebKit::WebPreferences::platformInitializeStore() (0.20%)</title> | |
<rect x="1049.5801" height="15.0" rx="2" fill="rgb(216,88,25)" ry="2" width="2.3599854" y="259.0"/> | |
<text y="269.50" font-family="Verdana" font-size="12" x="1052.58"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('WebKit::WebPreferences::platformGetBoolUserValueForKey(WTF::String const&, bool&) (0.20%)')"><title >WebKit::WebPreferences::platformGetBoolUserValueForKey(WTF::String const&, bool&) (0.20%)</title> | |
<rect width="2.3599854" fill="rgb(245,39,32)" ry="2" x="1049.5801" height="15.0" y="243.0" rx="2"/> | |
<text x="1052.58" font-family="Verdana" font-size="12" y="253.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('-[NSUserDefaults(NSUserDefaults) objectForKey:] (0.20%)')"><title >-[NSUserDefaults(NSUserDefaults) objectForKey:] (0.20%)</title> | |
<rect fill="rgb(229,131,25)" width="2.3599854" height="15.0" rx="2" y="227.0" x="1049.5801" ry="2"/> | |
<text font-family="Verdana" font-size="12" y="237.50" x="1052.58"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x19c9c2d83 (0.20%)')" onclick="zoom(this)"><title >0x19c9c2d83 (0.20%)</title> | |
<rect y="211.0" rx="2" fill="rgb(250,123,41)" width="2.3599854" height="15.0" ry="2" x="1049.5801"/> | |
<text font-size="12" x="1052.58" y="221.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x19c9c2f2b (0.20%)')" onclick="zoom(this)"><title >0x19c9c2f2b (0.20%)</title> | |
<rect width="2.3599854" x="1049.5801" height="15.0" rx="2" fill="rgb(229,173,14)" ry="2" y="195.0"/> | |
<text y="205.50" font-family="Verdana" x="1052.58" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca1a6ef (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >0x19ca1a6ef (0.20%)</title> | |
<rect y="179.0" x="1049.5801" rx="2" ry="2" fill="rgb(247,64,5)" width="2.3599854" height="15.0"/> | |
<text font-size="12" y="189.50" x="1052.58" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('0x19ca1de57 (0.20%)')" class="func_g" onclick="zoom(this)"><title >0x19ca1de57 (0.20%)</title> | |
<rect height="15.0" x="1049.5801" fill="rgb(253,196,38)" y="163.0" ry="2" width="2.3599854" rx="2"/> | |
<text font-family="Verdana" x="1052.58" y="173.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca321eb (0.20%)')" onmouseout="c()"><title >0x19ca321eb (0.20%)</title> | |
<rect fill="rgb(251,186,0)" height="15.0" y="147.0" ry="2" rx="2" x="1049.5801" width="2.3599854"/> | |
<text y="157.50" font-size="12" x="1052.58" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19c9b3423 (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >0x19c9b3423 (0.20%)</title> | |
<rect x="1049.5801" rx="2" ry="2" y="131.0" height="15.0" fill="rgb(215,60,32)" width="2.3599854"/> | |
<text y="141.50" font-family="Verdana" x="1052.58" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('0x19c9b346f (0.20%)')"><title >0x19c9b346f (0.20%)</title> | |
<rect ry="2" x="1049.5801" width="2.3599854" fill="rgb(214,221,28)" height="15.0" rx="2" y="115.0"/> | |
<text font-size="12" y="125.50" font-family="Verdana" x="1052.58"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('0x19c9b371b (0.20%)')"><title >0x19c9b371b (0.20%)</title> | |
<rect fill="rgb(205,80,7)" height="15.0" y="99.0" x="1049.5801" width="2.3599854" ry="2" rx="2"/> | |
<text x="1052.58" y="109.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x19cb4e97f (0.20%)')"><title >0x19cb4e97f (0.20%)</title> | |
<rect width="2.3599854" x="1049.5801" ry="2" height="15.0" fill="rgb(207,111,53)" rx="2" y="83.0"/> | |
<text font-family="Verdana" y="93.50" x="1052.58" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_debug_impl (0.20%)')" onmouseout="c()"><title >_os_log_debug_impl (0.20%)</title> | |
<rect y="67.0" x="1049.5801" width="2.3599854" fill="rgb(209,166,10)" rx="2" ry="2" height="15.0"/> | |
<text x="1052.58" y="77.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_log (0.20%)')" onmouseout="c()" class="func_g"><title >_os_log (0.20%)</title> | |
<rect fill="rgb(247,168,17)" width="2.3599854" height="15.0" ry="2" rx="2" y="51.0" x="1049.5801"/> | |
<text font-size="12" x="1052.58" y="61.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_os_log_impl_flatten_and_send (0.20%)')" class="func_g" onclick="zoom(this)"><title >_os_log_impl_flatten_and_send (0.20%)</title> | |
<rect y="35.0" x="1049.5801" rx="2" ry="2" height="15.0" width="2.3599854" fill="rgb(209,48,51)"/> | |
<text x="1052.58" y="45.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_log_fmt_flatten_object (0.10%)')" onclick="zoom(this)"><title >_os_log_fmt_flatten_object (0.10%)</title> | |
<rect y="19.0" x="1049.5801" ry="2" rx="2" fill="rgb(222,217,0)" width="1.1800537" height="15.0"/> | |
<text font-family="Verdana" y="29.50" x="1052.58" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_os_log_impl_stream (0.10%)')" onclick="zoom(this)"><title >_os_log_impl_stream (0.10%)</title> | |
<rect y="19.0" x="1050.7601" ry="2" rx="2" fill="rgb(241,90,38)" width="1.1800537" height="15.0"/> | |
<text font-family="Verdana" y="29.50" x="1053.76" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_os_activity_stream_reflect (0.10%)')"><title >_os_activity_stream_reflect (0.10%)</title> | |
<rect x="1050.7601" rx="2" ry="2" fill="rgb(235,216,18)" y="3.0" width="1.1800537" height="15.0"/> | |
<text x="1053.76" y="13.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[WKWebView initWithFrame:configuration:] (0.10%)')"><title >-[WKWebView initWithFrame:configuration:] (0.10%)</title> | |
<rect x="1051.9401" ry="2" height="15.0" rx="2" fill="rgb(247,227,38)" y="403.0" width="1.1800537"/> | |
<text y="413.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[WKWebView _initializeWithConfiguration:] (0.10%)')"><title >-[WKWebView _initializeWithConfiguration:] (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="387.0" fill="rgb(254,206,37)" height="15.0" x="1051.9401" rx="2"/> | |
<text y="397.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('-[WKContentView initWithFrame:processPool:configuration:webView:] (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >-[WKContentView initWithFrame:processPool:configuration:webView:] (0.10%)</title> | |
<rect y="371.0" fill="rgb(220,31,35)" rx="2" ry="2" height="15.0" x="1051.9401" width="1.1800537"/> | |
<text y="381.50" font-size="12" x="1054.94" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('-[WKContentView _commonInitializationWithProcessPool:configuration:] (0.10%)')" onmouseout="c()"><title >-[WKContentView _commonInitializationWithProcessPool:configuration:] (0.10%)</title> | |
<rect y="355.0" height="15.0" fill="rgb(240,13,36)" rx="2" width="1.1800537" x="1051.9401" ry="2"/> | |
<text y="365.50" font-family="Verdana" font-size="12" x="1054.94"></text> | |
</g> | |
<g onmouseover="s('WebKit::WebProcessPool::createWebPage(WebKit::PageClient&, WTF::Ref<API::PageConfiguration, WTF::RawPtrTraits<API::PageConfiguration>>&&) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >WebKit::WebProcessPool::createWebPage(WebKit::PageClient&, WTF::Ref<API::PageConfiguration, WTF::RawPtrTraits<API::PageConfiguration>>&&) (0.10%)</title> | |
<rect width="1.1800537" y="339.0" ry="2" height="15.0" x="1051.9401" fill="rgb(227,21,35)" rx="2"/> | |
<text y="349.50" font-size="12" font-family="Verdana" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('WebKit::WebProcessPool::processForRegistrableDomain(WebKit::WebsiteDataStore&, WebCore::RegistrableDomain const&, WebKit::WebProcessProxy::LockdownMode) (0.10%)')" onmouseout="c()"><title >WebKit::WebProcessPool::processForRegistrableDomain(WebKit::WebsiteDataStore&, WebCore::RegistrableDomain const&, WebKit::WebProcessProxy::LockdownMode) (0.10%)</title> | |
<rect width="1.1800537" y="323.0" ry="2" x="1051.9401" rx="2" fill="rgb(207,200,17)" height="15.0"/> | |
<text font-family="Verdana" font-size="12" y="333.50" x="1054.94"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('WebKit::WebProcessPool::createNewWebProcess(WebKit::WebsiteDataStore*, WebKit::WebProcessProxy::LockdownMode, WebKit::WebProcessProxy::IsPrewarmed, WebCore::CrossOriginMode) (0.10%)')"><title >WebKit::WebProcessPool::createNewWebProcess(WebKit::WebsiteDataStore*, WebKit::WebProcessProxy::LockdownMode, WebKit::WebProcessProxy::IsPrewarmed, WebCore::CrossOriginMode) (0.10%)</title> | |
<rect y="307.0" rx="2" x="1051.9401" width="1.1800537" ry="2" height="15.0" fill="rgb(224,14,17)"/> | |
<text font-size="12" x="1054.94" y="317.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x1030ddca0 (0.40%)')" onclick="zoom(this)"><title >0x1030ddca0 (0.40%)</title> | |
<rect rx="2" ry="2" width="4.7199707" x="1056.66" height="15.0" fill="rgb(221,118,6)" y="771.0"/> | |
<text y="781.50" font-family="Verdana" font-size="12" x="1059.66"></text> | |
</g> | |
<g onmouseover="s('GADWebAdViewForAdConfiguration (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >GADWebAdViewForAdConfiguration (0.30%)</title> | |
<rect width="3.540039" x="1056.66" y="755.0" height="15.0" ry="2" rx="2" fill="rgb(227,87,17)"/> | |
<text font-size="12" x="1059.66" font-family="Verdana" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x1030a9490 (0.30%)')" onclick="zoom(this)"><title >0x1030a9490 (0.30%)</title> | |
<rect height="15.0" rx="2" x="1056.66" ry="2" width="3.540039" fill="rgb(240,73,42)" y="739.0"/> | |
<text font-size="12" y="749.50" font-family="Verdana" x="1059.66"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x1031782bc (0.20%)')" onmouseout="c()" class="func_g"><title >0x1031782bc (0.20%)</title> | |
<rect y="723.0" fill="rgb(233,138,0)" rx="2" x="1056.66" ry="2" width="2.3599854" height="15.0"/> | |
<text y="733.50" font-size="12" x="1059.66" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[WKWebView initWithFrame:configuration:] (0.20%)')"><title >-[WKWebView initWithFrame:configuration:] (0.20%)</title> | |
<rect height="15.0" ry="2" width="2.3599854" rx="2" x="1056.66" fill="rgb(252,201,22)" y="707.0"/> | |
<text y="717.50" x="1059.66" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[WKWebView _initializeWithConfiguration:] (0.20%)')" onclick="zoom(this)"><title >-[WKWebView _initializeWithConfiguration:] (0.20%)</title> | |
<rect x="1056.66" height="15.0" fill="rgb(219,169,17)" y="691.0" rx="2" ry="2" width="2.3599854"/> | |
<text y="701.50" x="1059.66" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('-[WKContentView initWithFrame:processPool:configuration:webView:] (0.10%)')" onclick="zoom(this)"><title >-[WKContentView initWithFrame:processPool:configuration:webView:] (0.10%)</title> | |
<rect width="1.1800537" y="675.0" height="15.0" rx="2" ry="2" x="1056.66" fill="rgb(220,149,45)"/> | |
<text y="685.50" font-size="12" font-family="Verdana" x="1059.66"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[WKContentView _commonInitializationWithProcessPool:configuration:] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[WKContentView _commonInitializationWithProcessPool:configuration:] (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(218,15,9)" x="1056.66" height="15.0" rx="2" ry="2" y="659.0"/> | |
<text font-size="12" font-family="Verdana" x="1059.66" y="669.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WebKit::WebProcessPool::createWebPage(WebKit::PageClient&, WTF::Ref<API::PageConfiguration, WTF::RawPtrTraits<API::PageConfiguration>>&&) (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >WebKit::WebProcessPool::createWebPage(WebKit::PageClient&, WTF::Ref<API::PageConfiguration, WTF::RawPtrTraits<API::PageConfiguration>>&&) (0.10%)</title> | |
<rect fill="rgb(224,182,40)" x="1056.66" rx="2" ry="2" width="1.1800537" y="643.0" height="15.0"/> | |
<text font-size="12" y="653.50" font-family="Verdana" x="1059.66"></text> | |
</g> | |
<g onmouseover="s('WebKit::WebProcessPool::processForRegistrableDomain(WebKit::WebsiteDataStore&, WebCore::RegistrableDomain const&, WebKit::WebProcessProxy::LockdownMode) (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >WebKit::WebProcessPool::processForRegistrableDomain(WebKit::WebsiteDataStore&, WebCore::RegistrableDomain const&, WebKit::WebProcessProxy::LockdownMode) (0.10%)</title> | |
<rect x="1056.66" y="627.0" ry="2" rx="2" width="1.1800537" fill="rgb(224,214,39)" height="15.0"/> | |
<text font-size="12" y="637.50" x="1059.66" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('WebKit::WebProcessPool::createNewWebProcess(WebKit::WebsiteDataStore*, WebKit::WebProcessProxy::LockdownMode, WebKit::WebProcessProxy::IsPrewarmed, WebCore::CrossOriginMode) (0.10%)')" onclick="zoom(this)" class="func_g"><title >WebKit::WebProcessPool::createNewWebProcess(WebKit::WebsiteDataStore*, WebKit::WebProcessProxy::LockdownMode, WebKit::WebProcessProxy::IsPrewarmed, WebCore::CrossOriginMode) (0.10%)</title> | |
<rect ry="2" x="1056.66" width="1.1800537" height="15.0" fill="rgb(239,91,26)" rx="2" y="611.0"/> | |
<text font-family="Verdana" x="1059.66" font-size="12" y="621.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('WebKit::WebProcessPool::initializeNewWebProcess(WebKit::WebProcessProxy&, WebKit::WebsiteDataStore*, WebKit::WebProcessProxy::IsPrewarmed) (0.10%)')"><title >WebKit::WebProcessPool::initializeNewWebProcess(WebKit::WebProcessProxy&, WebKit::WebsiteDataStore*, WebKit::WebProcessProxy::IsPrewarmed) (0.10%)</title> | |
<rect rx="2" x="1056.66" width="1.1800537" ry="2" y="595.0" height="15.0" fill="rgb(219,193,42)"/> | |
<text font-size="12" y="605.50" font-family="Verdana" x="1059.66"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('-[UIView(Internal) _addSubview:positioned:relativeTo:] (0.10%)')" onmouseout="c()" class="func_g"><title >-[UIView(Internal) _addSubview:positioned:relativeTo:] (0.10%)</title> | |
<rect x="1059.02" y="723.0" ry="2" rx="2" width="1.1800537" fill="rgb(250,33,38)" height="15.0"/> | |
<text y="733.50" font-size="12" x="1062.02" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[UIView _postMovedFromSuperview:] (0.10%)')"><title >-[UIView _postMovedFromSuperview:] (0.10%)</title> | |
<rect fill="rgb(207,212,8)" x="1059.02" rx="2" ry="2" height="15.0" y="707.0" width="1.1800537"/> | |
<text y="717.50" x="1062.02" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('__45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke (0.10%)')" onclick="zoom(this)"><title >__45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(228,203,52)" x="1059.02" height="15.0" rx="2" ry="2" y="691.0"/> | |
<text y="701.50" x="1062.02" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[UIView(Internal) _didMoveFromWindow:toWindow:] (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >-[UIView(Internal) _didMoveFromWindow:toWindow:] (0.10%)</title> | |
<rect y="675.0" fill="rgb(221,128,43)" rx="2" x="1059.02" ry="2" width="1.1800537" height="15.0"/> | |
<text y="685.50" font-size="12" font-family="Verdana" x="1062.02"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('GADPostNotification (0.30%)')" onclick="zoom(this)"><title >GADPostNotification (0.30%)</title> | |
<rect rx="2" ry="2" width="3.540039" x="1061.3801" height="15.0" fill="rgb(205,54,52)" y="771.0"/> | |
<text y="781.50" font-family="Verdana" font-size="12" x="1064.38"></text> | |
</g> | |
<g onmouseover="s('0x103150fd8 (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x103150fd8 (0.30%)</title> | |
<rect width="3.540039" x="1061.3801" y="755.0" height="15.0" ry="2" rx="2" fill="rgb(251,79,3)"/> | |
<text font-size="12" x="1064.38" font-family="Verdana" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('-[NSNotificationCenter postNotificationName:object:userInfo:] (0.10%)')" onclick="zoom(this)"><title >-[NSNotificationCenter postNotificationName:object:userInfo:] (0.10%)</title> | |
<rect x="1061.3801" y="739.0" ry="2" rx="2" width="1.1800537" fill="rgb(252,28,5)" height="15.0"/> | |
<text y="749.50" font-size="12" x="1064.38" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x19c9e2afb (0.10%)')" onmouseout="c()" class="func_g"><title >0x19c9e2afb (0.10%)</title> | |
<rect fill="rgb(239,104,2)" x="1061.3801" rx="2" ry="2" height="15.0" y="723.0" width="1.1800537"/> | |
<text y="733.50" font-size="12" x="1064.38" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x19ca558b7 (0.10%)')" class="func_g"><title >0x19ca558b7 (0.10%)</title> | |
<rect y="707.0" fill="rgb(246,94,50)" rx="2" x="1061.3801" ry="2" width="1.1800537" height="15.0"/> | |
<text font-family="Verdana" font-size="12" x="1064.38" y="717.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x19ca72827 (0.10%)')" class="func_g"><title >0x19ca72827 (0.10%)</title> | |
<rect height="15.0" ry="2" width="1.1800537" rx="2" x="1061.3801" fill="rgb(233,198,40)" y="691.0"/> | |
<text y="701.50" font-size="12" font-family="Verdana" x="1064.38"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19c9ce57b (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19c9ce57b (0.10%)</title> | |
<rect y="675.0" height="15.0" rx="2" width="1.1800537" ry="2" x="1061.3801" fill="rgb(211,49,38)"/> | |
<text y="685.50" x="1064.38" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x103151400 (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >0x103151400 (0.10%)</title> | |
<rect rx="2" ry="2" height="15.0" width="1.1800537" x="1061.3801" y="659.0" fill="rgb(245,116,49)"/> | |
<text font-size="12" y="669.50" x="1064.38" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('0x10311f8c0 (0.10%)')"><title >0x10311f8c0 (0.10%)</title> | |
<rect ry="2" x="1061.3801" width="1.1800537" height="15.0" fill="rgb(215,200,2)" rx="2" y="643.0"/> | |
<text x="1064.38" font-size="12" font-family="Verdana" y="653.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x103126cd8 (0.30%)')" onclick="zoom(this)"><title >0x103126cd8 (0.30%)</title> | |
<rect rx="2" ry="2" width="3.540039" x="1064.92" height="15.0" fill="rgb(239,142,12)" y="771.0"/> | |
<text y="781.50" font-family="Verdana" font-size="12" x="1067.92"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x10312740c (0.20%)')" onclick="zoom(this)"><title >0x10312740c (0.20%)</title> | |
<rect width="2.3599854" x="1064.92" y="755.0" height="15.0" ry="2" rx="2" fill="rgb(213,104,44)"/> | |
<text font-family="Verdana" x="1067.92" font-size="12" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_dispatch_event_loop_poke (0.10%)')" onclick="zoom(this)"><title >_dispatch_event_loop_poke (0.10%)</title> | |
<rect x="1064.92" y="739.0" ry="2" rx="2" width="1.1800537" fill="rgb(216,192,46)" height="15.0"/> | |
<text font-size="12" y="749.50" font-family="Verdana" x="1067.92"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_dispatch_kq_poll (0.10%)')" onmouseout="c()" class="func_g"><title >_dispatch_kq_poll (0.10%)</title> | |
<rect fill="rgb(219,26,35)" x="1064.92" rx="2" ry="2" height="15.0" y="723.0" width="1.1800537"/> | |
<text y="733.50" font-size="12" x="1067.92" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('kevent_id (0.10%)')" class="func_g"><title >kevent_id (0.10%)</title> | |
<rect ry="2" x="1064.92" width="1.1800537" height="15.0" fill="rgb(255,120,53)" rx="2" y="707.0"/> | |
<text font-family="Verdana" font-size="12" x="1067.92" y="717.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('GADVisibleBoundsRelativeToWindow (0.10%)')" onclick="zoom(this)"><title >GADVisibleBoundsRelativeToWindow (0.10%)</title> | |
<rect x="1066.1001" y="739.0" ry="2" rx="2" width="1.1800537" fill="rgb(232,186,31)" height="15.0"/> | |
<text font-size="12" y="749.50" font-family="Verdana" x="1069.10"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x10316d138 (0.20%)')" onclick="zoom(this)"><title >0x10316d138 (0.20%)</title> | |
<rect rx="2" ry="2" width="2.3599854" x="1068.4601" height="15.0" fill="rgb(220,61,29)" y="771.0"/> | |
<text y="781.50" font-family="Verdana" font-size="12" x="1071.46"></text> | |
</g> | |
<g onmouseover="s('0x10317f308 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x10317f308 (0.10%)</title> | |
<rect width="1.1800537" x="1068.4601" y="755.0" height="15.0" ry="2" rx="2" fill="rgb(250,55,54)"/> | |
<text font-size="12" x="1071.46" font-family="Verdana" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('GADGestures (0.10%)')" onclick="zoom(this)"><title >GADGestures (0.10%)</title> | |
<rect x="1068.4601" y="739.0" ry="2" rx="2" width="1.1800537" fill="rgb(246,92,38)" height="15.0"/> | |
<text y="749.50" font-size="12" x="1071.46" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x103051ec4 (0.10%)')"><title >0x103051ec4 (0.10%)</title> | |
<rect ry="2" x="1068.4601" width="1.1800537" height="15.0" fill="rgb(221,229,44)" rx="2" y="723.0"/> | |
<text x="1071.46" font-size="12" y="733.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x103051cc4 (0.10%)')" class="func_g"><title >0x103051cc4 (0.10%)</title> | |
<rect width="1.1800537" x="1068.4601" ry="2" height="15.0" y="707.0" rx="2" fill="rgb(231,25,43)"/> | |
<text font-family="Verdana" font-size="12" x="1071.46" y="717.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('ggi_gs (0.10%)')" class="func_g"><title >ggi_gs (0.10%)</title> | |
<rect y="691.0" fill="rgb(232,129,2)" height="15.0" x="1068.4601" width="1.1800537" rx="2" ry="2"/> | |
<text y="701.50" font-size="12" font-family="Verdana" x="1071.46"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x103050fdc (0.10%)')" class="func_g"><title >0x103050fdc (0.10%)</title> | |
<rect fill="rgb(214,65,11)" height="15.0" width="1.1800537" y="675.0" ry="2" rx="2" x="1068.4601"/> | |
<text font-size="12" y="685.50" x="1071.46" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x10317233c (0.20%)')" onclick="zoom(this)"><title >0x10317233c (0.20%)</title> | |
<rect rx="2" ry="2" width="2.3599854" x="1070.8201" height="15.0" fill="rgb(221,111,48)" y="771.0"/> | |
<text y="781.50" font-family="Verdana" font-size="12" x="1073.82"></text> | |
</g> | |
<g onmouseover="s('0x10315f180 (0.20%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x10315f180 (0.20%)</title> | |
<rect width="2.3599854" x="1070.8201" y="755.0" height="15.0" ry="2" rx="2" fill="rgb(247,154,9)"/> | |
<text font-size="12" x="1073.82" font-family="Verdana" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x1030b7a18 (0.10%)')"><title >0x1030b7a18 (0.10%)</title> | |
<rect x="1070.8201" y="739.0" ry="2" rx="2" width="1.1800537" fill="rgb(250,83,27)" height="15.0"/> | |
<text font-size="12" y="749.50" font-family="Verdana" x="1073.82"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('GADDispatchAsyncSafeMainQueue (0.10%)')" onclick="zoom(this)"><title >GADDispatchAsyncSafeMainQueue (0.10%)</title> | |
<rect ry="2" x="1070.8201" width="1.1800537" height="15.0" fill="rgb(243,104,12)" rx="2" y="723.0"/> | |
<text x="1073.82" font-size="12" y="733.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x1030b7b64 (0.10%)')"><title >0x1030b7b64 (0.10%)</title> | |
<rect x="1070.8201" rx="2" width="1.1800537" height="15.0" ry="2" fill="rgb(214,67,38)" y="707.0"/> | |
<text y="717.50" font-size="12" x="1073.82" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x103130b94 (0.10%)')" onclick="zoom(this)"><title >0x103130b94 (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800537" x="1073.18" height="15.0" fill="rgb(229,194,53)" y="771.0"/> | |
<text y="781.50" font-family="Verdana" font-size="12" x="1076.18"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x103179fb4 (0.10%)')" onclick="zoom(this)"><title >0x103179fb4 (0.10%)</title> | |
<rect width="1.1800537" x="1073.18" y="755.0" height="15.0" ry="2" rx="2" fill="rgb(210,102,49)"/> | |
<text font-family="Verdana" x="1076.18" font-size="12" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_dispatch_once_callout (0.10%)')" onclick="zoom(this)"><title >_dispatch_once_callout (0.10%)</title> | |
<rect x="1073.18" y="739.0" ry="2" rx="2" width="1.1800537" fill="rgb(239,158,15)" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="749.50" x="1076.18"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_dispatch_client_callout (0.10%)')" onclick="zoom(this)"><title >_dispatch_client_callout (0.10%)</title> | |
<rect x="1073.18" rx="2" width="1.1800537" height="15.0" ry="2" fill="rgb(236,144,53)" y="723.0"/> | |
<text x="1076.18" font-size="12" y="733.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x10317a0e4 (0.10%)')"><title >0x10317a0e4 (0.10%)</title> | |
<rect fill="rgb(246,18,8)" height="15.0" width="1.1800537" y="707.0" ry="2" rx="2" x="1073.18"/> | |
<text y="717.50" font-size="12" x="1076.18" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x10317a3c8 (0.10%)')" onclick="zoom(this)"><title >0x10317a3c8 (0.10%)</title> | |
<rect fill="rgb(217,127,48)" x="1073.18" rx="2" ry="2" height="15.0" y="691.0" width="1.1800537"/> | |
<text y="701.50" x="1076.18" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x103148f70 (0.10%)')" onclick="zoom(this)"><title >0x103148f70 (0.10%)</title> | |
<rect rx="2" ry="2" width="1.1800537" x="1074.3601" height="15.0" fill="rgb(218,195,7)" y="771.0"/> | |
<text y="781.50" font-family="Verdana" font-size="12" x="1077.36"></text> | |
</g> | |
<g onmouseover="s('0x1031488f4 (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x1031488f4 (0.10%)</title> | |
<rect width="1.1800537" x="1074.3601" y="755.0" height="15.0" ry="2" rx="2" fill="rgb(210,189,39)"/> | |
<text font-size="12" x="1077.36" font-family="Verdana" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x10314927c (0.10%)')" onclick="zoom(this)"><title >0x10314927c (0.10%)</title> | |
<rect x="1074.3601" rx="2" width="1.1800537" height="15.0" ry="2" fill="rgb(250,63,10)" y="739.0"/> | |
<text font-size="12" font-family="Verdana" y="749.50" x="1077.36"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('_dispatch_async_and_wait_invoke (1.40%)')" onclick="zoom(this)"><title >_dispatch_async_and_wait_invoke (1.40%)</title> | |
<rect y="787.0" height="15.0" rx="2" fill="rgb(239,69,55)" x="1079.0801" width="16.52002" ry="2"/> | |
<text y="797.50" font-family="Verdana" font-size="12" x="1082.08"></text> | |
</g> | |
<g onmouseover="s('_dispatch_client_callout (1.40%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >_dispatch_client_callout (1.40%)</title> | |
<rect rx="2" ry="2" width="16.52002" x="1079.0801" height="15.0" fill="rgb(246,122,46)" y="771.0"/> | |
<text font-family="Verdana" y="781.50" x="1082.08" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x1031a1d1c (1.40%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >0x1031a1d1c (1.40%)</title> | |
<rect x="1079.0801" rx="2" width="16.52002" height="15.0" ry="2" fill="rgb(214,167,48)" y="755.0"/> | |
<text font-size="12" x="1082.08" font-family="Verdana" y="765.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('0x1031a4908 (1.40%)')"><title >0x1031a4908 (1.40%)</title> | |
<rect fill="rgb(253,226,6)" x="1079.0801" rx="2" ry="2" height="15.0" y="739.0" width="16.52002"/> | |
<text font-size="12" y="749.50" font-family="Verdana" x="1082.08"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x1031a49d4 (1.40%)')" onclick="zoom(this)"><title >0x1031a49d4 (1.40%)</title> | |
<rect rx="2" fill="rgb(234,48,49)" ry="2" x="1079.0801" y="723.0" height="15.0" width="16.52002"/> | |
<text x="1082.08" font-size="12" y="733.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseout="c()" onmouseover="s('0x1031984c8 (1.30%)')"><title >0x1031984c8 (1.30%)</title> | |
<rect width="15.339966" x="1079.0801" height="15.0" rx="2" fill="rgb(249,156,39)" ry="2" y="707.0"/> | |
<text font-family="Verdana" font-size="12" x="1082.08" y="717.50"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('0x103199b34 (1.20%)')" onclick="zoom(this)"><title >0x103199b34 (1.20%)</title> | |
<rect y="691.0" x="1079.0801" rx="2" ry="2" fill="rgb(206,3,40)" width="14.160034" height="15.0"/> | |
<text y="701.50" x="1082.08" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x1031a18d4 (1.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >0x1031a18d4 (1.20%)</title> | |
<rect rx="2" height="15.0" y="675.0" fill="rgb(219,132,28)" ry="2" x="1079.0801" width="14.160034"/> | |
<text font-family="Verdana" x="1082.08" y="685.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x103199bc4 (1.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x103199bc4 (1.20%)</title> | |
<rect fill="rgb(250,10,39)" height="15.0" y="659.0" ry="2" rx="2" x="1079.0801" width="14.160034"/> | |
<text font-size="12" x="1082.08" font-family="Verdana" y="669.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('0x1031a9a20 (1.20%)')" onclick="zoom(this)"><title >0x1031a9a20 (1.20%)</title> | |
<rect ry="2" x="1079.0801" width="14.160034" fill="rgb(249,11,34)" height="15.0" rx="2" y="643.0"/> | |
<text font-family="Verdana" y="653.50" x="1082.08" font-size="12"></text> | |
</g> | |
<g onmouseover="s('-[WKWebView evaluateJavaScript:completionHandler:] (1.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >-[WKWebView evaluateJavaScript:completionHandler:] (1.20%)</title> | |
<rect fill="rgb(245,16,1)" height="15.0" y="627.0" x="1079.0801" width="14.160034" ry="2" rx="2"/> | |
<text font-size="12" y="637.50" font-family="Verdana" x="1082.08"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" onmouseover="s('-[WKWebView _evaluateJavaScript:asAsyncFunction:withSourceURL:withArguments:forceUserGesture:inFrame:inWorld:completionHandler:] (1.20%)')" class="func_g"><title >-[WKWebView _evaluateJavaScript:asAsyncFunction:withSourceURL:withArguments:forceUserGesture:inFrame:inWorld:completionHandler:] (1.20%)</title> | |
<rect width="14.160034" fill="rgb(236,36,49)" height="15.0" y="611.0" x="1079.0801" rx="2" ry="2"/> | |
<text font-size="12" y="621.50" font-family="Verdana" x="1082.08"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&) (1.20%)')"><title >WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&) (1.20%)</title> | |
<rect y="595.0" x="1079.0801" ry="2" rx="2" fill="rgb(235,83,2)" width="14.160034" height="15.0"/> | |
<text x="1082.08" y="605.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>::Activity(WebKit::ProcessThrottler&, WTF::ASCIILiteral) (0.60%)')" onclick="zoom(this)"><title >WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>::Activity(WebKit::ProcessThrottler&, WTF::ASCIILiteral) (0.60%)</title> | |
<rect height="15.0" fill="rgb(245,126,7)" ry="2" y="579.0" rx="2" x="1079.0801" width="7.079956"/> | |
<text y="589.50" x="1082.08" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('WebKit::ProcessThrottler::addActivity(WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>&) (0.50%)')"><title >WebKit::ProcessThrottler::addActivity(WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)1>&) (0.50%)</title> | |
<rect fill="rgb(239,90,42)" ry="2" width="5.9000244" y="563.0" height="15.0" rx="2" x="1079.0801"/> | |
<text y="573.50" font-size="12" font-family="Verdana" x="1082.08"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.50%)')"><title >WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.50%)</title> | |
<rect ry="2" x="1079.0801" height="15.0" width="5.9000244" fill="rgb(255,36,39)" y="547.0" rx="2"/> | |
<text y="557.50" font-family="Verdana" font-size="12" x="1082.08"></text> | |
</g> | |
<g onmouseover="s('WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.50%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.50%)</title> | |
<rect fill="rgb(223,108,4)" rx="2" ry="2" x="1079.0801" y="531.0" width="5.9000244" height="15.0"/> | |
<text font-family="Verdana" x="1082.08" y="541.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.50%)</title> | |
<rect rx="2" width="5.9000244" x="1079.0801" ry="2" fill="rgb(249,16,54)" height="15.0" y="515.0"/> | |
<text font-family="Verdana" x="1082.08" y="525.50" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_log_impl (0.50%)')" class="func_g" onmouseout="c()"><title >_os_log_impl (0.50%)</title> | |
<rect y="499.0" width="5.9000244" height="15.0" fill="rgb(210,10,55)" rx="2" x="1079.0801" ry="2"/> | |
<text font-size="12" y="509.50" x="1082.08" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_os_log (0.50%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_os_log (0.50%)</title> | |
<rect fill="rgb(251,171,31)" rx="2" x="1079.0801" y="483.0" height="15.0" width="5.9000244" ry="2"/> | |
<text x="1082.08" y="493.50" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_os_log_impl_flatten_and_send (0.50%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_os_log_impl_flatten_and_send (0.50%)</title> | |
<rect ry="2" height="15.0" rx="2" fill="rgb(255,134,27)" y="467.0" x="1079.0801" width="5.9000244"/> | |
<text y="477.50" font-family="Verdana" x="1082.08" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_os_log_impl_stream (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_os_log_impl_stream (0.50%)</title> | |
<rect rx="2" y="451.0" height="15.0" x="1079.0801" width="5.9000244" ry="2" fill="rgb(217,46,49)"/> | |
<text y="461.50" font-size="12" x="1082.08" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_activity_stream_reflect (0.50%)')" class="func_g" onmouseout="c()"><title >_os_activity_stream_reflect (0.50%)</title> | |
<rect y="435.0" x="1079.0801" width="5.9000244" rx="2" height="15.0" fill="rgb(239,158,39)" ry="2"/> | |
<text font-size="12" x="1082.08" font-family="Verdana" y="445.50"></text> | |
</g> | |
<g onmouseover="s('dispatch_block_perform (0.20%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dispatch_block_perform (0.20%)</title> | |
<rect y="419.0" height="15.0" width="2.3599854" rx="2" fill="rgb(240,207,34)" x="1079.0801" ry="2"/> | |
<text y="429.50" font-size="12" font-family="Verdana" x="1082.08"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('_dispatch_block_invoke_direct (0.20%)')" class="func_g" onclick="zoom(this)"><title >_dispatch_block_invoke_direct (0.20%)</title> | |
<rect ry="2" x="1079.0801" y="403.0" rx="2" width="2.3599854" height="15.0" fill="rgb(217,161,28)"/> | |
<text font-size="12" x="1082.08" y="413.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_dispatch_client_callout (0.20%)')" onclick="zoom(this)" onmouseout="c()"><title >_dispatch_client_callout (0.20%)</title> | |
<rect rx="2" ry="2" y="387.0" width="2.3599854" height="15.0" fill="rgb(232,34,12)" x="1079.0801"/> | |
<text font-family="Verdana" x="1082.08" font-size="12" y="397.50"></text> | |
</g> | |
<g onmouseover="s('___os_activity_stream_reflect_block_invoke (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >___os_activity_stream_reflect_block_invoke (0.20%)</title> | |
<rect height="15.0" width="2.3599854" ry="2" fill="rgb(238,209,54)" rx="2" y="371.0" x="1079.0801"/> | |
<text font-size="12" x="1082.08" y="381.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_pipe_simpleroutine (0.20%)')" onmouseout="c()"><title >_xpc_pipe_simpleroutine (0.20%)</title> | |
<rect ry="2" fill="rgb(208,80,35)" y="355.0" width="2.3599854" height="15.0" x="1079.0801" rx="2"/> | |
<text font-size="12" x="1082.08" y="365.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_send_serializer (0.10%)')"><title >_xpc_send_serializer (0.10%)</title> | |
<rect rx="2" y="339.0" width="1.1800537" height="15.0" x="1079.0801" fill="rgb(238,222,51)" ry="2"/> | |
<text x="1082.08" font-size="12" font-family="Verdana" y="349.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('_xpc_pipe_mach_msg (0.10%)')" class="func_g"><title >_xpc_pipe_mach_msg (0.10%)</title> | |
<rect ry="2" fill="rgb(253,54,40)" width="1.1800537" rx="2" x="1079.0801" y="323.0" height="15.0"/> | |
<text font-size="12" x="1082.08" font-family="Verdana" y="333.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('mach_msg (0.10%)')"><title >mach_msg (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="307.0" height="15.0" fill="rgb(229,209,7)" x="1079.0801" rx="2"/> | |
<text y="317.50" font-family="Verdana" x="1082.08" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('mach_msg_overwrite (0.10%)')" onmouseout="c()"><title >mach_msg_overwrite (0.10%)</title> | |
<rect rx="2" y="291.0" fill="rgb(234,90,32)" width="1.1800537" x="1079.0801" ry="2" height="15.0"/> | |
<text font-size="12" x="1082.08" font-family="Verdana" y="301.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg2_internal (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_internal (0.10%)</title> | |
<rect x="1079.0801" y="275.0" rx="2" height="15.0" ry="2" width="1.1800537" fill="rgb(230,82,35)"/> | |
<text y="285.50" x="1082.08" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('mach_msg2_trap (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >mach_msg2_trap (0.10%)</title> | |
<rect ry="2" width="1.1800537" rx="2" fill="rgb(213,127,7)" y="259.0" x="1079.0801" height="15.0"/> | |
<text font-size="12" font-family="Verdana" y="269.50" x="1082.08"></text> | |
</g> | |
<g onmouseover="s('_os_activity_stream_entry_encode (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_os_activity_stream_entry_encode (0.10%)</title> | |
<rect ry="2" fill="rgb(247,210,55)" y="419.0" width="1.1800537" height="15.0" x="1081.4401" rx="2"/> | |
<text font-size="12" x="1084.44" y="429.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('xpc_dictionary_set_string (0.10%)')" onmouseout="c()"><title >xpc_dictionary_set_string (0.10%)</title> | |
<rect rx="2" y="403.0" width="1.1800537" height="15.0" x="1081.4401" fill="rgb(232,97,14)" ry="2"/> | |
<text font-size="12" x="1084.44" y="413.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect ry="2" fill="rgb(216,24,13)" y="419.0" width="1.1800537" height="15.0" x="1082.6201" rx="2"/> | |
<text font-size="12" x="1085.62" y="429.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_xpc_dictionary_dispose (0.10%)')" onmouseout="c()"><title >_xpc_dictionary_dispose (0.10%)</title> | |
<rect rx="2" y="403.0" width="1.1800537" height="15.0" x="1082.6201" fill="rgb(243,109,14)" ry="2"/> | |
<text font-size="12" x="1085.62" y="413.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('WTF::ObjectIdentifier<IPC::Connection::AsyncReplyIDType> IPC::MessageSender::sendWithAsyncReply<Messages::WebPage::RunJavaScriptInFrameInScriptWorld, WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32>(Messages::WebPage::RunJavaScriptInFrameInScriptWorld&&, WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32&&, WTF::OptionSet<IPC::SendOption>) (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >WTF::ObjectIdentifier<IPC::Connection::AsyncReplyIDType> IPC::MessageSender::sendWithAsyncReply<Messages::WebPage::RunJavaScriptInFrameInScriptWorld, WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32>(Messages::WebPage::RunJavaScriptInFrameInScriptWorld&&, WebKit::WebPageProxy::runJavaScriptInFrameInScriptWorld(WebCore::RunJavaScriptParameters&&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>>, API::ContentWorld&, WTF::CompletionHandler<void (std::experimental::fundamentals_v3::expected<WTF::RefPtr<API::SerializedScriptValue, WTF::RawPtrTraits<API::SerializedScriptValue>, WTF::DefaultRefDerefTraits<API::SerializedScriptValue>>, WebCore::ExceptionDetails>&&)>&&)::$_32&&, WTF::OptionSet<IPC::SendOption>) (0.50%)</title> | |
<rect ry="2" fill="rgb(245,146,21)" y="579.0" width="5.9000244" height="15.0" x="1086.16" rx="2"/> | |
<text font-size="12" x="1089.16" y="589.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WebKit::WebPageProxy::sendMessageWithAsyncReply(WTF::UniqueRef<IPC::Encoder>&&, IPC::Connection::AsyncReplyHandler, WTF::OptionSet<IPC::SendOption>) (0.40%)')" onmouseout="c()" onclick="zoom(this)"><title >WebKit::WebPageProxy::sendMessageWithAsyncReply(WTF::UniqueRef<IPC::Encoder>&&, IPC::Connection::AsyncReplyHandler, WTF::OptionSet<IPC::SendOption>) (0.40%)</title> | |
<rect rx="2" y="563.0" width="4.7199707" height="15.0" x="1086.16" fill="rgb(242,70,36)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1089.16" y="573.50"></text> | |
</g> | |
<g onmouseover="s('WebKit::AuxiliaryProcessProxy::sendMessage(WTF::UniqueRef<IPC::Encoder>&&, WTF::OptionSet<IPC::SendOption>, std::__1::optional<IPC::Connection::AsyncReplyHandler>, WebKit::AuxiliaryProcessProxy::ShouldStartProcessThrottlerActivity) (0.40%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >WebKit::AuxiliaryProcessProxy::sendMessage(WTF::UniqueRef<IPC::Encoder>&&, WTF::OptionSet<IPC::SendOption>, std::__1::optional<IPC::Connection::AsyncReplyHandler>, WebKit::AuxiliaryProcessProxy::ShouldStartProcessThrottlerActivity) (0.40%)</title> | |
<rect width="4.7199707" height="15.0" fill="rgb(248,95,29)" ry="2" rx="2" x="1086.16" y="547.0"/> | |
<text x="1089.16" font-size="12" y="557.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>::Activity(WebKit::ProcessThrottler&, WTF::ASCIILiteral) (0.30%)')"><title >WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>::Activity(WebKit::ProcessThrottler&, WTF::ASCIILiteral) (0.30%)</title> | |
<rect x="1086.16" fill="rgb(227,196,42)" width="3.540039" rx="2" height="15.0" ry="2" y="531.0"/> | |
<text y="541.50" font-size="12" font-family="Verdana" x="1089.16"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('WebKit::ProcessThrottler::addActivity(WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>&) (0.30%)')"><title >WebKit::ProcessThrottler::addActivity(WebKit::ProcessThrottler::Activity<(WebKit::ProcessThrottler::ActivityType)0>&) (0.30%)</title> | |
<rect height="15.0" width="3.540039" ry="2" fill="rgb(250,172,15)" rx="2" y="515.0" x="1086.16"/> | |
<text y="525.50" font-family="Verdana" x="1089.16" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.30%)')" onmouseout="c()"><title >WebKit::ProcessThrottler::updateThrottleStateIfNeeded() (0.30%)</title> | |
<rect ry="2" fill="rgb(253,215,21)" height="15.0" x="1086.16" width="3.540039" y="499.0" rx="2"/> | |
<text font-size="12" x="1089.16" font-family="Verdana" y="509.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >WebKit::ProcessThrottler::setThrottleState(WebKit::ProcessThrottleState) (0.30%)</title> | |
<rect fill="rgb(209,122,33)" ry="2" rx="2" y="483.0" width="3.540039" height="15.0" x="1086.16"/> | |
<text y="493.50" x="1089.16" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseover="s('WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.30%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >WebKit::WebProcessProxy::didChangeThrottleState(WebKit::ProcessThrottleState) (0.30%)</title> | |
<rect width="3.540039" height="15.0" rx="2" fill="rgb(248,144,53)" ry="2" x="1086.16" y="467.0"/> | |
<text font-size="12" font-family="Verdana" y="477.50" x="1089.16"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('_os_log_impl (0.30%)')"><title >_os_log_impl (0.30%)</title> | |
<rect y="451.0" height="15.0" rx="2" ry="2" fill="rgb(235,146,43)" width="3.540039" x="1086.16"/> | |
<text font-family="Verdana" x="1089.16" font-size="12" y="461.50"></text> | |
</g> | |
<g onmouseover="s('_os_log (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_os_log (0.30%)</title> | |
<rect rx="2" fill="rgb(225,7,11)" width="3.540039" x="1086.16" ry="2" y="435.0" height="15.0"/> | |
<text y="445.50" font-size="12" font-family="Verdana" x="1089.16"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('_os_log_impl_flatten_and_send (0.30%)')" onmouseout="c()"><title >_os_log_impl_flatten_and_send (0.30%)</title> | |
<rect rx="2" width="3.540039" fill="rgb(207,157,38)" ry="2" y="419.0" height="15.0" x="1086.16"/> | |
<text font-size="12" x="1089.16" y="429.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_os_log_impl_stream (0.30%)')" onmouseout="c()" class="func_g"><title >_os_log_impl_stream (0.30%)</title> | |
<rect y="403.0" x="1086.16" width="3.540039" fill="rgb(230,157,6)" rx="2" height="15.0" ry="2"/> | |
<text font-size="12" y="413.50" x="1089.16" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_os_activity_stream_reflect (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >_os_activity_stream_reflect (0.30%)</title> | |
<rect height="15.0" width="3.540039" fill="rgb(209,48,33)" ry="2" x="1086.16" y="387.0" rx="2"/> | |
<text font-size="12" y="397.50" x="1089.16" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('-[OS_xpc_object dealloc] (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >-[OS_xpc_object dealloc] (0.10%)</title> | |
<rect width="1.1800537" height="15.0" x="1086.16" rx="2" ry="2" y="371.0" fill="rgb(219,142,45)"/> | |
<text font-family="Verdana" y="381.50" font-size="12" x="1089.16"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('_xpc_dictionary_dispose (0.10%)')"><title >_xpc_dictionary_dispose (0.10%)</title> | |
<rect fill="rgb(219,219,3)" height="15.0" y="355.0" width="1.1800537" x="1086.16" ry="2" rx="2"/> | |
<text font-family="Verdana" x="1089.16" y="365.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('_xpc_dictionary_node_free (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_xpc_dictionary_node_free (0.10%)</title> | |
<rect width="1.1800537" ry="2" fill="rgb(227,59,27)" height="15.0" x="1086.16" rx="2" y="339.0"/> | |
<text font-family="Verdana" x="1089.16" y="349.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('dispatch_block_perform (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dispatch_block_perform (0.10%)</title> | |
<rect width="1.1800537" height="15.0" x="1087.3401" rx="2" ry="2" y="371.0" fill="rgb(229,44,47)"/> | |
<text font-family="Verdana" y="381.50" font-size="12" x="1090.34"></text> | |
</g> | |
<g onmouseover="s('_dispatch_block_invoke_direct (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >_dispatch_block_invoke_direct (0.10%)</title> | |
<rect x="1087.3401" rx="2" fill="rgb(254,169,39)" ry="2" height="15.0" y="355.0" width="1.1800537"/> | |
<text font-family="Verdana" x="1090.34" y="365.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('_dispatch_client_callout (0.10%)')" onclick="zoom(this)" onmouseout="c()"><title >_dispatch_client_callout (0.10%)</title> | |
<rect height="15.0" fill="rgb(224,40,33)" ry="2" x="1087.3401" rx="2" y="339.0" width="1.1800537"/> | |
<text x="1090.34" y="349.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('___os_activity_stream_reflect_block_invoke (0.10%)')" class="func_g" onclick="zoom(this)"><title >___os_activity_stream_reflect_block_invoke (0.10%)</title> | |
<rect height="15.0" ry="2" rx="2" fill="rgb(252,87,34)" x="1087.3401" width="1.1800537" y="323.0"/> | |
<text y="333.50" x="1090.34" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_xpc_pipe_simpleroutine (0.10%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >_xpc_pipe_simpleroutine (0.10%)</title> | |
<rect y="307.0" ry="2" fill="rgb(241,84,34)" height="15.0" rx="2" width="1.1800537" x="1087.3401"/> | |
<text font-size="12" font-family="Verdana" y="317.50" x="1090.34"></text> | |
</g> | |
<g onmouseover="s('void IPC::ArgumentCoder<std::__1::tuple<WebCore::RunJavaScriptParameters const&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>> const&, std::__1::pair<WTF::ObjectIdentifier<WebKit::ContentWorldIdentifierType>, WTF::String> const&>, void>::encode<IPC::Encoder, std::__1::tuple<WebCore::RunJavaScriptParameters const&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>> const&, std::__1::pair<WTF::ObjectIdentifier<WebKit::ContentWorldIdentifierType>, WTF::String> const&> const&, 0ul, 1ul, 2ul>(IPC::Encoder&, std::__1::tuple<WebCore::RunJavaScriptParameters const&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>> const&, std::__1::pair<WTF::ObjectIdentifier<WebKit::ContentWorldIdentifierType>, WTF::String> const&> const&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>) (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >void IPC::ArgumentCoder<std::__1::tuple<WebCore::RunJavaScriptParameters const&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>> const&, std::__1::pair<WTF::ObjectIdentifier<WebKit::ContentWorldIdentifierType>, WTF::String> const&>, void>::encode<IPC::Encoder, std::__1::tuple<WebCore::RunJavaScriptParameters const&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>> const&, std::__1::pair<WTF::ObjectIdentifier<WebKit::ContentWorldIdentifierType>, WTF::String> const&> const&, 0ul, 1ul, 2ul>(IPC::Encoder&, std::__1::tuple<WebCore::RunJavaScriptParameters const&, std::__1::optional<WebCore::ProcessQualified<WTF::ObjectIdentifier<WebCore::FrameIdentifierType>>> const&, std::__1::pair<WTF::ObjectIdentifier<WebKit::ContentWorldIdentifierType>, WTF::String> const&> const&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>) (0.10%)</title> | |
<rect rx="2" y="563.0" width="1.1800537" height="15.0" x="1090.88" fill="rgb(209,80,51)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1093.88" y="573.50"></text> | |
</g> | |
<g class="func_g" onmouseover="s('void WebCore::RunJavaScriptParameters::encode<IPC::Encoder>(IPC::Encoder&) const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >void WebCore::RunJavaScriptParameters::encode<IPC::Encoder>(IPC::Encoder&) const (0.10%)</title> | |
<rect ry="2" fill="rgb(205,230,2)" height="15.0" x="1090.88" width="1.1800537" y="547.0" rx="2"/> | |
<text x="1093.88" font-size="12" y="557.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('IPC::Encoder::encodeFixedLengthData(unsigned char const*, unsigned long, unsigned long) (0.10%)')"><title >IPC::Encoder::encodeFixedLengthData(unsigned char const*, unsigned long, unsigned long) (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="531.0" height="15.0" fill="rgb(245,139,22)" x="1090.88" rx="2"/> | |
<text x="1093.88" font-size="12" font-family="Verdana" y="541.50"></text> | |
</g> | |
<g onmouseover="s('0x10319acb4 (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x10319acb4 (0.10%)</title> | |
<rect ry="2" fill="rgb(241,152,54)" y="691.0" width="1.1800537" height="15.0" x="1093.2401" rx="2"/> | |
<text font-size="12" x="1096.24" y="701.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('_dispatch_block_async_invoke2 (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_dispatch_block_async_invoke2 (0.10%)</title> | |
<rect ry="2" fill="rgb(222,3,38)" y="787.0" width="1.1800537" height="15.0" x="1095.6001" rx="2"/> | |
<text font-size="12" x="1098.60" y="797.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('__NSOQSchedule_f (0.10%)')" onmouseout="c()"><title >__NSOQSchedule_f (0.10%)</title> | |
<rect ry="2" fill="rgb(241,228,39)" height="15.0" x="1095.6001" width="1.1800537" y="771.0" rx="2"/> | |
<text font-size="12" x="1098.60" font-family="Verdana" y="781.50"></text> | |
</g> | |
<g onmouseover="s('__NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION__ (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION__ (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="755.0" height="15.0" fill="rgb(254,160,37)" x="1095.6001" rx="2"/> | |
<text font-size="12" x="1098.60" y="765.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('-[NSOperation start] (0.10%)')"><title >-[NSOperation start] (0.10%)</title> | |
<rect ry="2" fill="rgb(205,126,43)" height="15.0" y="739.0" rx="2" width="1.1800537" x="1095.6001"/> | |
<text y="749.50" font-size="12" font-family="Verdana" x="1098.60"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('__NSOPERATION_IS_INVOKING_MAIN__ (0.10%)')"><title >__NSOPERATION_IS_INVOKING_MAIN__ (0.10%)</title> | |
<rect x="1095.6001" ry="2" rx="2" fill="rgb(215,58,29)" height="15.0" y="723.0" width="1.1800537"/> | |
<text y="733.50" font-family="Verdana" x="1098.60" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('-[NSBlockOperation main] (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >-[NSBlockOperation main] (0.10%)</title> | |
<rect x="1095.6001" height="15.0" fill="rgb(223,212,49)" ry="2" y="707.0" rx="2" width="1.1800537"/> | |
<text font-family="Verdana" y="717.50" x="1098.60" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('__NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ (0.10%)')" onmouseout="c()"><title >__NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ (0.10%)</title> | |
<rect y="691.0" height="15.0" ry="2" width="1.1800537" x="1095.6001" fill="rgb(213,25,39)" rx="2"/> | |
<text font-size="12" y="701.50" font-family="Verdana" x="1098.60"></text> | |
</g> | |
<g onmouseover="s('0x19ca1124f (1.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca1124f (1.10%)</title> | |
<rect ry="2" fill="rgb(209,31,0)" y="867.0" width="12.97998" height="15.0" x="1099.1401" rx="2"/> | |
<text font-size="12" x="1102.14" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19ca10023 (1.00%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19ca10023 (1.00%)</title> | |
<rect ry="2" fill="rgb(246,145,9)" height="15.0" x="1099.1401" width="11.800049" y="851.0" rx="2"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('mach_msg (1.00%)')" onmouseout="c()"><title >mach_msg (1.00%)</title> | |
<rect ry="2" fill="rgb(237,57,5)" height="15.0" y="835.0" rx="2" width="11.800049" x="1099.1401"/> | |
<text x="1102.14" font-size="12" font-family="Verdana" y="845.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" onmouseover="s('mach_msg_overwrite (1.00%)')" class="func_g"><title >mach_msg_overwrite (1.00%)</title> | |
<rect width="11.800049" ry="2" y="819.0" height="15.0" fill="rgb(220,213,22)" x="1099.1401" rx="2"/> | |
<text font-size="12" x="1102.14" font-family="Verdana" y="829.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('mach_msg2_internal (1.00%)')"><title >mach_msg2_internal (1.00%)</title> | |
<rect rx="2" width="11.800049" fill="rgb(245,211,36)" ry="2" y="803.0" height="15.0" x="1099.1401"/> | |
<text y="813.50" font-family="Verdana" x="1102.14" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg2_trap (1.00%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_trap (1.00%)</title> | |
<rect y="787.0" x="1099.1401" width="11.800049" fill="rgb(217,68,53)" rx="2" height="15.0" ry="2"/> | |
<text x="1102.14" font-size="12" y="797.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca1119b (0.50%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca1119b (0.50%)</title> | |
<rect ry="2" fill="rgb(228,106,51)" y="867.0" width="5.9000244" height="15.0" x="1112.1201" rx="2"/> | |
<text font-size="12" x="1115.12" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('0x19c9b140f (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >0x19c9b140f (0.10%)</title> | |
<rect ry="2" fill="rgb(243,188,35)" height="15.0" y="851.0" rx="2" width="1.1800537" x="1112.1201"/> | |
<text font-size="12" x="1115.12" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('0x19ca27233 (0.10%)')" onmouseout="c()"><title >0x19ca27233 (0.10%)</title> | |
<rect width="1.1800537" ry="2" y="835.0" height="15.0" fill="rgb(251,125,1)" x="1112.1201" rx="2"/> | |
<text x="1115.12" font-size="12" font-family="Verdana" y="845.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('_UIGestureEnvironmentUpdate (0.10%)')"><title >_UIGestureEnvironmentUpdate (0.10%)</title> | |
<rect fill="rgb(253,167,31)" x="1112.1201" ry="2" rx="2" y="819.0" height="15.0" width="1.1800537"/> | |
<text y="829.50" font-family="Verdana" x="1115.12" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19ca1106b (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca1106b (0.40%)</title> | |
<rect ry="2" fill="rgb(205,182,2)" y="867.0" width="4.7199707" height="15.0" x="1118.0201" rx="2"/> | |
<text font-size="12" x="1121.02" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19cad5ef7 (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x19cad5ef7 (0.30%)</title> | |
<rect ry="2" fill="rgb(224,150,5)" height="15.0" y="851.0" rx="2" width="3.540039" x="1118.0201"/> | |
<text font-size="12" x="1121.02" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('__kdebug_trace64 (0.30%)')" onmouseout="c()" class="func_g"><title >__kdebug_trace64 (0.30%)</title> | |
<rect fill="rgb(220,61,33)" x="1118.0201" ry="2" rx="2" y="835.0" height="15.0" width="3.540039"/> | |
<text x="1121.02" font-size="12" y="845.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca11123 (0.40%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca11123 (0.40%)</title> | |
<rect ry="2" fill="rgb(249,230,51)" y="867.0" width="4.7199707" height="15.0" x="1122.7401" rx="2"/> | |
<text font-size="12" x="1125.74" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca10023 (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x19ca10023 (0.30%)</title> | |
<rect fill="rgb(225,27,38)" x="1122.7401" ry="2" rx="2" y="851.0" height="15.0" width="3.540039"/> | |
<text font-size="12" x="1125.74" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('mach_msg (0.30%)')" onmouseout="c()"><title >mach_msg (0.30%)</title> | |
<rect ry="2" y="835.0" height="15.0" rx="2" width="3.540039" x="1122.7401" fill="rgb(237,223,13)"/> | |
<text font-family="Verdana" x="1125.74" y="845.50" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('mach_msg_overwrite (0.30%)')"><title >mach_msg_overwrite (0.30%)</title> | |
<rect width="3.540039" ry="2" y="819.0" height="15.0" fill="rgb(218,23,23)" x="1122.7401" rx="2"/> | |
<text font-size="12" x="1125.74" y="829.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('mach_msg2_internal (0.30%)')"><title >mach_msg2_internal (0.30%)</title> | |
<rect y="803.0" ry="2" fill="rgb(233,107,33)" height="15.0" rx="2" width="3.540039" x="1122.7401"/> | |
<text y="813.50" font-family="Verdana" x="1125.74" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('mach_msg2_trap (0.30%)')" onmouseout="c()" onclick="zoom(this)"><title >mach_msg2_trap (0.30%)</title> | |
<rect x="1122.7401" rx="2" ry="2" y="787.0" fill="rgb(238,70,9)" width="3.540039" height="15.0"/> | |
<text x="1125.74" font-size="12" y="797.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca113fb (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca113fb (0.30%)</title> | |
<rect ry="2" fill="rgb(224,212,9)" y="867.0" width="3.540039" height="15.0" x="1127.4601" rx="2"/> | |
<text font-size="12" x="1130.46" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_port_extract_member (0.30%)')" onmouseout="c()" class="func_g"><title >mach_port_extract_member (0.30%)</title> | |
<rect y="851.0" fill="rgb(226,17,12)" width="3.540039" height="15.0" ry="2" x="1127.4601" rx="2"/> | |
<text font-size="12" x="1130.46" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_kernelrpc_mach_port_extract_member_trap (0.30%)')" onmouseout="c()"><title >_kernelrpc_mach_port_extract_member_trap (0.30%)</title> | |
<rect ry="2" y="835.0" height="15.0" rx="2" width="3.540039" x="1127.4601" fill="rgb(234,65,25)"/> | |
<text x="1130.46" font-size="12" font-family="Verdana" y="845.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca11167 (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca11167 (0.30%)</title> | |
<rect ry="2" fill="rgb(233,14,17)" y="867.0" width="3.540039" height="15.0" x="1131.0001" rx="2"/> | |
<text font-size="12" x="1134.00" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('mach_port_insert_member (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >mach_port_insert_member (0.30%)</title> | |
<rect y="851.0" fill="rgb(211,68,30)" width="3.540039" height="15.0" ry="2" x="1131.0001" rx="2"/> | |
<text font-size="12" x="1134.00" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('_kernelrpc_mach_port_insert_member_trap (0.30%)')" onmouseout="c()"><title >_kernelrpc_mach_port_insert_member_trap (0.30%)</title> | |
<rect rx="2" ry="2" y="835.0" x="1131.0001" width="3.540039" height="15.0" fill="rgb(224,124,49)"/> | |
<text font-family="Verdana" x="1134.00" y="845.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19ca11333 (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca11333 (0.30%)</title> | |
<rect ry="2" fill="rgb(208,214,47)" y="867.0" width="3.540039" height="15.0" x="1134.5402" rx="2"/> | |
<text font-size="12" x="1137.54" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('__kdebug_trace64 (0.30%)')" onmouseout="c()" class="func_g"><title >__kdebug_trace64 (0.30%)</title> | |
<rect rx="2" ry="2" y="851.0" x="1134.5402" width="3.540039" height="15.0" fill="rgb(206,144,6)"/> | |
<text font-size="12" x="1137.54" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca11213 (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca11213 (0.30%)</title> | |
<rect ry="2" fill="rgb(220,181,0)" y="867.0" width="3.540039" height="15.0" x="1138.0802" rx="2"/> | |
<text font-size="12" x="1141.08" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('__kdebug_trace64 (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >__kdebug_trace64 (0.30%)</title> | |
<rect rx="2" ry="2" y="851.0" x="1138.0802" width="3.540039" height="15.0" fill="rgb(246,14,52)"/> | |
<text font-size="12" x="1141.08" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca1109f (0.30%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca1109f (0.30%)</title> | |
<rect ry="2" fill="rgb(228,169,42)" y="867.0" width="3.540039" height="15.0" x="1141.6202" rx="2"/> | |
<text font-size="12" x="1144.62" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x19c9b140f (0.10%)')" onmouseout="c()" class="func_g"><title >0x19c9b140f (0.10%)</title> | |
<rect rx="2" ry="2" y="851.0" x="1141.6202" width="1.1800537" height="15.0" fill="rgb(208,42,20)"/> | |
<text font-size="12" x="1144.62" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca27233 (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >0x19ca27233 (0.10%)</title> | |
<rect ry="2" height="15.0" y="835.0" rx="2" x="1141.6202" width="1.1800537" fill="rgb(241,219,7)"/> | |
<text x="1144.62" font-size="12" y="845.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('HTUpdateHangTracing (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >HTUpdateHangTracing (0.10%)</title> | |
<rect y="819.0" height="15.0" rx="2" ry="2" x="1141.6202" width="1.1800537" fill="rgb(224,124,42)"/> | |
<text font-size="12" x="1144.62" font-family="Verdana" y="829.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca11443 (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca11443 (0.20%)</title> | |
<rect ry="2" fill="rgb(231,68,47)" y="867.0" width="2.3599854" height="15.0" x="1145.1603" rx="2"/> | |
<text font-size="12" x="1148.16" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca110b7 (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca110b7 (0.20%)</title> | |
<rect ry="2" fill="rgb(253,141,36)" y="867.0" width="2.3599854" height="15.0" x="1147.5203" rx="2"/> | |
<text font-size="12" x="1150.52" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca117ab (0.20%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca117ab (0.20%)</title> | |
<rect ry="2" fill="rgb(214,161,15)" y="867.0" width="2.3599854" height="15.0" x="1149.8802" rx="2"/> | |
<text font-size="12" x="1152.88" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('__kdebug_trace64 (0.20%)')" onmouseout="c()"><title >__kdebug_trace64 (0.20%)</title> | |
<rect y="851.0" height="15.0" rx="2" ry="2" x="1149.8802" width="2.3599854" fill="rgb(213,141,22)"/> | |
<text font-size="12" x="1152.88" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca11393 (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca11393 (0.10%)</title> | |
<rect ry="2" fill="rgb(254,192,36)" y="867.0" width="1.1800537" height="15.0" x="1152.2402" rx="2"/> | |
<text font-size="12" x="1155.24" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('mach_port_extract_member (0.10%)')" onmouseout="c()"><title >mach_port_extract_member (0.10%)</title> | |
<rect y="851.0" height="15.0" rx="2" ry="2" x="1152.2402" width="1.1800537" fill="rgb(239,219,45)"/> | |
<text font-size="12" x="1155.24" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('_kernelrpc_mach_port_extract_member_trap (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_kernelrpc_mach_port_extract_member_trap (0.10%)</title> | |
<rect rx="2" ry="2" x="1152.2402" width="1.1800537" fill="rgb(255,188,22)" y="835.0" height="15.0"/> | |
<text font-family="Verdana" x="1155.24" y="845.50" font-size="12"></text> | |
</g> | |
<g onmouseover="s('0x19ca117bf (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca117bf (0.10%)</title> | |
<rect ry="2" fill="rgb(222,69,35)" y="867.0" width="1.1800537" height="15.0" x="1153.4203" rx="2"/> | |
<text font-size="12" x="1156.42" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('0x19ca109f3 (0.10%)')" onmouseout="c()" class="func_g"><title >0x19ca109f3 (0.10%)</title> | |
<rect y="851.0" height="15.0" rx="2" ry="2" x="1153.4203" width="1.1800537" fill="rgb(217,176,54)"/> | |
<text font-size="12" x="1156.42" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('0x19ca111d7 (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca111d7 (0.10%)</title> | |
<rect ry="2" fill="rgb(239,148,15)" y="867.0" width="1.1800537" height="15.0" x="1154.6003" rx="2"/> | |
<text font-size="12" x="1157.60" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('mach_port_insert_member (0.10%)')" onmouseout="c()" class="func_g"><title >mach_port_insert_member (0.10%)</title> | |
<rect width="1.1800537" ry="2" fill="rgb(225,66,40)" x="1154.6003" y="851.0" rx="2" height="15.0"/> | |
<text font-size="12" x="1157.60" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('_kernelrpc_mach_port_insert_member_trap (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >_kernelrpc_mach_port_insert_member_trap (0.10%)</title> | |
<rect rx="2" height="15.0" width="1.1800537" fill="rgb(240,89,45)" x="1154.6003" y="835.0" ry="2"/> | |
<text x="1157.60" font-size="12" y="845.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('0x19ca1126b (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >0x19ca1126b (0.10%)</title> | |
<rect ry="2" fill="rgb(246,213,29)" y="867.0" width="1.1800537" height="15.0" x="1155.7804" rx="2"/> | |
<text font-size="12" x="1158.78" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('_dispatch_runloop_root_queue_perform_4CF (0.10%)')" onmouseout="c()" class="func_g"><title >_dispatch_runloop_root_queue_perform_4CF (0.10%)</title> | |
<rect rx="2" height="15.0" width="1.1800537" fill="rgb(211,175,21)" x="1155.7804" y="851.0" ry="2"/> | |
<text font-size="12" x="1158.78" font-family="Verdana" y="861.50"></text> | |
</g> | |
<g onmouseover="s('_UIApplicationMainPreparations (0.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >_UIApplicationMainPreparations (0.10%)</title> | |
<rect ry="2" fill="rgb(243,211,42)" y="915.0" width="1.1800537" height="15.0" x="1173.4801" rx="2"/> | |
<text font-size="12" x="1176.48" y="925.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*) (1.10%)')" onclick="zoom(this)" class="func_g" onmouseout="c()"><title >dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*) (1.10%)</title> | |
<rect ry="2" fill="rgb(223,42,52)" y="947.0" width="12.97998" height="15.0" x="1174.66" rx="2"/> | |
<text font-size="12" x="1177.66" y="957.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dyld4::PrebuiltLoaderSet::makeLaunchSet(Diagnostics&, dyld4::RuntimeState&, dyld4::MissingPaths const&) (0.30%)')" onmouseout="c()" class="func_g"><title >dyld4::PrebuiltLoaderSet::makeLaunchSet(Diagnostics&, dyld4::RuntimeState&, dyld4::MissingPaths const&) (0.30%)</title> | |
<rect fill="rgb(254,135,31)" y="931.0" x="1174.66" width="3.540039" ry="2" rx="2" height="15.0"/> | |
<text font-size="12" x="1177.66" font-family="Verdana" y="941.50"></text> | |
</g> | |
<g onmouseover="s('dyld4::PrebuiltObjC::make(Diagnostics&, dyld4::RuntimeState&) (0.30%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dyld4::PrebuiltObjC::make(Diagnostics&, dyld4::RuntimeState&) (0.30%)</title> | |
<rect fill="rgb(213,185,9)" x="1174.66" y="915.0" rx="2" width="3.540039" height="15.0" ry="2"/> | |
<text x="1177.66" font-size="12" y="925.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dyld4::PrebuiltObjC::forEachSelectorReferenceToUnique(dyld4::RuntimeState&, dyld4::Loader const*, unsigned long long, dyld4::ObjCBinaryInfo const&, void (unsigned long long, unsigned long long, char const*) block_pointer) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dyld4::PrebuiltObjC::forEachSelectorReferenceToUnique(dyld4::RuntimeState&, dyld4::Loader const*, unsigned long long, dyld4::ObjCBinaryInfo const&, void (unsigned long long, unsigned long long, char const*) block_pointer) (0.10%)</title> | |
<rect x="1174.66" height="15.0" y="899.0" fill="rgb(207,73,45)" rx="2" width="1.1800537" ry="2"/> | |
<text font-size="12" x="1177.66" font-family="Verdana" y="909.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&) (0.20%)')" onmouseout="c()" class="func_g"><title >dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&) (0.20%)</title> | |
<rect fill="rgb(212,134,27)" y="931.0" x="1178.2001" width="2.3599854" ry="2" rx="2" height="15.0"/> | |
<text font-size="12" x="1181.20" font-family="Verdana" y="941.50"></text> | |
</g> | |
<g onmouseover="s('dyld3::MachOFile::forEachDependentDylib(void (char const*, bool, bool, bool, unsigned int, unsigned int, bool&) block_pointer) const (0.20%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dyld3::MachOFile::forEachDependentDylib(void (char const*, bool, bool, bool, unsigned int, unsigned int, bool&) block_pointer) const (0.20%)</title> | |
<rect fill="rgb(228,18,28)" x="1178.2001" y="915.0" rx="2" width="2.3599854" height="15.0" ry="2"/> | |
<text x="1181.20" font-size="12" y="925.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.20%)</title> | |
<rect ry="2" height="15.0" x="1178.2001" width="2.3599854" rx="2" y="899.0" fill="rgb(234,153,5)"/> | |
<text font-size="12" x="1181.20" font-family="Verdana" y="909.50"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('invocation function for block in dyld3::MachOFile::forEachDependentDylib(void (char const*, bool, bool, bool, unsigned int, unsigned int, bool&) block_pointer) const (0.20%)')"><title >invocation function for block in dyld3::MachOFile::forEachDependentDylib(void (char const*, bool, bool, bool, unsigned int, unsigned int, bool&) block_pointer) const (0.20%)</title> | |
<rect y="883.0" rx="2" fill="rgb(246,151,48)" x="1178.2001" width="2.3599854" height="15.0" ry="2"/> | |
<text y="893.50" font-family="Verdana" x="1181.20" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('invocation function for block in dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&) (0.20%)')" onmouseout="c()" onclick="zoom(this)"><title >invocation function for block in dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&) (0.20%)</title> | |
<rect x="1178.2001" width="2.3599854" fill="rgb(207,115,9)" y="867.0" rx="2" ry="2" height="15.0"/> | |
<text x="1181.20" font-size="12" y="877.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) (0.20%)')" onmouseout="c()"><title >dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) (0.20%)</title> | |
<rect ry="2" fill="rgb(255,46,45)" y="851.0" x="1178.2001" rx="2" width="2.3599854" height="15.0"/> | |
<text font-size="12" y="861.50" font-family="Verdana" x="1181.20"></text> | |
</g> | |
<g onmouseover="s('dyld4::Loader::forEachPath(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) (0.20%)')" class="func_g" onclick="zoom(this)" onmouseout="c()"><title >dyld4::Loader::forEachPath(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) (0.20%)</title> | |
<rect y="835.0" width="2.3599854" rx="2" x="1178.2001" height="15.0" fill="rgb(247,6,7)" ry="2"/> | |
<text font-size="12" y="845.50" x="1181.20" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dyld4::ProcessConfig::PathOverrides::forEachPathVariant(char const*, dyld3::Platform, bool, bool, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) const (0.20%)')" onmouseout="c()" onclick="zoom(this)" class="func_g"><title >dyld4::ProcessConfig::PathOverrides::forEachPathVariant(char const*, dyld3::Platform, bool, bool, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) const (0.20%)</title> | |
<rect ry="2" fill="rgb(248,32,51)" y="819.0" height="15.0" width="2.3599854" rx="2" x="1178.2001"/> | |
<text x="1181.20" y="829.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dyld4::Loader::forEachResolvedAtPathVar(dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, dyld4::ProcessConfig::PathOverrides::Type, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) (0.20%)')" onclick="zoom(this)"><title >dyld4::Loader::forEachResolvedAtPathVar(dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, dyld4::ProcessConfig::PathOverrides::Type, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) (0.20%)</title> | |
<rect width="2.3599854" rx="2" y="803.0" x="1178.2001" fill="rgb(222,18,26)" height="15.0" ry="2"/> | |
<text x="1181.20" font-size="12" y="813.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('invocation function for block in dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >invocation function for block in dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) (0.10%)</title> | |
<rect rx="2" width="1.1800537" height="15.0" y="787.0" x="1178.2001" fill="rgb(206,77,40)" ry="2"/> | |
<text y="797.50" font-family="Verdana" font-size="12" x="1181.20"></text> | |
</g> | |
<g onmouseover="s('dyld3::MachOFile::forEachRPath(void (char const*, bool&) block_pointer) const (0.10%)')" onmouseout="c()" class="func_g" onclick="zoom(this)"><title >dyld3::MachOFile::forEachRPath(void (char const*, bool&) block_pointer) const (0.10%)</title> | |
<rect rx="2" width="1.1800537" height="15.0" y="787.0" x="1179.3801" fill="rgb(250,70,7)" ry="2"/> | |
<text y="797.50" font-family="Verdana" font-size="12" x="1182.38"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onmouseover="s('dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.10%)')" onclick="zoom(this)"><title >dyld3::MachOFile::forEachLoadCommand(Diagnostics&, void (load_command const*, bool&) block_pointer) const (0.10%)</title> | |
<rect y="771.0" width="1.1800537" x="1179.3801" rx="2" fill="rgb(229,172,47)" height="15.0" ry="2"/> | |
<text x="1182.38" font-family="Verdana" y="781.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseover="s('invocation function for block in dyld4::Loader::forEachResolvedAtPathVar(dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, dyld4::ProcessConfig::PathOverrides::Type, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >invocation function for block in dyld4::Loader::forEachResolvedAtPathVar(dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, dyld4::ProcessConfig::PathOverrides::Type, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) (0.10%)</title> | |
<rect width="1.1800537" x="1179.3801" fill="rgb(205,227,20)" rx="2" height="15.0" y="755.0" ry="2"/> | |
<text y="765.50" x="1182.38" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" onclick="zoom(this)" onmouseover="s('invocation function for block in dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) (0.10%)')"><title >invocation function for block in dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) (0.10%)</title> | |
<rect width="1.1800537" x="1179.3801" y="739.0" rx="2" fill="rgb(209,186,4)" height="15.0" ry="2"/> | |
<text x="1182.38" font-family="Verdana" y="749.50" font-size="12"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) (0.10%)')" onclick="zoom(this)"><title >dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) (0.10%)</title> | |
<rect height="15.0" rx="2" x="1179.3801" width="1.1800537" y="723.0" fill="rgb(209,92,44)" ry="2"/> | |
<text font-size="12" font-family="Verdana" x="1182.38" y="733.50"></text> | |
</g> | |
<g onmouseout="c()" onmouseover="s('dyld4::SyscallDelegate::withReadOnlyMappedFile(Diagnostics&, char const*, bool, void (void const*, unsigned long, bool, dyld4::FileID const&, char const*) block_pointer) const (0.10%)')" class="func_g" onclick="zoom(this)"><title >dyld4::SyscallDelegate::withReadOnlyMappedFile(Diagnostics&, char const*, bool, void (void const*, unsigned long, bool, dyld4::FileID const&, char const*) block_pointer) const (0.10%)</title> | |
<rect fill="rgb(232,104,4)" height="15.0" ry="2" width="1.1800537" y="707.0" rx="2" x="1179.3801"/> | |
<text x="1182.38" font-size="12" font-family="Verdana" y="717.50"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) (0.10%)')" onmouseout="c()"><title >invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) (0.10%)</title> | |
<rect ry="2" width="1.1800537" rx="2" fill="rgb(225,61,2)" y="691.0" x="1179.3801" height="15.0"/> | |
<text font-size="12" x="1182.38" y="701.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseover="s('dyld4::JustInTimeLoader::withRegions(dyld3::MachOFile const*, void (dyld3::Array<dyld4::Loader::Region> const&) block_pointer) (0.10%)')" onclick="zoom(this)" onmouseout="c()" class="func_g"><title >dyld4::JustInTimeLoader::withRegions(dyld3::MachOFile const*, void (dyld3::Array<dyld4::Loader::Region> const&) block_pointer) (0.10%)</title> | |
<rect width="1.1800537" ry="2" x="1179.3801" height="15.0" y="675.0" fill="rgb(205,41,14)" rx="2"/> | |
<text y="685.50" font-family="Verdana" font-size="12" x="1182.38"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseout="c()" onmouseover="s('invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) (0.10%)')"><title >invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) (0.10%)</title> | |
<rect height="15.0" y="659.0" fill="rgb(242,52,38)" rx="2" ry="2" width="1.1800537" x="1179.3801"/> | |
<text y="669.50" x="1182.38" font-size="12" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onclick="zoom(this)" onmouseover="s('dyld4::Loader::mapSegments(Diagnostics&, dyld4::RuntimeState&, char const*, unsigned long long, dyld4::Loader::CodeSignatureInFile const&, bool, dyld3::Array<dyld4::Loader::Region> const&, bool, bool, dyld4::Loader::FileValidationInfo const&) (0.10%)')"><title >dyld4::Loader::mapSegments(Diagnostics&, dyld4::RuntimeState&, char const*, unsigned long long, dyld4::Loader::CodeSignatureInFile const&, bool, dyld3::Array<dyld4::Loader::Region> const&, bool, bool, dyld4::Loader::FileValidationInfo const&) (0.10%)</title> | |
<rect x="1179.3801" fill="rgb(224,222,16)" y="643.0" height="15.0" width="1.1800537" rx="2" ry="2"/> | |
<text y="653.50" font-family="Verdana" font-size="12" x="1182.38"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dyld4::SyscallDelegate::fcntl(int, int, void*) const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dyld4::SyscallDelegate::fcntl(int, int, void*) const (0.10%)</title> | |
<rect ry="2" y="627.0" height="15.0" width="1.1800537" x="1179.3801" fill="rgb(206,130,1)" rx="2"/> | |
<text font-size="12" x="1182.38" y="637.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('fcntl (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >fcntl (0.10%)</title> | |
<rect height="15.0" fill="rgb(221,75,53)" rx="2" ry="2" x="1179.3801" y="611.0" width="1.1800537"/> | |
<text font-size="12" y="621.50" font-family="Verdana" x="1182.38"></text> | |
</g> | |
<g class="func_g" onmouseout="c()" onmouseover="s('__fcntl (0.10%)')" onclick="zoom(this)"><title >__fcntl (0.10%)</title> | |
<rect height="15.0" x="1179.3801" width="1.1800537" ry="2" rx="2" y="595.0" fill="rgb(216,72,18)"/> | |
<text x="1182.38" y="605.50" font-family="Verdana" font-size="12"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseover="s('dyld4::APIs::runAllInitializersForMain() (0.20%)')" onmouseout="c()" class="func_g"><title >dyld4::APIs::runAllInitializersForMain() (0.20%)</title> | |
<rect fill="rgb(242,96,2)" y="931.0" x="1180.56" width="2.3599854" ry="2" rx="2" height="15.0"/> | |
<text font-size="12" x="1183.56" font-family="Verdana" y="941.50"></text> | |
</g> | |
<g onmouseover="s('dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const (0.10%)')" class="func_g" onmouseout="c()" onclick="zoom(this)"><title >dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const (0.10%)</title> | |
<rect fill="rgb(228,181,40)" x="1180.56" y="915.0" rx="2" width="1.1800537" height="15.0" ry="2"/> | |
<text x="1183.56" font-size="12" y="925.50" font-family="Verdana"></text> | |
</g> | |
<g class="func_g" onmouseover="s('dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const::$_1::operator()() const (0.10%)')" onmouseout="c()" onclick="zoom(this)"><title >dyld4::Loader::runInitializersBottomUpPlusUpwardLinks(dyld4::RuntimeState&) const::$_1::operator()() const (0.10%)</title> | |
<rect fill="rgb(227,191,13)" rx="2" ry="2" width="1.1800537" height="15.0" x="1180.56" y="899.0"/> | |
<text font-size="12" x="1183.56" font-family="Verdana" y="909.50"></text> | |
</g> | |
<g onclick="zoom(this)" onmouseout="c()" class="func_g" onmouseover="s('dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&, dyld3::Array<dyld4::Loader const*>&) const (0.10%)')"><title >dyld4::Loader::runInitializersBottomUp(dyld4::RuntimeState&, dyld3::Array<dyld4::Loader const*>&) const (0.10%)</title> | |
<rect width="1.1800537" fill="rgb(233,52,53)" x="1180.56" rx="2" height="15.0" ry="2" y="883.0"/> | |
<text x="1183.56" font-size="12" y="893.50" font-family="Verdana"></text> | |
</g> | |
<g onclick="zoom(this)" class="func_g" onmouseover="s('dyld4::JustInTimeLoader::applyFixups(Diagnostics&, dyld4::RuntimeState&, dyld4::DyldCacheDataConstLazyScopedWriter&, bool) const (0.10%)')" onmouseout="c()"><title >dyld4::JustInTimeLoader::applyFixups(Diagnostics&, dyld4::RuntimeState&, dyld4::DyldCacheDataConstLazyScopedWriter&, bool) const (0.10%)</title> | |
<rect fill="rgb(214,72,10)" y="931.0" x="1182.92" width="1.1800537" ry="2" rx="2" height="15.0"/> | |
<text font-size="12" x="1185.92" font-family="Verdana" y="941.50"></text> | |
</g> | |
<g onmouseout="c()" onclick="zoom(this)" class="func_g" onmouseover="s('dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)')"><title >dyld3::MachOAnalyzer::withVMLayout(Diagnostics&, void (mach_o::Layout const&) block_pointer) const (0.10%)</title> | |
<rect fill="rgb(241,71,7)" x="1182.92" y="915.0" rx="2" width="1.1800537" height="15.0" ry="2"/> | |
<text x="1185.92" font-size="12" font-family="Verdana" y="925.50"></text> | |
</g> | |
<g onmouseover="s('invocation function for block in dyld4::JustInTimeLoader::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" onmouseout="c()" onclick="zoom(this)"><title >invocation function for block in dyld4::JustInTimeLoader::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(215,93,43)" rx="2" ry="2" width="1.1800537" height="15.0" x="1182.92" y="899.0"/> | |
<text font-size="12" x="1185.92" y="909.50" font-family="Verdana"></text> | |
</g> | |
<g onmouseout="c()" class="func_g" 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 y="883.0" height="15.0" width="1.1800537" rx="2" x="1182.92" fill="rgb(252,171,28)" ry="2"/> | |
<text y="893.50" font-family="Verdana" x="1185.92" font-size="12"></text> | |
</g> | |
<g class="func_g" onclick="zoom(this)" onmouseover="s('mach_o::Fixups::forEachBindUnified_Opcodes(Diagnostics&, bool, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&, bool&) block_pointer) const (0.10%)')" onmouseout="c()"><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 ry="2" height="15.0" x="1182.92" width="1.1800537" fill="rgb(252,170,47)" rx="2" y="867.0"/> | |
<text font-size="12" x="1185.92" font-family="Verdana" y="877.50"></text> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment