Home
last modified time | relevance | path

Searched refs:dragSourceStart (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
DEditor.java2532 int dragSourceStart = dragLocalState.start; in onDrop() local
2534 if (max <= dragSourceStart) { in onDrop()
2537 dragSourceStart += shift; in onDrop()
2542 mTextView.deleteText_internal(dragSourceStart, dragSourceEnd); in onDrop()
2545 final int prevCharIdx = Math.max(0, dragSourceStart - 1); in onDrop()
2546 final int nextCharIdx = Math.min(mTextView.getText().length(), dragSourceStart + 1); in onDrop()