Home
last modified time | relevance | path

Searched refs:decodedSpec (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DBinaryDictOffdeviceUtils.java271 final DecoderChainSpec<File> decodedSpec = getRawDictionaryOrNull(file); in getDictionary() local
272 if (null == decodedSpec) { in getDictionary()
275 if (CombinedInputOutput.isCombinedDictionary(decodedSpec.mResult.getAbsolutePath())) { in getDictionary()
278 System.out.println("Packaging : " + decodedSpec.describeChain()); in getDictionary()
279 System.out.println("Uncompressed size : " + decodedSpec.mResult.length()); in getDictionary()
282 new InputStreamReader(new FileInputStream(decodedSpec.mResult), "UTF-8"))) { in getDictionary()
287 decodedSpec.mResult, 0, decodedSpec.mResult.length(), in getDictionary()
291 System.out.println("Packaging : " + decodedSpec.describeChain()); in getDictionary()
292 System.out.println("Uncompressed size : " + decodedSpec.mResult.length()); in getDictionary()
DPackage.java82 final BinaryDictOffdeviceUtils.DecoderChainSpec<DictionaryHeader> decodedSpec = in run() local
85 if (null == decodedSpec) { in run()
89 System.out.println("Packaging : " + decodedSpec.describeChain()); in run()
91 final InputStream input = decodedSpec.getStream(new File(mArgs[0])); in run()