Home | History | Annotate | Download | only in keyboard

Lines Matching defs:moreKeys

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 moreKeys != null) {
330 mMoreKeys = new MoreKeySpec[moreKeys.length];
331 for (int i = 0; i < moreKeys.length; i++) {
332 mMoreKeys[i] = new MoreKeySpec(moreKeys[i], needsToUpcase, localeForUpcasing);
418 private Key(@Nonnull final Key key, @Nullable final MoreKeySpec[] moreKeys) {
432 mMoreKeys = moreKeys;
447 final MoreKeySpec[] moreKeys = key.getMoreKeys();
449 moreKeys, lettersOnBaseLayout);
450 return (filteredMoreKeys == moreKeys) ? key : new Key(key, filteredMoreKeys);