HomeSort by relevance Sort by last modified time
    Searched defs:codePointTable (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/native/jni/tests/dictionary/utils/
byte_array_utils_test.cpp 27 const int codePointTable[] = { 0x6f, 0x6b };
30 // Expect the first entry of codePointTable
31 EXPECT_EQ(0x6f, ByteArrayUtils::readCodePointAndAdvancePosition(buffer, codePointTable, &pos));
32 // Expect the second entry of codePointTable
33 EXPECT_EQ(0x6b, ByteArrayUtils::readCodePointAndAdvancePosition(buffer, codePointTable, &pos));
35 // It isn't picked from the codePointTable, since it exceeds the range of the codePointTable.
36 EXPECT_EQ(0x100, ByteArrayUtils::readCodePointAndAdvancePosition(buffer, codePointTable, &pos));
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.cpp 88 const int *const codePointTable = mHeaderPolicy.getCodePointTable();
121 mBuffer.data(), codePointTable, &pos);
128 mBuffer.data(), codePointTable, &pos);
135 mBuffer.data(), codePointTable, &pos);
149 codePointTable, &pos);
200 mBuffer.data(), codePointTable, &lastCandidatePtNodePos);
205 mBuffer.data(), codePointTable, &lastCandidatePtNodePos);
210 mBuffer.data(), codePointTable, &lastCandidatePtNodePos);
412 const int *const codePointTable = mHeaderPolicy.getCodePointTable();
414 &mBigramListPolicy, codePointTable, &flags, &mergedNodeCodePointCount
    [all...]

Completed in 75 milliseconds