OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_results
(Results
1 - 16
of
16
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/
bigram_dictionary.cpp
52
while (insertAt <
MAX_RESULTS
) {
61
AKLOGI("Bigram: InsertAt -> %d
MAX_RESULTS
: %d", insertAt,
MAX_RESULTS
);
63
if (insertAt >=
MAX_RESULTS
) {
68
(
MAX_RESULTS
- insertAt - 1) * sizeof(bigramProbability[0]));
73
(
MAX_RESULTS
- insertAt - 1) * sizeof(bigramCodePoints[0]) * MAX_WORD_LENGTH);
143
return min(bigramCount,
MAX_RESULTS
);
defines.h
33
// Must be equal to BinaryDictionary.
MAX_RESULTS
in Java
34
#define
MAX_RESULTS
18
85
for (int i = 0; i <
MAX_RESULTS
; ++i) {
unigram_dictionary.cpp
160
WordsPriorityQueuePool queuePool(
MAX_RESULTS
, SUB_QUEUE_MAX_WORDS);
[
all
...]
/external/chromium/chrome/browser/history/
visit_database.h
62
// If |
max_results
| is non-zero, up to that many results will be returned. If
68
int
max_results
, VisitVector* visits);
74
// If |
max_results
| is non-zero, up to that many results will be returned. If
81
int
max_results
,
108
// Returns the |
max_results
| most recent visit sessions for |url_id|.
114
int
max_results
,
visit_database.cc
248
int
max_results
,
264
max_results
?
max_results
: std::numeric_limits<int64>::max());
272
int
max_results
,
293
max_results
?
max_results
: std::numeric_limits<int64>::max());
366
int
max_results
,
382
statement.BindInt(1,
max_results
);
url_database.cc
294
size_t
max_results
,
331
statement.BindInt(2, static_cast<int>(
max_results
));
url_database.h
172
size_t
max_results
,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java
37
// Must be equal to
MAX_RESULTS
in native/jni/src/defines.h
38
private static final int
MAX_RESULTS
= 18;
43
private final int[] mOutputCodePoints = new int[MAX_WORD_LENGTH *
MAX_RESULTS
];
44
private final int[] mSpaceIndices = new int[
MAX_RESULTS
];
45
private final int[] mOutputScores = new int[
MAX_RESULTS
];
46
private final int[] mOutputTypes = new int[
MAX_RESULTS
];
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_state_prevword.h
98
for (int i = 0; i <
MAX_RESULTS
; i++) {
143
int mPrevSpacePositions[
MAX_RESULTS
];
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
shortcut_utils.h
32
while (iterator.hasNextShortcutTarget() && outputWordIndex <
MAX_RESULTS
) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/
suggest.cpp
106
traverseSession->resetCache(TRAVERSAL->getMaxCacheSize(),
MAX_RESULTS
);
123
const int terminalSize = min(
MAX_RESULTS
,
126
DicNode terminals[
MAX_RESULTS
]; // Avoiding non-POD variable length array
152
for (int terminalIndex = 0; terminalIndex < terminalSize && outputWordIndex <
MAX_RESULTS
;
/packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp
165
if (outputCodePointsLength != (MAX_WORD_LENGTH *
MAX_RESULTS
)) {
171
if (scoresLength !=
MAX_RESULTS
) {
/external/chromium/chrome/browser/autocomplete/
history_url_provider.h
268
// Removes results that redirect to each other, leaving at most |
max_results
|
272
size_t
max_results
) const;
history_url_provider.cc
715
size_t
max_results
) const {
717
(source < matches->size()) && (source <
max_results
); ) {
739
if (matches->size() >
max_results
)
740
matches->resize(
max_results
);
[
all
...]
/external/freetype/src/sfnt/
ttcmap.c
2667
FT_UInt32
max_results
;
member in struct:TT_CMap14Rec_
[
all
...]
/frameworks/base/core/java/android/speech/
RecognizerIntent.java
237
public static final String EXTRA_MAX_RESULTS = "android.speech.extra.
MAX_RESULTS
";
Completed in 451 milliseconds