Searched defs:word (Results 1 - 6 of 6) 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);
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Didct_vca.cpp425 uint32 word; local
434 word = (tmp << 8) | tmp;
435 word = (word << 16) | word;
437 *((uint32*)(comp += offset)) = word;
438 *((uint32*)(comp + 4)) = word;
453 int32 word; local
473 word = ((x0 + x4) >> 14);
474 CLIP_RESULT(word)
510 int32 word; local
583 int32 word; local
[all...]
H A Dblock_idct.cpp630 int32 word; local
696 word = ((x7 + x1) >> 14);
697 CLIP_RESULT(word)
701 word = word | (temp << 8);
705 word = word | (temp << 16);
709 word = word | (temp << 24);
710 *((int32*)(comp)) = word;
[all...]
/frameworks/base/libs/utils/
H A DDebug.cpp233 size_t word; local
235 for (word = 0; word < bytesPerLine; ) {
238 const size_t startIndex = word+(alignment-(alignment?1:0));
241 const size_t startIndex = word;
248 if (index == 0 && word > 0 && alignment > 0) {
262 if (index == 0 && word > 0) {
278 word += index;
/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...]

Completed in 2568 milliseconds