Searched defs:childDicNodes (Results 1 - 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node_utils.cpp52 DicNodeVector *const childDicNodes) {
57 childDicNodes->pushPassingChild(dicNode);
59 dictionaryStructurePolicy->createAndGetAllChildDicNodes(dicNode, childDicNodes);
50 getAllChildDicNodes(const DicNode *dicNode, const DictionaryStructureWithBufferPolicy *const dictionaryStructurePolicy, DicNodeVector *const childDicNodes) argument
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
H A Ddictionary_utils.cpp76 DicNodeVector childDicNodes; local
77 DicNodeUtils::getAllChildDicNodes(parentDicNode, dictionaryStructurePolicy, &childDicNodes);
78 for (int childIndex = 0; childIndex < childDicNodes.getSizeAndLock(); ++childIndex) {
79 DicNode *const childDicNode = childDicNodes[childIndex];
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/
H A Dsuggest.cpp109 DicNodeVector childDicNodes(TRAVERSAL->getDefaultExpandDicNodeSize());
127 childDicNodes.clear();
168 &dicNode, traverseSession->getDictionaryStructurePolicy(), &childDicNodes);
170 const int childDicNodesSize = childDicNodes.getSizeAndLock();
172 DicNode *const childDicNode = childDicNodes[i];
315 DicNodeVector childDicNodes; local
317 dicNode, traverseSession->getDictionaryStructurePolicy(), &childDicNodes);
319 const int size = childDicNodes.getSizeAndLock();
321 DicNode *const childDicNode = childDicNodes[i];
340 DicNodeVector childDicNodes; local
[all...]

Completed in 107 milliseconds