Lines Matching refs:endLine
210 endLine, // for multi-line selections, the last character position of the last line
295 endLine = selEnd;
299 endLine = selEnd - 1;
303 endLine = text.indexOf('\n', selEnd);
304 if (endLine === -1) {
305 endLine = text.length;
316 text.slice(startLine, endLine).replace(/\n/g, function () {
319 }) + text.slice(endLine);
420 endLine = text.indexOf('\n', selStart);
423 if (endLine === -1) {
424 endLine = text.length;
428 whitespace = text.slice(startLine, endLine).match(/^[ \t]*/)[0];