Searched defs:word (Results 1 - 12 of 12) sorted by relevance

/frameworks/compile/linkloader/include/
H A DELFTypes.h126 typedef detail::ELFWord word; typedef in struct:ELFPrimitiveTypes
147 typedef detail::ELFWord word; typedef in struct:ELFPrimitiveTypes
188 typedef typename ELFPrimitiveTypes<BITWIDTH>::word word_t; \
206 typedef ELFPrimitiveTypes<BITWIDTH>::word word_t; \
/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/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp57 /* assuming the block is word-aligned */
286 /* assuming the block is word-aligned */
492 /* assuming the block is word-aligned */
1251 ULong word; local
1258 word = *((ULong*)cur);
1259 temp += (word >> 24);
1260 temp += ((word >> 16) & 0xFF);
1261 temp += ((word >> 8) & 0xFF);
1262 temp += (word & 0xFF);
1264 word
[all...]
H A Dbitstream_io.cpp20 /* Change the bitstream parsing algorithm. Use temporary word of 2 or 4 bytes */
69 stream->word = 0;
126 stream->word <<= Length;
127 stream->word |= Value; /* assuming Value is not larger than Length */
134 stream->word <<= stream->bitLeft;
136 stream->word |= ((UInt)Value >> Length);
146 stream->word = Value;
200 /* Purpose : save written word into the bitstream buffer. */
210 UInt word; local
223 word
260 UInt word, shift; local
584 UInt word; local
[all...]
H A Dmotion_est.cpp681 ULong word; local
696 word = ptr[0];
698 word |= (byte << 8);
700 word |= (byte << 16);
702 word |= (byte << 24);
703 *htfmMB++ = word;
705 word = *(ptr += (width << 2));
707 word |= (byte << 8);
709 word |= (byte << 16);
711 word |
[all...]
H A Dmp4lib_int.h33 UInt word; /*hold one word temporarily */ member in struct:tagBitstream
34 Int bitLeft; /*number of bits left in "word" */
/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.java196 * Add a word to a slot.
199 * @param word word to insert.
200 * @param pron pronunciation, or null to derive from word.
201 * @param weight weight to give the word. One is normal, 50 is low.
204 public void addWordToSlot(String slot, String word, String pron, int weight, String tag) { argument
205 SR_GrammarAddWordToSlot(mGrammar, slot, word, pron, weight, tag);
664 String word, String pronunciation, int weight, String tag);
701 // const LCHAR* word);
705 private static native String SR_VocabularyGetPronunciation(int vocabulary, String word); argument
663 SR_GrammarAddWordToSlot(int grammar, String slot, String word, String pronunciation, int weight, String tag) argument
[all...]
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp749 uint32 word; local
763 word = ptr[0];
765 word |= (byte << 8);
767 word |= (byte << 16);
769 word |= (byte << 24);
770 *htfmMB++ = word;
772 word = *(ptr += (pitch << 2));
774 word |= (byte << 8);
776 word |= (byte << 16);
778 word |
[all...]

Completed in 197 milliseconds