Home | History | Annotate | Download | only in typing

Lines Matching refs:traverseSession

40     float getTerminalSpatialCost(const DicTraverseSession *const traverseSession,
75 float getMatchedCost(const DicTraverseSession *const traverseSession,
78 const float normalizedSquaredLength = traverseSession->getProximityInfoState(0)
82 traverseSession->isTouchPositionCorrectionEnabled(), normalizedSquaredLength);
86 const bool isProximity = isProximityDicNode(traverseSession, dicNode);
105 bool isProximityDicNode(const DicTraverseSession *const traverseSession,
109 traverseSession->getProximityInfoState(0)->getPrimaryCodePointAt(pointIndex));
114 float getTranspositionCost(const DicTraverseSession *const traverseSession,
118 const float distance1 = traverseSession->getProximityInfoState(0)->getPointToKeyLength(
121 const float distance2 = traverseSession->getProximityInfoState(0)->getPointToKeyLength(
129 float getInsertionCost(const DicTraverseSession *const traverseSession,
132 const int prevCodePoint = traverseSession->getProximityInfoState(0)->getPrimaryCodePointAt(
136 const bool existsAdjacentProximityChars = traverseSession->getProximityInfoState(0)
138 const float dist = traverseSession->getProximityInfoState(0)->getPointToKeyLength(
153 float getNewWordSpatialCost(const DicTraverseSession *const traverseSession,
155 return ScoringParams::COST_NEW_WORD * traverseSession->getMultiWordCostMultiplier();
158 float getNewWordBigramLanguageCost(const DicTraverseSession *const traverseSession,
162 traverseSession->getDictionaryStructurePolicy(),
166 float getCompletionCost(const DicTraverseSession *const traverseSession,
170 == traverseSession->getInputSize();
177 float getTerminalLanguageCost(const DicTraverseSession *const traverseSession,
182 float getTerminalInsertionCost(const DicTraverseSession *const traverseSession,
185 const int inputSize = traverseSession->getInputSize();
203 AK_FORCE_INLINE float getSpaceSubstitutionCost(const DicTraverseSession *const traverseSession,
206 return cost * traverseSession->getMultiWordCostMultiplier();
210 const DicTraverseSession *const traverseSession,