Home | History | Annotate | Download | only in profviz

Lines Matching refs:Row

45   var kDeoptRow = 7;                // Row displaying deopts.
401 function DrawBar(row, color, start, end, width) {
402 DrawBarBase(color, start, end, row + width, row - width);
405 function DrawHalfBar(row, color, start, end, width) {
406 DrawBarBase(color, start, end, row, row - width);
464 var row = MergeRanges(TicksToRanges(code_kind.in_execution));
465 for (var j = 0; j < row.length; j++) {
467 row[j].start, row[j].end, kExecutionFrameWidth);
473 row = MergeRanges(TicksToRanges(code_kind.stack_frames[i]));
474 for (var j = 0; j < row.length; j++) {
476 row[j].start, row[j].end, kStackFrameWidth);