Searched refs:selectionStart (Results 1 – 4 of 4) sorted by relevance
660 this.selectionStart = null;673 this.selectionStart =675 this.selectionEnd = this.selectionStart + 1;688 if (this.selectionStart !== null) {690 if (Math.abs(x - this.selectionStart) < 10) {691 this.selectionStart = null;701 let start = this.selectionStart === null ? 0 : this.selectionStart;732 if (this.selectionStart !== null && this.selectionEnd !== null) {734 left = Math.min(this.selectionStart, this.selectionEnd);735 right = Math.max(this.selectionStart, this.selectionEnd);[all …]
163 final int selectionStart = getSelectionStart(); in hasSelection() local166 return selectionStart >= 0 && selectionStart != selectionEnd; in hasSelection()
49 protected int selectionStart = -1; field in ShadowTextView
271 int selectionStart = Math.min(mContentText.getSelectionStart(), mContentText.getSelectionEnd()); in insertContent() local273 mContentText.getEditableText().replace(selectionStart, selectionEnd, text); in insertContent()