Lines Matching refs:cursorLocation

20883       var cursorLocation = this.get2DCursorLocation(),
20884 lineIndex = cursorLocation.lineIndex,
20885 charIndex = cursorLocation.charIndex,
22136 var cursorLocation = this.get2DCursorLocation(),
22137 lineIndex = cursorLocation.lineIndex,
22138 charIndex = cursorLocation.charIndex;
22164 var cursorLocation = this.get2DCursorLocation(this.selectionStart + i),
22165 lineIndex = cursorLocation.lineIndex,
22166 charIndex = cursorLocation.charIndex;
22195 var cursorLocation = this.get2DCursorLocation(index),
22196 lineIndex = cursorLocation.lineIndex,
22197 charIndex = cursorLocation.charIndex;
22685 cursorLocation = this.get2DCursorLocation(selectionProp);
22688 if (cursorLocation.lineIndex === this._textLines.length - 1 || e.metaKey || e.keyCode === 34) {
22694 var widthOfSameLineBeforeCursor = this._getLineWidth(this.ctx, cursorLocation.lineIndex);
22698 lineIndex = cursorLocation.lineIndex;
22706 cursorLocation, textOnNextLine, widthOfCharsOnSameLineBeforeCursor);
22714 …_getIndexOnNextLine: function(cursorLocation, textOnNextLine, widthOfCharsOnSameLineBeforeCursor) { argument
22715 var lineIndex = cursorLocation.lineIndex + 1,
22821 cursorLocation = this.get2DCursorLocation(selectionProp);
22823 if (cursorLocation.lineIndex === 0 || e.metaKey || e.keyCode === 33) {
22831 widthOfSameLineBeforeCursor = this._getLineWidth(this.ctx, cursorLocation.lineIndex),
22834 lineIndex = cursorLocation.lineIndex;
22842 cursorLocation, textOnPreviousLine, widthOfCharsOnSameLineBeforeCursor);
22850 …_getIndexOnPrevLine: function(cursorLocation, textOnPreviousLine, widthOfCharsOnSameLineBeforeCurs… argument
22852 var lineIndex = cursorLocation.lineIndex - 1,