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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DictEncoder.java 34 public void writeForwardLinkAddress(final int forwardLinkAddress);
Ver3DictEncoder.java 239 public void writeForwardLinkAddress(final int forwardLinkAddress) {
240 mPosition = BinaryDictEncoderUtils.writeUIntToBuffer(mBuffer, mPosition, forwardLinkAddress,
DynamicBinaryDictIOUtils.java 165 final int forwardLinkAddress = dictBuffer.readUnsignedInt24();
166 if (forwardLinkAddress == FormatSpec.NO_FORWARD_LINK_ADDRESS) {
171 dictBuffer.position(forwardLinkAddress);
Ver4DictEncoder.java 430 public void writeForwardLinkAddress(int forwardLinkAddress) {
432 forwardLinkAddress, FormatSpec.FORWARD_LINK_ADDRESS_SIZE);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_reading_utils.h 35 static AK_FORCE_INLINE bool isValidForwardLinkPosition(const int forwardLinkAddress) {
36 return forwardLinkAddress != 0;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtilsTests.java 125 final int forwardLinkAddress = dictBuffer.readUnsignedInt24();
126 Log.d(TAG, " forwardLinkAddress = " + forwardLinkAddress);

Completed in 34 milliseconds