Searched refs:mindsBlockByGC (Results 1 - 9 of 9) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
H A Ddictionary.h84 bool needsToRunGC(const bool mindsBlockByGC);
H A Ddictionary.cpp127 bool Dictionary::needsToRunGC(const bool mindsBlockByGC) { argument
128 return mDictionaryStructureWithBufferPolicy->needsToRunGC(mindsBlockByGC);
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
H A Ddictionary_structure_with_buffer_policy.h81 virtual bool needsToRunGC(const bool mindsBlockByGC) const = 0;
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
H A Ddynamic_patricia_trie_policy.h95 bool needsToRunGC(const bool mindsBlockByGC) const;
H A Dpatricia_trie_policy.h110 bool needsToRunGC(const bool mindsBlockByGC) const {
H A Ddynamic_patricia_trie_policy.cpp336 bool DynamicPatriciaTriePolicy::needsToRunGC(const bool mindsBlockByGC) const {
356 mindsBlockByGC, mUnigramCount, mBigramCount, &mHeaderPolicy);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableBinaryDictionary.java288 protected void runGCIfRequired(final boolean mindsBlockByGC) { argument
293 runGCIfRequiredInternalLocked(mindsBlockByGC);
298 private void runGCIfRequiredInternalLocked(final boolean mindsBlockByGC) { argument
301 if (mBinaryDictionary.needsToRunGC(mindsBlockByGC)) {
331 runGCIfRequiredInternalLocked(true /* mindsBlockByGC */);
356 runGCIfRequiredInternalLocked(true /* mindsBlockByGC */);
380 runGCIfRequiredInternalLocked(true /* mindsBlockByGC */);
551 if (mBinaryDictionary.needsToRunGC(false /* mindsBlockByGC */)) {
H A DBinaryDictionary.java123 private static native boolean needsToRunGCNative(long dict, boolean mindsBlockByGC); argument
327 * @param mindsBlockByGC Whether to mind operations blocked by GC. We don't need to care about
331 public boolean needsToRunGC(final boolean mindsBlockByGC) { argument
333 return needsToRunGCNative(mNativeDict, mindsBlockByGC);
/packages/inputmethods/LatinIME/native/jni/
H A Dcom_android_inputmethod_latin_BinaryDictionary.cpp115 jlong dict, jboolean mindsBlockByGC) {
118 return dictionary->needsToRunGC(mindsBlockByGC == JNI_TRUE);
114 latinime_BinaryDictionary_needsToRunGC(JNIEnv *env, jclass clazz, jlong dict, jboolean mindsBlockByGC) argument

Completed in 14 milliseconds