Home
last modified time | relevance | path

Searched refs:splitIfTooBig (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/ui/src/frontend/
Dflamegraph_unittest.ts15 import {splitIfTooBig} from './flamegraph';
20 const lineSplitter = splitIfTooBig(text, 7 + 32, text.length);
31 const lineSplitter = splitIfTooBig(text, 10, 5);
39 const lineSplitter = splitIfTooBig(text, text.length + 32, text.length);
47 const lineSplitter = splitIfTooBig(text, text.length / 2 + 32, text.length);
Dflamegraph.ts247 splitIfTooBig(nameText, width, ctx.measureText(nameText).width);
253 splitIfTooBig(mappingText, width, ctx.measureText(mappingText).width);
265 lineSplitter = splitIfTooBig(
280 lineSplitter = splitIfTooBig(
401 export function splitIfTooBig( function