Home | History | Annotate | Download | only in settings

Lines Matching full:word

51         UserDictionary.Words._ID, UserDictionary.Words.WORD
54 // Either the locale is empty (means the word is applicable to all locales)
55 // or the word equals our current locale
59 private static final String DELETE_SELECTION = UserDictionary.Words.WORD + "=?";
61 private static final String EXTRA_WORD = "word";
70 /** The word being edited in the dialog (null means the user is adding a word). */
102 String word = getIntent().getStringExtra(EXTRA_WORD);
104 if (word != null) {
105 showAddOrEditDialog(word);
128 "UPPER(" + UserDictionary.Words.WORD + ")");
134 new String[] { UserDictionary.Words.WORD },
161 String word = getWord(adapterMenuInfo.position);
162 if (word == null) return true;
166 deleteWord(word);
170 showAddOrEditDialog(word);
201 mCursor.getColumnIndexOrThrow(UserDictionary.Words.WORD));
242 private void onAddOrEditFinished(String word) {
244 // The user was editing a word, so do a delete/add
249 deleteWord(word);
251 // TODO: present UI for picking whether to add word to all locales, or current.
252 UserDictionary.Words.addWord(this, word.toString(),
258 private void deleteWord(String word) {
260 new String[] { word });
269 int wordColIndex = c.getColumnIndexOrThrow(UserDictionary.Words.WORD);