Home | History | Annotate | Download | only in profviz

Lines Matching refs:Row

45   var kDeoptRow = 7;                // Row displaying deopts.
412 function DrawBar(row, color, start, end, width) {
413 DrawBarBase(color, start, end, row + width, row - width);
416 function DrawHalfBar(row, color, start, end, width) {
417 DrawBarBase(color, start, end, row, row - width);
481 var row = MergeRanges(TicksToRanges(code_kind.in_execution));
482 for (var j = 0; j < row.length; j++) {
484 row[j].start, row[j].end, kExecutionFrameWidth);
490 row = MergeRanges(TicksToRanges(code_kind.stack_frames[i]));
491 for (var j = 0; j < row.length; j++) {
493 row[j].start, row[j].end, kStackFrameWidth);