OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MAX_SUGGESTIONS
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListAdapter.java
41
private static final int
MAX_SUGGESTIONS
= 4;
82
builder.appendQueryParameter("limit", String.valueOf(
MAX_SUGGESTIONS
));
/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java
63
public static final int
MAX_SUGGESTIONS
= 18;
243
MAX_SUGGESTIONS
);
364
MAX_SUGGESTIONS
);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripView.java
57
public static final int
MAX_SUGGESTIONS
= 18;
94
for (int pos = 0; pos <
MAX_SUGGESTIONS
; pos++) {
Completed in 371 milliseconds