Home | History | Annotate | Download | only in profviz

Lines Matching refs:Row

45   var kDeoptRow = 7;                // Row displaying deopts.
414 function DrawBar(row, color, start, end, width) {
415 DrawBarBase(color, start, end, row + width, row - width);
418 function DrawHalfBar(row, color, start, end, width) {
419 DrawBarBase(color, start, end, row, row - width);
483 var row = MergeRanges(TicksToRanges(code_kind.in_execution));
484 for (var j = 0; j < row.length; j++) {
486 row[j].start, row[j].end, kExecutionFrameWidth);
492 row = MergeRanges(TicksToRanges(code_kind.stack_frames[i]));
493 for (var j = 0; j < row.length; j++) {
495 row[j].start, row[j].end, kStackFrameWidth);