OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:moreKeys
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeySpecParser.java
310
final String[]
moreKeys
= filterOutEmptyString(moreKeySpecs);
312
final int moreKeysCount =
moreKeys
.length;
317
final String moreKeySpec =
moreKeys
[moreKeyIndex];
325
moreKeys
[moreKeyIndex] = additionalMoreKey;
331
out = arrayAsList(
moreKeys
, 0, moreKeyIndex);
345
+ "
moreKeys
=" + Arrays.toString(
moreKeys
)
350
out.add(
moreKeys
[i]);
357
+ "
moreKeys
=" + Arrays.toString(
moreKeys
)
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboard.java
279
final MoreKeySpec[]
moreKeys
= parentKey.getMoreKeys();
287
&& !parentKey.noKeyPreview() &&
moreKeys
.length == 1
316
mParams.setParameters(
moreKeys
.length, parentKey.getMoreKeysColumn(),
340
final MoreKeySpec[]
moreKeys
= mParentKey.getMoreKeys();
341
for (int n = 0; n <
moreKeys
.length; n++) {
342
final MoreKeySpec moreKeySpec =
moreKeys
[n];
Key.java
279
String[]
moreKeys
= style.getStringArray(keyAttr, R.styleable.Keyboard_Key_moreKeys);
284
if ((value = KeySpecParser.getIntValue(
moreKeys
, MORE_KEYS_AUTO_COLUMN_ORDER, -1)) > 0) {
287
if ((value = KeySpecParser.getIntValue(
moreKeys
, MORE_KEYS_FIXED_COLUMN_ORDER, -1)) > 0) {
290
if (KeySpecParser.getBooleanValue(
moreKeys
, MORE_KEYS_HAS_LABELS)) {
293
if (KeySpecParser.getBooleanValue(
moreKeys
, MORE_KEYS_NEEDS_DIVIDERS)) {
296
if (KeySpecParser.getBooleanValue(
moreKeys
, MORE_KEYS_NO_PANEL_AUTO_MORE_KEY)) {
308
moreKeys
= KeySpecParser.insertAdditionalMoreKeys(
moreKeys
, additionalMoreKeys);
309
if (
moreKeys
!= null) {
311
mMoreKeys = new MoreKeySpec[
moreKeys
.length]
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeySpecParserTests.java
360
private static void assertInsertAdditionalMoreKeys(String message, String[]
moreKeys
,
363
KeySpecParser.insertAdditionalMoreKeys(
moreKeys
, additionalMoreKeys);
587
private static void assertGetBooleanValue(String message, String key, String[]
moreKeys
,
589
final String[] actual = Arrays.copyOf(
moreKeys
,
moreKeys
.length);
[
all
...]
Completed in 564 milliseconds