OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DictionaryPackConstants
(Results
1 - 9
of
9
) sorted by null
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/dictionarypack/
DictionaryPackConstants.java
26
public class
DictionaryPackConstants
{
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryPackInstallBroadcastReceiver.java
19
import com.android.inputmethod.dictionarypack.
DictionaryPackConstants
;
91
if (
DictionaryPackConstants
.AUTHORITY.equals(info.authority)) {
116
} else if (action.equals(
DictionaryPackConstants
.NEW_DICTIONARY_INTENT_ACTION)) {
123
} else if (action.equals(
DictionaryPackConstants
.UNKNOWN_DICTIONARY_PROVIDER_CLIENT)) {
135
intent.getStringExtra(
DictionaryPackConstants
.DICTIONARY_PROVIDER_CLIENT_EXTRA);
SystemBroadcastReceiver.java
34
import com.android.inputmethod.dictionarypack.
DictionaryPackConstants
;
141
DictionaryPackConstants
.INIT_AND_UPDATE_NOW_INTENT_ACTION);
BinaryDictionaryFileDumper.java
30
import com.android.inputmethod.dictionarypack.
DictionaryPackConstants
;
112
.authority(
DictionaryPackConstants
.AUTHORITY).appendPath(path);
LatinIME.java
64
import com.android.inputmethod.dictionarypack.
DictionaryPackConstants
;
591
newDictFilter.addAction(
DictionaryPackConstants
.NEW_DICTIONARY_INTENT_ACTION);
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java
201
} else if (
DictionaryPackConstants
.UPDATE_NOW_INTENT_ACTION.equals(action)) {
204
} else if (
DictionaryPackConstants
.INIT_AND_UPDATE_NOW_INTENT_ACTION.equals(action)) {
231
final Intent updateIntent = new Intent(
DictionaryPackConstants
.UPDATE_NOW_INTENT_ACTION);
DictionaryProvider.java
54
Uri.parse(ContentResolver.SCHEME_CONTENT + "://" +
DictionaryPackConstants
.AUTHORITY);
71
sUriMatcherV1.addURI(
DictionaryPackConstants
.AUTHORITY, "list", DICTIONARY_V1_WHOLE_LIST);
72
sUriMatcherV1.addURI(
DictionaryPackConstants
.AUTHORITY, "*", DICTIONARY_V1_DICT_INFO);
73
sUriMatcherV2.addURI(
DictionaryPackConstants
.AUTHORITY, "*/metadata",
75
sUriMatcherV2.addURI(
DictionaryPackConstants
.AUTHORITY, "*/list", DICTIONARY_V2_WHOLE_LIST);
76
sUriMatcherV2.addURI(
DictionaryPackConstants
.AUTHORITY, "*/dict/*",
78
sUriMatcherV2.addURI(
DictionaryPackConstants
.AUTHORITY, "*/datafile/*",
DictionarySettingsFragment.java
151
new Intent(
DictionaryPackConstants
.UNKNOWN_DICTIONARY_PROVIDER_CLIENT);
153
DictionaryPackConstants
.DICTIONARY_PROVIDER_CLIENT_EXTRA, mClientId);
168
new Intent(
DictionaryPackConstants
.NEW_DICTIONARY_INTENT_ACTION);
UpdateHandler.java
576
new Intent(
DictionaryPackConstants
.NEW_DICTIONARY_INTENT_ACTION);
[
all
...]
Completed in 3418 milliseconds