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

/frameworks/base/core/java/android/provider/
H A DUserDictionary.java59 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single word.
66 * The word column.
69 public static final String WORD = "word";
78 * The locale that this word belongs to. Null if it pertains to all
85 * The uid of the application that inserted the word.
90 /** The locale type to specify that the word is common to all locales. */
93 /** The locale type to specify that the word is for the current locale. */
101 /** Adds a word to the dictionary, with the given frequency and the specified
104 * @param word the word t
109 addWord(Context context, String word, int frequency, int localeType) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAlphabetIndexer.java124 * Default implementation compares the first character of word with letter.
126 protected int compare(String word, String letter) { argument
128 if (word.length() == 0) {
131 firstLetter = word.substring(0, 1);
H A DSimpleAdapter.java366 String word = words[k];
368 if (word.toLowerCase().startsWith(prefixString)) {
H A DTextView.java6891 * Returns a word to add to the dictionary from the context menu,
6892 * or null if there is no cursor or no word at the cursor.
7112 String word = getWordForDictionary();
7113 if (word != null) {
7115 getContext().getString(com.android.internal.R.string.addToDictionary, word)).
7250 String word = getWordForDictionary();
7252 if (word != null) {
7254 i.putExtra("word", word);
/frameworks/base/core/java/com/google/android/net/
H A DUrlRules.java92 String word = words[pos].toLowerCase();
93 if (word.equals("rewrite") && pos + 1 < words.length) {
96 } else if (word.equals("block")) {
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java197 * Add a word to a slot.
200 * @param word word to insert.
201 * @param pron pronunciation, or null to derive from word.
202 * @param weight weight to give the word. One is normal, 50 is low.
205 public void addWordToSlot(String slot, String word, String pron, int weight, String tag) { argument
206 SR_GrammarAddWordToSlot(mGrammar, slot, word, pron, weight, tag);
665 String word, String pronunciation, int weight, String tag);
702 // const LCHAR* word);
706 private static native String SR_VocabularyGetPronunciation(int vocabulary, String word); argument
664 SR_GrammarAddWordToSlot(int grammar, String slot, String word, String pronunciation, int weight, String tag) argument
[all...]
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java211 final String word = words[k];
213 if (word.startsWith(prefixString)) {

Completed in 615 milliseconds