Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DDictionaryPackInstallBroadcastReceiver.java19 import com.android.inputmethod.dictionarypack.DictionaryPackConstants;
91 if (DictionaryPackConstants.AUTHORITY.equals(info.authority)) { in onReceive()
116 } else if (action.equals(DictionaryPackConstants.NEW_DICTIONARY_INTENT_ACTION)) { in onReceive()
123 } else if (action.equals(DictionaryPackConstants.UNKNOWN_DICTIONARY_PROVIDER_CLIENT)) { in onReceive()
135 intent.getStringExtra(DictionaryPackConstants.DICTIONARY_PROVIDER_CLIENT_EXTRA); in onReceive()
DSystemBroadcastReceiver.java34 import com.android.inputmethod.dictionarypack.DictionaryPackConstants;
141 DictionaryPackConstants.INIT_AND_UPDATE_NOW_INTENT_ACTION); in downloadLatestDictionaries()
DBinaryDictionaryFileDumper.java30 import com.android.inputmethod.dictionarypack.DictionaryPackConstants;
112 .authority(DictionaryPackConstants.AUTHORITY).appendPath(path); in getProviderUriBuilder()
DLatinIME.java64 import com.android.inputmethod.dictionarypack.DictionaryPackConstants;
591 newDictFilter.addAction(DictionaryPackConstants.NEW_DICTIONARY_INTENT_ACTION); in onCreate()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryProvider.java54 Uri.parse(ContentResolver.SCHEME_CONTENT + "://" + DictionaryPackConstants.AUTHORITY);
71 sUriMatcherV1.addURI(DictionaryPackConstants.AUTHORITY, "list", DICTIONARY_V1_WHOLE_LIST); in sUriMatcherV1.addURI()
72 sUriMatcherV1.addURI(DictionaryPackConstants.AUTHORITY, "*", DICTIONARY_V1_DICT_INFO); in sUriMatcherV1.addURI()
73 sUriMatcherV2.addURI(DictionaryPackConstants.AUTHORITY, "*/metadata", in sUriMatcherV2.addURI()
75 sUriMatcherV2.addURI(DictionaryPackConstants.AUTHORITY, "*/list", DICTIONARY_V2_WHOLE_LIST); in sUriMatcherV2.addURI()
76 sUriMatcherV2.addURI(DictionaryPackConstants.AUTHORITY, "*/dict/*", in sUriMatcherV2.addURI()
78 sUriMatcherV2.addURI(DictionaryPackConstants.AUTHORITY, "*/datafile/*", in sUriMatcherV2.addURI()
DDictionaryService.java201 } else if (DictionaryPackConstants.UPDATE_NOW_INTENT_ACTION.equals(action)) { in dispatchBroadcast()
204 } else if (DictionaryPackConstants.INIT_AND_UPDATE_NOW_INTENT_ACTION.equals(action)) { in dispatchBroadcast()
231 final Intent updateIntent = new Intent(DictionaryPackConstants.UPDATE_NOW_INTENT_ACTION); in checkTimeAndMaybeSetupUpdateAlarm()
DDictionarySettingsFragment.java151 new Intent(DictionaryPackConstants.UNKNOWN_DICTIONARY_PROVIDER_CLIENT); in onResume()
153 DictionaryPackConstants.DICTIONARY_PROVIDER_CLIENT_EXTRA, mClientId); in onResume()
168 new Intent(DictionaryPackConstants.NEW_DICTIONARY_INTENT_ACTION); in onPause()
DUpdateHandler.java576 new Intent(DictionaryPackConstants.NEW_DICTIONARY_INTENT_ACTION); in signalNewDictionaryState()
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/dictionarypack/
DDictionaryPackConstants.java26 public class DictionaryPackConstants { class