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

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 341 PtNodeArray currentNodeArray = mRootNodeArray;
348 currentPtNode = currentNodeArray.mData.get(nodeIndex);
355 currentNodeArray = currentPtNode.mChildren;
356 nodeIndex = findIndexOfChar(currentNodeArray, word[charIndex]);
361 final int insertionIndex = findInsertionIndex(currentNodeArray, word[charIndex]);
365 currentNodeArray.mData.add(insertionIndex, newPtNode);
366 if (DBG) checkStack(currentNodeArray);
425 currentNodeArray.mData.set(nodeIndex, newParent);
427 if (DBG) checkStack(currentNodeArray);
BinaryDictEncoderUtils.java 258 * @param currentNodeArray node array containing the PtNode where the offset will be written
259 * @param offsetFromStartOfCurrentNodeArray offset, in bytes, from the start of currentNodeArray
263 private static int getOffsetToTargetNodeArrayDuringUpdate(final PtNodeArray currentNodeArray,
266 < currentNodeArray.mCachedAddressBeforeUpdate);
269 - (currentNodeArray.mCachedAddressAfterUpdate
273 - (currentNodeArray.mCachedAddressBeforeUpdate + offsetFromStartOfCurrentNodeArray);
280 * @param currentNodeArray node array containing the PtNode where the offset will be written
281 * @param offsetFromStartOfCurrentNodeArray offset, in bytes, from the start of currentNodeArray
286 private static int getOffsetToTargetPtNodeDuringUpdate(final PtNodeArray currentNodeArray,
288 final int oldOffsetBasePoint = currentNodeArray.mCachedAddressBeforeUpdat
    [all...]

Completed in 93 milliseconds