HomeSort by relevance Sort by last modified time
    Searched defs:moreKeys (Results 1 - 6 of 6) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 151 public static MoreKeySpec[] removeRedundantMoreKeys(@Nullable final MoreKeySpec[] moreKeys,
153 if (moreKeys == null) {
157 for (final MoreKeySpec moreKey : moreKeys) {
163 if (size == moreKeys.length) {
164 return moreKeys;
259 final String[] moreKeys = filterOutEmptyString(moreKeySpecs);
261 final int moreKeysCount = moreKeys.length;
266 final String moreKeySpec = moreKeys[moreKeyIndex];
274 moreKeys[moreKeyIndex] = additionalMoreKey;
280 out = CollectionUtils.arrayAsList(moreKeys, 0, moreKeyIndex)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ActualKeyboardBuilder.java 145 final MoreKeySpec[] moreKeys = key.getMoreKeys();
146 if (moreKeys == null) {
150 sb.append(MoreKeySpecStringizer.STRINGIZER.join(moreKeys));
ExpectedKey.java 33 static ExpectedKey newInstance(final String label, final ExpectedKey... moreKeys) {
34 return newInstance(label, label, moreKeys);
39 final ExpectedKey... moreKeys) {
41 ExpectedKeyOutput.newInstance(outputText), moreKeys);
46 final ExpectedKey... moreKeys) {
48 ExpectedKeyOutput.newInstance(code), moreKeys);
53 final ExpectedKey... moreKeys) {
55 ExpectedKeyOutput.newInstance(outputText), moreKeys);
60 final ExpectedKey... moreKeys) {
62 ExpectedKeyOutput.newInstance(code), moreKeys);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboard.java 312 final MoreKeySpec[] moreKeys = key.getMoreKeys();
313 mParams.setParameters(moreKeys.length, key.getMoreKeysColumnNumber(), keyWidth,
337 final MoreKeySpec[] moreKeys = mParentKey.getMoreKeys();
338 for (int n = 0; n < moreKeys.length; n++) {
339 final MoreKeySpec moreKeySpec = moreKeys[n];
Key.java 292 String[] moreKeys = style.getStringArray(keyAttr, R.styleable.Keyboard_Key_moreKeys);
299 if ((value = MoreKeySpec.getIntValue(moreKeys, MORE_KEYS_AUTO_COLUMN_ORDER, -1)) > 0) {
304 if ((value = MoreKeySpec.getIntValue(moreKeys, MORE_KEYS_FIXED_COLUMN_ORDER, -1)) > 0) {
309 if (MoreKeySpec.getBooleanValue(moreKeys, MORE_KEYS_HAS_LABELS)) {
312 if (MoreKeySpec.getBooleanValue(moreKeys, MORE_KEYS_NEEDS_DIVIDERS)) {
315 if (MoreKeySpec.getBooleanValue(moreKeys, MORE_KEYS_NO_PANEL_AUTO_MORE_KEY)) {
327 moreKeys = MoreKeySpec.insertAdditionalMoreKeys(moreKeys, additionalMoreKeys);
328 if (moreKeys != null) {
330 mMoreKeys = new MoreKeySpec[moreKeys.length]
    [all...]
MainKeyboardView.java 598 final MoreKeySpec[] moreKeys = key.getMoreKeys();
599 if (moreKeys == null) {
610 && !key.noKeyPreview() && moreKeys.length == 1
    [all...]

Completed in 175 milliseconds