Home | History | Annotate | Download | only in front-end

Lines Matching refs:endColumn

949             this._setCaretLocation(range.endLine, range.endColumn, true);
973 if (range.startLine > range.endLine || (range.startLine === range.endLine && range.startColumn > range.endColumn))
974 range = new WebInspector.TextRange(range.endLine, range.endColumn, range.startLine, range.startColumn);
981 this._setCaretLocation(newRange.endLine, newRange.endColumn, true);
1208 this._markedRangeElement = highlightSearchResult(lineRow, this._rangeToMark.startColumn, this._rangeToMark.endColumn - this._rangeToMark.startColumn);
1254 var end = range.isEmpty() ? start : this._positionToSelection(range.endLine, range.endColumn);
1521 var endColumn = this._textModel.lineLength(endLine - 1);
1531 for (var i = 0; i < endColumn && i < line2.length; ++i) {
1532 if (startLine === endLine - 1 && endColumn - i <= startColumn)
1534 if (line1[endColumn - i - 1] !== line2[line2.length - i - 1])
1538 endColumn -= i;
1550 var oldRange = new WebInspector.TextRange(startLine, startColumn, endLine - 1, endColumn);
1571 if (this._lastEditedRange && (!text || text.indexOf("\n") !== -1 || this._lastEditedRange.endLine !== range.startLine || this._lastEditedRange.endColumn !== range.startColumn))