Home | History | Annotate | Download | only in dicnode

Lines Matching refs:pointerId

54     void updateInputIndexG(const int pointerId, const int inputIndex,
56 mInputIndex[pointerId] = inputIndex;
57 mPrevCodePoint[pointerId] = prevCodePoint;
58 mTerminalDiffCost[pointerId] = terminalDiffCost;
66 void setPrevCodePoint(const int pointerId, const int c) {
67 mPrevCodePoint[pointerId] = c;
70 void forwardInputIndex(const int pointerId, const int val) {
71 if (mInputIndex[pointerId] < 0) {
72 mInputIndex[pointerId] = val;
74 mInputIndex[pointerId] = mInputIndex[pointerId] + val;
78 int getInputIndex(const int pointerId) const {
80 return mInputIndex[pointerId];
83 int getPrevCodePoint(const int pointerId) const {
84 return mPrevCodePoint[pointerId];
87 float getTerminalDiffCost(const int pointerId) const {
88 return mTerminalDiffCost[pointerId];