Lines Matching refs:dict

169     private static native void getHeaderInfoNative(long dict, int[] outHeaderSize,
172 private static native boolean flushNative(long dict, String filePath);
173 private static native boolean needsToRunGCNative(long dict, boolean mindsBlockByGC);
174 private static native boolean flushWithGCNative(long dict, String filePath);
175 private static native void closeNative(long dict);
176 private static native int getFormatVersionNative(long dict);
177 private static native int getProbabilityNative(long dict, int[] word);
178 private static native int getMaxProbabilityOfExactMatchesNative(long dict, int[] word);
179 private static native int getNgramProbabilityNative(long dict, int[][] prevWordCodePointArrays,
181 private static native void getWordPropertyNative(long dict, int[] word,
186 private static native int getNextWordNative(long dict, int token, int[] outCodePoints,
188 private static native void getSuggestionsNative(long dict, long proximityInfo,
195 private static native boolean addUnigramEntryNative(long dict, int[] word, int probability,
198 private static native boolean removeUnigramEntryNative(long dict, int[] word);
199 private static native boolean addNgramEntryNative(long dict,
202 private static native boolean removeNgramEntryNative(long dict,
204 private static native int addMultipleDictionaryEntriesNative(long dict,
206 private static native String getPropertyNative(long dict, String query);
207 private static native boolean isCorruptedNative(long dict);
208 private static native boolean migrateNative(long dict, String dictFilePath,
211 // TODO: Move native dict into session
229 Log.e(TAG, "dict size: " + mDictSize);
518 // Flush to dict file if the dictionary has been updated.
530 // Run GC and flush to dict file if the dictionary has been updated.
538 // Run GC and flush to dict file.