/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/ |
H A D | UserDictionarySettings.java | 28 import android.provider.UserDictionary; 55 { UserDictionary.Words._ID, UserDictionary.Words.WORD}; 57 { UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT}; 66 UserDictionary.Words.WORD, 70 UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT 90 UserDictionary.Words.LOCALE + "=?"; 92 UserDictionary.Words.LOCALE + " is null"; 95 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?"; 98 + UserDictionary.Words.SHORTCUT + "=''"; 100 UserDictionary.Words.WORD + "=?"; [all …]
|
H A D | UserDictionaryAddWordContents.java | 24 import android.provider.UserDictionary; 194 private static final String[] HAS_WORD_PROJECTION = { UserDictionary.Words.WORD }; 195 private static final String HAS_WORD_SELECTION_ONE_LOCALE = UserDictionary.Words.WORD 196 + "=? AND " + UserDictionary.Words.LOCALE + "=?"; 197 private static final String HAS_WORD_SELECTION_ALL_LOCALES = UserDictionary.Words.WORD 198 + "=? AND " + UserDictionary.Words.LOCALE + " is null"; 204 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI, in hasWord() 208 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI, in hasWord()
|
H A D | UserDictionaryList.java | 27 import android.provider.UserDictionary; 58 final Cursor cursor = activity.getContentResolver().query(UserDictionary.Words.CONTENT_URI, in getUserDictionaryLocalesSet() 59 new String[] { UserDictionary.Words.LOCALE }, in getUserDictionaryLocalesSet() 68 final int columnIndex = cursor.getColumnIndex(UserDictionary.Words.LOCALE); in getUserDictionaryLocalesSet()
|
/aosp12/packages/apps/Settings/src/com/android/settings/inputmethod/ |
H A D | UserDictionaryCursorLoader.java | 22 import android.provider.UserDictionary; 36 UserDictionary.Words._ID, 37 UserDictionary.Words.WORD, 38 UserDictionary.Words.SHORTCUT 47 UserDictionary.Words.LOCALE + "=?"; 49 UserDictionary.Words.LOCALE + " is null"; 76 UserDictionary.Words.CONTENT_URI, QUERY_PROJECTION, in loadInBackground() 78 "UPPER(" + UserDictionary.Words.WORD + ")"); in loadInBackground() 81 candidate = getContext().getContentResolver().query(UserDictionary.Words.CONTENT_URI, in loadInBackground() 83 new String[]{queryLocale}, "UPPER(" + UserDictionary.Words.WORD + ")"); in loadInBackground()
|
H A D | UserDictionarySettings.java | 27 import android.provider.UserDictionary; 55 private static final String DELETE_SELECTION_WITH_SHORTCUT = UserDictionary.Words.WORD 56 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?"; 57 private static final String DELETE_SELECTION_WITHOUT_SHORTCUT = UserDictionary.Words.WORD 58 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR " 59 + UserDictionary.Words.SHORTCUT + "=''"; 141 new String[]{UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT}, in createAdapter() 209 mCursor.getColumnIndexOrThrow(UserDictionary.Words.WORD)); in getWord() 219 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT)); in getShortcut() 226 UserDictionary.Words.CONTENT_URI, DELETE_SELECTION_WITHOUT_SHORTCUT, in deleteWord() [all …]
|
H A D | UserDictionaryAddWordContents.java | 24 import android.provider.UserDictionary; 163 UserDictionary.Words.addWord(context, newWord.toString(), in apply() 170 private static final String[] HAS_WORD_PROJECTION = {UserDictionary.Words.WORD}; 171 private static final String HAS_WORD_SELECTION_ONE_LOCALE = UserDictionary.Words.WORD 172 + "=? AND " + UserDictionary.Words.LOCALE + "=?"; 173 private static final String HAS_WORD_SELECTION_ALL_LOCALES = UserDictionary.Words.WORD 174 + "=? AND " + UserDictionary.Words.LOCALE + " is null"; 181 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI, in hasWord() 185 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI, in hasWord()
|
H A D | UserDictionaryListPreferenceController.java | 22 import android.provider.UserDictionary; 82 UserDictionary.Words.CONTENT_URI, new String[]{UserDictionary.Words.LOCALE}, in getUserDictionaryLocalesSet() 91 final int columnIndex = cursor.getColumnIndex(UserDictionary.Words.LOCALE); in getUserDictionaryLocalesSet()
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
H A D | UserDictionaryCompatUtils.java | 22 import android.provider.UserDictionary; 37 ? UserDictionary.Words.LOCALE_TYPE_CURRENT : UserDictionary.Words.LOCALE_TYPE_ALL; in addWord() 38 UserDictionary.Words.addWord(context, word, freq, localeType); in addWord() 46 UserDictionary.Words.addWord(context, word, freq, shortcut, locale); in addWordWithShortcut()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/inputmethod/ |
H A D | UserDictionaryListControllerTest.java | 30 import android.provider.UserDictionary; 59 ShadowContentResolver.registerProviderInternal(UserDictionary.AUTHORITY, mContentProvider); in setUp() 145 new String[]{UserDictionary.Words.LOCALE}); in query()
|
H A D | UserDictionaryCursorLoaderTest.java | 26 import android.provider.UserDictionary; 47 ShadowContentResolver.registerProviderInternal(UserDictionary.AUTHORITY, mContentProvider); in setUp()
|
/aosp12/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
H A D | UserDictionaryProvider.java | 37 import android.provider.UserDictionary; 38 import android.provider.UserDictionary.Words; 65 private static final String AUTHORITY = UserDictionary.AUTHORITY; 249 Uri wordUri = ContentUris.withAppendedId(UserDictionary.Words.CONTENT_URI, rowId); in insert()
|
H A D | DictionaryBackupAgent.java | 41 import android.provider.UserDictionary.Words;
|
/aosp12/frameworks/base/core/java/android/provider/ |
H A D | UserDictionary.java | 35 public class UserDictionary { class
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
H A D | UserBinaryDictionary.java | 25 import android.provider.UserDictionary.Words;
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
H A D | AndroidWordLevelSpellCheckerSession.java | 22 import android.provider.UserDictionary.Words;
|
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 6011 android.provider.UserDictionary$Words
|
H A D | boot-image-profile.txt | 29403 Landroid/provider/UserDictionary$Words;
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 6009 android.provider.UserDictionary$Words
|
H A D | boot-image-profile.txt | 39040 Landroid/provider/UserDictionary$Words;
|
/aosp12/frameworks/base/core/api/ |
H A D | current.txt | 35976 public class UserDictionary { 35977 ctor public UserDictionary(); 35982 public static class UserDictionary.Words implements android.provider.BaseColumns { 35983 ctor public UserDictionary.Words();
|
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | android-22.txt | 25831 public class UserDictionary { 25832 ctor public UserDictionary(); 25837 public static class UserDictionary.Words implements android.provider.BaseColumns { 25838 ctor public UserDictionary.Words();
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 46601 Landroid/provider/UserDictionary;->FREQUENCY_MAX:I 46602 Landroid/provider/UserDictionary;->FREQUENCY_MIN:I
|