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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
PtNodeInfo.java 33 public final int mChildrenAddress;
48 mChildrenAddress = childrenAddress;
BinaryDictDecoderUtils.java 408 if (BinaryDictIOUtils.hasChildrenAddress(info.mChildrenAddress)) {
409 if (info.mChildrenAddress > pos) {
412 dictDecoder.setPosition(last.mChildrenAddress);
414 groupPos = last.mChildrenAddress + BinaryDictIOUtils.getPtNodeCountSize(i);
420 if (0 == i && BinaryDictIOUtils.hasChildrenAddress(last.mChildrenAddress)) {
422 dictDecoder.setPosition(last.mChildrenAddress);
424 groupPos = last.mChildrenAddress + BinaryDictIOUtils.getPtNodeCountSize(i);
474 if (BinaryDictIOUtils.hasChildrenAddress(info.mChildrenAddress)) {
475 PtNodeArray children = reverseNodeArrayMap.get(info.mChildrenAddress);
478 dictDecoder.setPosition(info.mChildrenAddress);
    [all...]
DynamicBinaryDictIOUtils.java 316 if (currentInfo.mChildrenAddress != FormatSpec.NO_CHILDREN_ADDRESS) {
317 updateParentAddresses(dictUpdater, currentInfo.mChildrenAddress,
323 newNodeAddress + 1, currentInfo.mChildrenAddress,
343 final int childrenAddress = currentInfo.mChildrenAddress;
358 if (currentInfo.mChildrenAddress != FormatSpec.NO_CHILDREN_ADDRESS) {
359 updateParentAddresses(dictUpdater, currentInfo.mChildrenAddress,
373 currentInfo.mChildrenAddress, currentInfo.mShortcutTargets,
408 nodeParentAddress, currentInfo.mChildrenAddress, shortcuts,
415 if (currentInfo.mChildrenAddress == FormatSpec.NO_CHILDREN_ADDRESS) {
443 dictBuffer.position(currentInfo.mChildrenAddress);
    [all...]
BinaryDictIOUtils.java 133 if (!isMovedPtNode && hasChildrenAddress(info.mChildrenAddress)) {
134 final Position childrenPos = new Position(info.mChildrenAddress, index);
217 if (currentInfo.mChildrenAddress == FormatSpec.NO_CHILDREN_ADDRESS) {
221 dictDecoder.setPosition(currentInfo.mChildrenAddress);
370 + ", child=" + info.mChildrenAddress + ", characters ="
373 final int childrenOffset = info.mChildrenAddress == FormatSpec.NO_CHILDREN_ADDRESS ?
374 0 : info.mChildrenAddress - (info.mOriginalAddress + size);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtilsTests.java 95 if (info.mChildrenAddress == FormatSpec.NO_CHILDREN_ADDRESS) {
98 Log.d(TAG, " children address = " + info.mChildrenAddress);

Completed in 172 milliseconds