Searched refs:addedWord (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DEditor.java3861 final String addedWord = bundle.getString("word");
3862 onUserDictionaryAdded(originalWord, addedWord);
3869 private void onUserDictionaryAdded(String originalWord, String addedWord) { argument
3870 if (TextUtils.isEmpty(mOriginalWord) || TextUtils.isEmpty(addedWord)) {
3879 if (originalWord.equals(addedWord)) {
3887 mTextView.replaceText_internal(mWordStart, mWordEnd, addedWord);
3889 final int newCursorPosition = mWordStart + addedWord.length();

Completed in 29 milliseconds