Searched defs:dictDecoder (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/compress/flate/ |
D | dict_decoder.go | 27 type dictDecoder struct { struct 28 hist []byte // Sliding window history 31 wrPos int // Current output position in buffer 32 rdPos int // Have emitted hist[:rdPos] already 33 full bool // Has a full window length been written yet? 39 func (dd *dictDecoder) init(size int, dict []byte) { 59 func (dd *dictDecoder) histSize() int { 67 func (dd *dictDecoder) availRead() int { 72 func (dd *dictDecoder) availWrite() int { 79 func (dd *dictDecoder) writeSlice() []byte { [all …]
|
/aosp_15_r20/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
D | BinaryDictIOUtils.java | 77 private static void readUnigramsAndBigramsBinaryInner(final DictDecoder dictDecoder, in readUnigramsAndBigramsBinaryInner() 148 /* package */ static void readUnigramsAndBigramsBinary(final DictDecoder dictDecoder, in readUnigramsAndBigramsBinary() 169 /* package */ static int getTerminalPosition(final DictDecoder dictDecoder, in getTerminalPosition()
|
D | BinaryDictDecoderUtils.java | 317 /* package for tests */ static WeightedString getWordAtPosition(final DictDecoder dictDecoder, in getWordAtPosition() 328 final DictDecoder dictDecoder, final int headerSize, final int pos) { in getWordAtPositionWithoutParentAddress() 420 final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder(file, 0, file.length()); in isBinaryDictionary() local
|
D | BinaryDictDecoderEncoderTests.java | 217 final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder(file, 0, file.length(), in timeReadingAndCheckDict() local 297 final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder(file, 0, file.length(), in testCharacterTableIsPresent() local
|
/aosp_15_r20/packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/ |
D | BinaryDictOffdeviceUtilsTests.java | 111 final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder(decodeSpec.mResult, 0, in testGetRawDictWorks() local
|
/aosp_15_r20/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
D | BinaryDictOffdeviceUtils.java | 286 final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder( in getDictionary() local
|
D | DictionaryMaker.java | 234 final DictDecoder dictDecoder = BinaryDictIOUtils.getDictDecoder(file, 0, file.length()); in readBinaryFile() local
|