Home
last modified time | relevance | path

Searched refs:mCodePoints (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
Dpt_node_params.h36 mParentPos(NOT_A_DICT_POS), mCodePointCount(0), mCodePoints(), in PtNodeParams()
46 mCodePointCount(ptNodeParams.mCodePointCount), mCodePoints(), in PtNodeParams()
56 memcpy(mCodePoints, ptNodeParams.getCodePoints(), sizeof(int) * mCodePointCount); in PtNodeParams()
65 mCodePointCount(codePointCount), mCodePoints(), mTerminalIdFieldPos(NOT_A_DICT_POS), in PtNodeParams()
71 memcpy(mCodePoints, codePoints, sizeof(int) * mCodePointCount); in PtNodeParams()
80 mCodePointCount(codePointCount), mCodePoints(), in PtNodeParams()
86 memcpy(mCodePoints, codePoints, sizeof(int) * mCodePointCount); in PtNodeParams()
94 mParentPos(parentPos), mCodePointCount(codePoints.size()), mCodePoints(), in PtNodeParams()
105 memcpy(mCodePoints, codePoints.data(), sizeof(int) * mCodePointCount); in PtNodeParams()
111 mCodePointCount(codePoints.size()), mCodePoints(), in PtNodeParams()
[all …]
/packages/inputmethods/LatinIME/native/jni/src/dictionary/property/
Dword_property.h34 : mCodePoints(), mUnigramProperty(), mNgrams() {} in WordProperty()
38 : mCodePoints(std::move(codePoints)), mUnigramProperty(unigramProperty), in WordProperty()
42 return CodePointArrayView(mCodePoints); in getCodePoints()
57 const std::vector<int> mCodePoints; variable
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
Dsuggested_word.h45 : mCodePoints(codePoints, codePoints + codePointCount), mScore(score), in SuggestedWord()
50 return &mCodePoints.at(0); in getCodePoint()
54 return mCodePoints.size(); in getCodePointCount()
76 std::vector<int> mCodePoints; variable