OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bigramCount
(Results
1 - 7
of
7
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
bigram_dictionary.cpp
112
int
bigramCount
= 0;
137
++
bigramCount
;
139
return min(
bigramCount
, MAX_RESULTS);
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Info.java
43
int
bigramCount
= 0;
49
bigramCount
+= w.mBigrams.size();
61
System.out.println("Bigram count : " +
bigramCount
);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
AbstractDictDecoder.java
176
int
bigramCount
= 0;
177
while (
bigramCount
++ < FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
Ver3DictDecoder.java
250
int
bigramCount
= 0;
251
while (
bigramCount
++ < FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
266
if (
bigramCount
>= FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_writing_helper.cpp
151
const HeaderPolicy *const headerPolicy, const int unigramCount, const int
bigramCount
) {
156
false /* updatesLastDecayedTime */, unigramCount,
bigramCount
, extendedRegionSize)) {
167
int
bigramCount
= 0;
171
if (!runGC(rootPtNodeArrayPos, headerPolicy, &newDictBuffer, &unigramCount, &
bigramCount
)) {
176
mNeedsToDecay, unigramCount,
bigramCount
, 0 /* extendedRegionSize */)) {
301
int
bigramCount
= 0;
304
if (!mBigramPolicy->copyAllBigrams(bufferToWrite, &fromPos, writingPos, &
bigramCount
)) {
313
bigramCount
> 0 /* hasBigrams */, codePointCount > 1 /* hasMultipleChars */,
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryDecayingTests.java
245
final int
bigramCount
= 30000;
269
for (int i = 0; i <
bigramCount
; ++i) {
BinaryDictionaryTests.java
225
final int
bigramCount
= 1000;
255
for (int i = 0; i <
bigramCount
; i++) {
421
final int
bigramCount
= 1000;
452
for (int i = 0; i <
bigramCount
; i++) {
[
all
...]
Completed in 1386 milliseconds