Home | History | Annotate | Download | only in src

Lines Matching full:lines

775   // Default is ten lines starting five lines before the current location.
778 // line. Set it to start from 5 lines before the current location.
781 // source start line. Set it to start from 1 lines before the current
787 var lines = 10;
793 from = Debug.State.displaySourceStartLine - lines;
796 lines = parseInt(args[1]) - from + 1; // inclusive of the ending line.
801 Debug.State.displaySourceEndLine = from + lines - 1;
802 var sourceArgs = '' + from + ' ' + lines;
812 // Default is ten lines starting five lines before the current location.
814 var lines = 10;
820 lines = parseInt(args[1]);
826 if (lines < 0) lines = 10;
831 request.arguments.toLine = from + lines;
1221 print('source [from line [num lines]]');
1548 var lines = source.split('\n');
1549 var maxdigits = 1 + Math.floor(log10(from_line + lines.length));
1554 for (var num = 0; num < lines.length; num++) {
1556 if (num == (lines.length - 1) && lines[num].length == 0) {
1573 result += lines[num];
1607 result += ' (lines: ';