HomeSort by relevance Sort by last modified time
    Searched defs:word1 (Results 1 - 25 of 39) sorted by null

1 2

  /external/stlport/test/unit/
setinter_test.cpp 68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setunion_test.cpp 71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setdiff_test.cpp 74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
swap_test.cpp 57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
  /ndk/tests/device/test-gnustl-full/unit/
setinter_test.cpp 68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setunion_test.cpp 71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setdiff_test.cpp 74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
swap_test.cpp 57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
  /ndk/tests/device/test-stlport/unit/
setinter_test.cpp 68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setunion_test.cpp 71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setdiff_test.cpp 74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
swap_test.cpp 57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Diff.java 124 final PtNode word1 = FusionDictionary.findWordInTree(dict1.mRootNodeArray, local
126 if (null == word1) {
132 if (word0.mFrequency != word1.getFrequency()) {
134 + " -> " + word1.getFrequency());
137 if (word0.mIsNotAWord != word1.getIsNotAWord()) {
139 + " -> " + word1.getIsNotAWord());
142 if (word0.mIsBlacklistEntry != word1.getIsBlacklistEntry()) {
144 + " -> " + word1.getIsBlacklistEntry());
148 "Bigram", word0.mBigrams, word1.getBigrams());
150 "Shortcut", word0.mShortcutTargets, word1.getShortcutTargets())
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 91 uint32 pred_word, word1, word2; local
118 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */
120 word1 >>= 8; /* 0 b4 b3 b2 */
121 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */
124 word1 = *((uint32*)(prev += 4)); /* b12 b11 b10 b9 */
126 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */
136 prev -= 2; /* word1-aligned */
140 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */
142 word1 >>= 16; /* 0 0 b4 b3 */
143 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 *
191 uint32 word1, word2, word3, word12; local
520 uint32 word1, word2, word3, word12, word22; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
UserHistoryDictIOUtils.java 62 public void setBigram(final String word1, final String word2, final int frequency);
67 public int getFrequency(final String word1, final String word2);
100 for (final String word1 : bigrams.keySet()) {
101 final HashMap<String, Byte> word1Bigrams = bigrams.getBigrams(word1);
103 final int freq = dict.getFrequency(word1, word2);
109 if (word1 == null) {
112 Log.d(TAG, "add bigram: " + word1
117 if (word1 == null) { // unigram
120 if (FusionDictionary.findWordInTree(fusionDict.mRootNodeArray, word1) == null) {
121 fusionDict.add(word1, 2, null, false /* isNotAWord */)
163 final String word1 = entry.getValue(); local
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.cc 100 uint32 word0, word1; local
109 word1 = UnalignedLoad32(word_ptr + 4) & kWordMask0[bytecount & 3];
110 word1 = word1 ^ (word1 << 18);
111 return word0 + word1;
157 uint32 word0, word1, word2; local
165 word1 = UnalignedLoad32(word_ptr + 4) & kWordMask0[bytecount & 3];
166 word1 = word1 ^ (word1 << 4)
227 uint64 word1; local
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 327 string word1; local
331 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
332 CHECK_EQ(word1, "foo");
335 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
336 CHECK_EQ(word1, "");
339 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
340 CHECK_EQ(word1, "");
343 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));
    [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 320 string word1; local
324 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
325 CHECK_EQ(word1, "foo");
328 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
329 CHECK_EQ(word1, "");
332 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
333 CHECK_EQ(word1, "");
336 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_guest_x86.h 259 UInt word1; member in struct:__anon29388::__anon29389::__anon29391
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 358 ULong pred_word, word1, word2; local
388 word1 = *((ULong*)(prev += lx)); /* read 4 bytes, b4 b3 b2 b1 */
390 word1 >>= 8; /* 0 b4 b3 b2 */
391 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */
394 word1 = *((ULong*)(prev + 8)); /* b12 b11 b10 b9 */
396 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */
404 prev -= 2; /* word1-aligned */
410 word1 = *((ULong*)(prev += lx)); /* read 4 bytes, b4 b3 b2 b1 */
412 word1 >>= 16; /* 0 0 b4 b3 */
413 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 *
458 ULong word1, word2, word3, word12; local
783 ULong word1, word2, word3, word12, word22; local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
EncoderUtil.java 525 String word1 = encodeB(prefix, part1, usedCharacters, charset, local
532 return word1 + " " + word2;
553 String word1 = encodeQ(prefix, part1, usage, usedCharacters, local
560 return word1 + " " + word2;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryDecayingTests.java 276 final String word1 = words.get(word1Index); local
277 final Pair<String, String> bigram = new Pair<String, String>(word0, word1);

Completed in 1852 milliseconds

1 2