OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_SUGGESTIONS
(Results
1 - 5
of
5
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
MoreSuggestions.java
48
private final int[] mWidths = new int[SuggestionsView.
MAX_SUGGESTIONS
];
49
private final int[] mRowNumbers = new int[SuggestionsView.
MAX_SUGGESTIONS
];
50
private final int[] mColumnOrders = new int[SuggestionsView.
MAX_SUGGESTIONS
];
51
private final int[] mNumColumnsInRow = new int[SuggestionsView.
MAX_SUGGESTIONS
];
72
final int size = Math.min(suggestions.size(), SuggestionsView.
MAX_SUGGESTIONS
);
MoreSuggestionsView.java
71
if (index >= 0 && index < SuggestionsView.
MAX_SUGGESTIONS
) {
SuggestionsView.java
74
public static final int
MAX_SUGGESTIONS
= 18;
499
for (int pos = 0; pos <
MAX_SUGGESTIONS
; pos++) {
[
all
...]
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java
45
private static final int
MAX_SUGGESTIONS
= 32;
48
private int[] mWordWidth = new int[
MAX_SUGGESTIONS
];
49
private int[] mWordX = new int[
MAX_SUGGESTIONS
];
/packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListAdapter.java
39
private static final int
MAX_SUGGESTIONS
= 4;
96
builder.appendQueryParameter("limit", String.valueOf(
MAX_SUGGESTIONS
));
Completed in 2386 milliseconds