Lines Matching refs:row
370 traceRow.onThreadHandler = ((row, ctx) => {
380 row.clearCanvas();
381 row.c!.beginPath();
382 row.drawLines();
386 row.drawSelection();
387 row.c!.closePath();
426 traceRow.onThreadHandler = (row, ctx) => {
436 row.clearCanvas();
437 row.drawLines();
438 row.c!.beginPath();
442 row.drawSelection();
443 row.c!.closePath();
446 row.c!.globalAlpha = 0.8
447 row.c!.fillStyle = "#f0f0f0"
448 row.c!.fillRect(0, 5, textMetrics.width + 8, 18)
449 row.c!.globalAlpha = 1
450 row.c!.fillStyle = "#333"
471 fpsRow.onDrawHandler = (row, ctx) => {
532 processRow.onThreadHandler = (row, ctx) => {
542 row.clearCanvas();
543 row.drawLines();
544 row.c!.beginPath();
548 row.drawSelection();
549 row.c!.closePath();
559 let row = new TraceRowObject<ProcessMemStruct>(); variable
560 row.rowId = `${mem.trackId}`
561 row.rowType = TraceRow.ROW_TYPE_MEM
562 row.rowParentId = `${it.pid}`
563 row.rowHidden = !processRow.expansion
564 row.rowHeight = 40
565 row.frame = new Rect(0, 0, this.rowsEL.clientWidth - 248, row.rowHeight)
566 row.name = `${mem.trackName}`;
567 row.children = true;
568 row.supplier = () => queryProcessMemData(mem.trackId).then(res => {
585 row.onThreadHandler = (r, ctx) => {
587 list: row.must ? row.dataList : undefined,
591 frame: row.frame
593 row.dataListCache = res;
594 row.must = false;
605 objs.push(row);