HomeSort by relevance Sort by last modified time
    Searched refs:currentNodeArray (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 481 PtNodeArray currentNodeArray = mRootNodeArray;
488 currentPtNode = currentNodeArray.mData.get(nodeIndex);
495 currentNodeArray = currentPtNode.mChildren;
496 nodeIndex = findIndexOfChar(currentNodeArray, word[charIndex]);
501 final int insertionIndex = findInsertionIndex(currentNodeArray, word[charIndex]);
504 currentNodeArray.mData.add(insertionIndex, newPtNode);
505 if (DBG) checkStack(currentNodeArray);
563 currentNodeArray.mData.set(nodeIndex, newParent);
565 if (DBG) checkStack(currentNodeArray);
    [all...]
BinaryDictEncoderUtils.java 298 * @param currentNodeArray node array containing the PtNode where the offset will be written
299 * @param offsetFromStartOfCurrentNodeArray offset, in bytes, from the start of currentNodeArray
303 private static int getOffsetToTargetNodeArrayDuringUpdate(final PtNodeArray currentNodeArray,
306 < currentNodeArray.mCachedAddressBeforeUpdate);
309 - (currentNodeArray.mCachedAddressAfterUpdate
313 - (currentNodeArray.mCachedAddressBeforeUpdate
322 * @param currentNodeArray node array containing the PtNode where the offset will be written
323 * @param offsetFromStartOfCurrentNodeArray offset, in bytes, from the start of currentNodeArray
328 private static int getOffsetToTargetPtNodeDuringUpdate(final PtNodeArray currentNodeArray,
330 final int oldOffsetBasePoint = currentNodeArray.mCachedAddressBeforeUpdat
    [all...]

Completed in 162 milliseconds