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

/frameworks/minikin/tests/perftests/
H A DHyphenator.cpp32 std::vector<uint16_t> word = utf8ToUtf16("hyphen"); local
35 hyphenator->hyphenate(&result, word.data(), word.size(), usLocale);
46 std::vector<uint16_t> word = utf8ToUtf16( local
50 hyphenator->hyphenate(&result, word.data(), word.size(), usLocale);
/frameworks/minikin/app/
H A DHyphTool.cpp41 std::vector<uint16_t> word; local
43 fprintf(stderr, "usage: hyphtool word\n");
54 word.push_back(c);
56 hyph->hyphenate(&result, word.data(), word.size(), icu::Locale::getUS());
61 printf("%c", word[i]);
/frameworks/rs/rsov/compiler/spirit/
H A Dword_stream.h54 uint32_t word; local
55 *this >> &word;
56 *codeCount = word;
H A Dinstructions.h66 Instruction *addExtraOperand(uint32_t word) { argument
67 mExtraOperands.push_back(word);
/frameworks/av/media/libeffects/loudness/common/core/
H A Dbyte_swapper.h31 int16 word = 1; local
32 char *cp = reinterpret_cast<char *>(&word);
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java65 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single word.
72 * The word column.
75 public static final String WORD = "word";
84 * The locale that this word belongs to. Null if it pertains to all
91 * The uid of the application that inserted the word.
97 * An optional shortcut for this word. When the shortcut is typed, supporting IMEs should
98 * suggest the word in this row as an alternate spelling too.
119 /** Adds a word to the dictionary, with the given frequency and the specified
126 * @param word the word t
132 addWord(Context context, String word, int frequency, int localeType) argument
161 addWord(Context context, String word, int frequency, String shortcut, Locale locale) 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/minikin/tests/unittest/
H A DHyphenatorTest.cpp55 const uint16_t word[] = {'t', 'a', 'b', 'l', 'e'}; local
57 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
69 const uint16_t word[] = {'l', 'l', MIDDLE_DOT, 'l', 'l'}; local
71 hyphenator->hyphenate(&result, word, NELEM(word), catalanLocale);
80 // Catalan l·l should not break if the word is too short.
83 const uint16_t word[] = {'l', MIDDLE_DOT, 'l'}; local
85 hyphenator->hyphenate(&result, word, NELEM(word), catalanLocal
95 const uint16_t word[] = {'x', HYPHEN, 'y'}; local
107 const uint16_t word[] = {GREEK_LOWER_ALPHA, HYPHEN, GREEK_LOWER_ALPHA}; local
120 const uint16_t word[] = {'x', EN_DASH, 'y'}; local
132 const uint16_t word[] = {'x', SOFT_HYPHEN, 'y'}; local
144 const uint16_t word[] = {SOFT_HYPHEN, 'y'}; local
155 const uint16_t word[] = {MALAYALAM_KA, SOFT_HYPHEN, MALAYALAM_KA}; local
167 const uint16_t word[] = { local
182 const uint16_t word[] = {ARMENIAN_AYB, SOFT_HYPHEN, ARMENIAN_AYB}; local
195 const uint16_t word[] = {HEBREW_ALEF, SOFT_HYPHEN, HEBREW_ALEF}; local
208 const uint16_t word[] = {ARABIC_BEH, SOFT_HYPHEN, ARABIC_BEH}; local
221 const uint16_t word[] = {ARABIC_ALEF, SOFT_HYPHEN, ARABIC_BEH}; local
233 const uint16_t word[] = {ARABIC_BEH, ARABIC_ZWARAKAY, SOFT_HYPHEN, ARABIC_ZWARAKAY, ARABIC_BEH}; local
248 const uint16_t word[] = {ARABIC_BEH, ARABIC_ZWARAKAY, SOFT_HYPHEN, ARABIC_ZWARAKAY}; local
262 const uint16_t word[] = {ARABIC_ZWARAKAY, SOFT_HYPHEN, ARABIC_ZWARAKAY, ARABIC_BEH}; local
275 const uint16_t word[] = {UCAS_E, SOFT_HYPHEN, UCAS_E}; local
288 const uint16_t word[] = {'a', SOFT_HYPHEN, UCAS_E}; local
300 const uint16_t word[] = {'x', HYPHEN, 'y'}; local
312 const uint16_t word[] = {'x', HYPHEN_MINUS, 'y'}; local
325 const uint16_t word[] = {HYPHEN_MINUS, 'y'}; local
[all...]
/frameworks/av/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/av/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/tools/aapt2/compile/
H A DPngChunkFilter.cpp49 uint32_t word = ((uint32_t)data[0]) & 0x000000ff; local
50 word <<= 8;
51 word |= ((uint32_t)data[1]) & 0x000000ff;
52 word <<= 8;
53 word |= ((uint32_t)data[2]) & 0x000000ff;
54 word <<= 8;
55 word |= ((uint32_t)data[3]) & 0x000000ff;
56 return word;
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp157 bool BitcodeWrapperer::ReadWord(uint32_t& word) { argument
159 word = (((uint32_t) BufferLookahead(0)) << 0)
339 // Note: This writes out the 4 word header required by llvm wrapped
/frameworks/native/libs/binder/
H A DDebug.cpp219 size_t word; local
221 for (word = 0; word < bytesPerLine; ) {
223 const size_t startIndex = word+(alignment-(alignment?1:0));
228 if (index == 0 && word > 0 && alignment > 0) {
242 if (index == 0 && word > 0) {
258 word += index;
/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp119 void Hyphenator::hyphenate(vector<HyphenationType>* result, const uint16_t* word, size_t len, argument
127 const HyphenationType hyphenValue = alphabetLookup(alpha_codes, word, len);
135 // Note that we will always get here if the word contains a hyphen or a soft hyphen, because the
138 hyphenateWithNoPatterns(result->data(), word, len, locale);
256 // Assumption for caller: location must be >= 2 and word[location] == CHAR_SOFT_HYPHEN.
258 static inline HyphenationType getHyphTypeForArabic(const uint16_t* word, size_t len, argument
262 while (static_cast<size_t>(i) < len && (type = getJoiningType(word[i])) == U_JT_TRANSPARENT) {
270 while (i >= 0 && (type = getJoiningType(word[i])) == U_JT_TRANSPARENT) {
283 void Hyphenator::hyphenateWithNoPatterns(HyphenationType* result, const uint16_t* word, size_t len, argument
287 const uint16_t prevChar = word[
325 alphabetLookup(uint16_t* alpha_codes, const uint16_t* word, size_t len) argument
[all...]
/frameworks/base/tools/bit/
H A Dmain.cpp949 run_tab_completion(const string& word) argument
963 if (starts_with(it->first, word)) {
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 371 milliseconds