Home | History | Annotate | Download | only in typing

Lines Matching refs:dicNode

22 #include "suggest/core/dicnode/dic_node_utils.h"
29 class DicNode;
39 const DicNode *const dicNode) const {
41 if (dicNode->hasMultipleWords()) {
44 if (dicNode->getProximityCorrectionCount() > 0) {
47 if (dicNode->getEditCorrectionCount() > 0) {
53 float getOmissionCost(const DicNode *const parentDicNode, const DicNode *const dicNode) const {
55 const bool sameCodePoint = dicNode->isSameNodeCodePoint(parentDicNode);
56 // If the traversal omitted the first letter then the dicNode should now be on the second.
57 const bool isFirstLetterOmission = dicNode->getDepth() == 2;
71 const DicNode *const dicNode, DicNode_InputStateG *inputStateG) const {
72 const int pointIndex = dicNode->getInputIndex(0);
76 ->getPointToKeyLength(pointIndex, dicNode->getNodeCodePoint());
82 const bool isProximity = isProximityDicNode(traverseSession, dicNode);
85 if (dicNode->getDepth() == 2) {
90 dicNode->hasMultipleWords() && dicNode->isFirstCharUppercase();
99 const DicNode *const dicNode) const {
100 const int pointIndex = dicNode->getInputIndex(0);
103 const int dicNodeChar = toBaseLowerCase(dicNode->getNodeCodePoint());
108 const DicNode *const parentDicNode, const DicNode *const dicNode) const {
113 const int codePoint = dicNode->getNodeCodePoint();
123 const DicNode *const parentDicNode, const DicNode *const dicNode) const {
128 const int currentCodePoint = dicNode->getNodeCodePoint();
133 const bool singleChar = dicNode->getDepth() == 1;
141 const DicNode *const dicNode) const {
146 const DicNode *const dicNode,
149 dicNode, multiBigramMap) * ScoringParams::DISTANCE_WEIGHT_LANGUAGE;
153 const DicNode *const dicNode) const {
155 const bool firstCompletion = dicNode->getInputIndex(0)
164 const DicNode *const dicNode, const float dicNodeLanguageImprobability) const {
165 const float languageImprobability = (dicNode->isExactMatch()) ?
183 const DicNode *const dicNode) const {
190 const DicNode *const parentDicNode, const DicNode *const dicNode) const;