OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:moreKeys
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpecParser.java
29
* String parser of
moreKeys
attribute of Key.
199
public static CharSequence[] filterOut(Resources res, CharSequence[]
moreKeys
,
201
if (
moreKeys
== null ||
moreKeys
.length < 1) {
204
if (
moreKeys
.length == 1
205
&& filter.shouldFilterOut(getCode(res,
moreKeys
[0].toString()))) {
209
for (int i = 0; i <
moreKeys
.length; i++) {
210
final CharSequence moreKeySpec =
moreKeys
[i];
215
filtered.add(
moreKeys
[j]);
223
return
moreKeys
;
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MiniKeyboard.java
235
private static int getMaxKeyWidth(KeyboardView view, CharSequence[]
moreKeys
,
241
for (CharSequence moreKeySpec :
moreKeys
) {
Key.java
242
final CharSequence[]
moreKeys
= style.getTextArray(keyAttr,
248
mMoreKeys = MoreKeySpecParser.filterOut(res,
moreKeys
, MoreKeySpecParser.DIGIT_FILTER);
250
mMoreKeys =
moreKeys
;
Completed in 448 milliseconds