OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:addNgramEntry
(Results
1 - 10
of
10
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.h
96
bool
addNgramEntry
(const NgramProperty *const ngramProperty) {
98
AKLOGI("Warning:
addNgramEntry
() is called for non-updatable dictionary.");
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_updating_helper.cpp
84
bool DynamicPtUpdatingHelper::
addNgramEntry
(const PtNodePosArrayView prevWordsPtNodePos,
99
return mPtNodeWriter->
addNgramEntry
(prevWordIds, wordId, ngramProperty, outAddedNewEntry);
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
ver4_patricia_trie_node_writer.cpp
206
bool Ver4PatriciaTrieNodeWriter::
addNgramEntry
(const WordIdArrayView prevWordIds, const int wordId,
ver4_patricia_trie_policy.cpp
272
bool Ver4PatriciaTriePolicy::
addNgramEntry
(const NgramProperty *const ngramProperty) {
274
AKLOGI("Warning:
addNgramEntry
() is called for non-updatable dictionary.");
323
if (mNodeWriter.
addNgramEntry
(prevWordIds, wordId, ngramProperty, &addedNewEntry)) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.cpp
146
bool Dictionary::
addNgramEntry
(const NgramProperty *const ngramProperty) {
148
return mDictionaryStructureWithBufferPolicy->
addNgramEntry
(ngramProperty);
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_node_writer.cpp
234
bool Ver4PatriciaTrieNodeWriter::
addNgramEntry
(const WordIdArrayView prevWordIds, const int wordId,
ver4_patricia_trie_policy.cpp
347
bool Ver4PatriciaTriePolicy::
addNgramEntry
(const NgramProperty *const ngramProperty) {
349
AKLOGI("Warning:
addNgramEntry
() is called for non-updatable dictionary.");
397
if (mUpdatingHelper.
addNgramEntry
(PtNodePosArrayView::singleElementView(&prevWordPtNodePos),
468
if (!
addNgramEntry
(&ngramProperty)) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java
475
public boolean
addNgramEntry
(final NgramContext ngramContext, final String word,
ExpandableBinaryDictionary.java
340
public void
addNgramEntry
(@Nonnull final NgramContext ngramContext, final String word,
357
if (!mBinaryDictionary.
addNgramEntry
(ngramContext, word, frequency, timestamp)) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java
185
binaryDictionary.
addNgramEntry
(new NgramContext(new WordInfo(word0)), word1, probability,
191
binaryDictionary.
addNgramEntry
(
[
all
...]
Completed in 442 milliseconds