Home
last modified time | relevance | path

Searched refs:isNearSizeLimit (Results 1 – 12 of 12) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
Dver4_dict_buffers.h62 AK_FORCE_INLINE bool isNearSizeLimit() const { in isNearSizeLimit() function
63 return mExpandableTrieBuffer.isNearSizeLimit() in isNearSizeLimit()
64 || mTerminalPositionLookupTable.isNearSizeLimit() in isNearSizeLimit()
65 || mProbabilityDictContent.isNearSizeLimit() in isNearSizeLimit()
66 || mBigramDictContent.isNearSizeLimit() in isNearSizeLimit()
67 || mShortcutDictContent.isNearSizeLimit(); in isNearSizeLimit()
Dver4_patricia_trie_policy.cpp506 if (mBuffers->isNearSizeLimit()) { in needsToRunGC()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
Dver4_dict_buffers.h51 AK_FORCE_INLINE bool isNearSizeLimit() const { in isNearSizeLimit() function
52 return mExpandableTrieBuffer.isNearSizeLimit() in isNearSizeLimit()
53 || mTerminalPositionLookupTable.isNearSizeLimit() in isNearSizeLimit()
54 || mLanguageModelDictContent.isNearSizeLimit() in isNearSizeLimit()
55 || mShortcutDictContent.isNearSizeLimit(); in isNearSizeLimit()
Dver4_patricia_trie_policy.cpp461 if (mBuffers->isNearSizeLimit()) { in needsToRunGC()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
Dsparse_table_dict_content.h53 bool isNearSizeLimit() const { in isNearSizeLimit() function
54 return mExpandableLookupTableBuffer.isNearSizeLimit() in isNearSizeLimit()
55 || mExpandableAddressTableBuffer.isNearSizeLimit() in isNearSizeLimit()
56 || mExpandableContentBuffer.isNearSizeLimit(); in isNearSizeLimit()
Dsingle_dict_content.h41 bool isNearSizeLimit() const { in isNearSizeLimit() function
42 return mExpandableContentBuffer.isNearSizeLimit(); in isNearSizeLimit()
Dlanguage_model_dict_content.h144 bool isNearSizeLimit() const { in isNearSizeLimit() function
145 return mTrieMap.isNearSizeLimit() || mGlobalCounters.needsToHalveCounters(); in isNearSizeLimit()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/content/
Dsparse_table_dict_content.h83 bool isNearSizeLimit() const { in isNearSizeLimit() function
84 return mExpandableLookupTableBuffer.isNearSizeLimit() in isNearSizeLimit()
85 || mExpandableAddressTableBuffer.isNearSizeLimit() in isNearSizeLimit()
86 || mExpandableContentBuffer.isNearSizeLimit(); in isNearSizeLimit()
Dsingle_dict_content.h60 bool isNearSizeLimit() const { in isNearSizeLimit() function
61 return mExpandableContentBuffer.isNearSizeLimit(); in isNearSizeLimit()
/packages/inputmethods/LatinIME/native/jni/tests/dictionary/utils/
Dbuffer_with_extendable_buffer_test.cpp84 EXPECT_FALSE(buffer.isNearSizeLimit()); in TEST()
86 while (!buffer.isNearSizeLimit()) { in TEST()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
Dtrie_map.h172 bool isNearSizeLimit() const { in isNearSizeLimit() function
173 return mBuffer.isNearSizeLimit(); in isNearSizeLimit()
Dbuffer_with_extendable_buffer.h84 AK_FORCE_INLINE bool isNearSizeLimit() const { in isNearSizeLimit() function