HomeSort by relevance Sort by last modified time
    Searched refs:Subtype (Results 1 - 18 of 18) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Constants.java 65 public static final class Subtype {
67 * The subtype mode used to indicate that the subtype is a keyboard.
73 * The subtype extra value used to indicate that the subtype keyboard layout is capable
79 * The subtype extra value used to indicate that the subtype require network connection
85 * The subtype extra value used to indicate that the subtype display name contains "%s"
93 * The subtype extra value used to indicate that the subtype keyboard layout set name
    [all...]
AdditionalSubtype.java 19 import static com.android.inputmethod.latin.Constants.Subtype.KEYBOARD_MODE;
20 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.IS_ADDITIONAL_SUBTYPE;
21 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
22 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME;
37 public static boolean isAdditionalSubtype(final InputMethodSubtype subtype) {
38 return subtype.containsExtraValueKey(IS_ADDITIONAL_SUBTYPE);
65 public static String getPrefSubtype(final InputMethodSubtype subtype) {
66 final String localeString = subtype.getLocale();
67 final String keyboardLayoutSetName = SubtypeLocale.getKeyboardLayoutSetName(subtype);
70 StringUtils.removeFromCsvIfExists(IS_ADDITIONAL_SUBTYPE, subtype.getExtraValue()))
96 final InputMethodSubtype subtype = createAdditionalSubtype(prefSubtype); local
    [all...]
SubtypeLocale.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
20 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME;
50 // Keyboard layout to subtype name resource id map.
53 // Exceptional locale to subtype name resource id map.
56 // Exceptional locale to subtype name with layout resource id map.
68 // This is for compatibility to keep the same subtype ids as pre-JellyBean.
93 // Register subtype name resource id of "No language" with key "zz_<layout>"
180 // No language subtype should be displayed in system locale.
205 private static String getReplacementString(final InputMethodSubtype subtype,
208 && subtype.containsExtraValueKey(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME))
    [all...]
SubtypeSwitcher.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.REQ_NETWORK_CONNECTIVITY;
102 throw new RuntimeException("Can't find no lanugage with QWERTY subtype");
141 // TODO: Pick up the first found subtype for now. Should handle all subtypes
155 // Update the current subtype. LatinIME.onCurrentInputMethodSubtypeChanged calls this function.
186 private void switchToTargetIME(final String imiId, final InputMethodSubtype subtype,
196 imm.setInputMethodAndSubtype(token, imiId, subtype);
233 // Subtype Switching functions //
RichInputMethodManager.java 19 import static com.android.inputmethod.latin.Constants.Subtype.KEYBOARD_MODE;
136 Log.w(TAG, "Can't find current subtype in enabled subtypes: subtype="
142 // The current subtype is the last or only enabled one and it needs to switch to
164 // The next IME has no subtype.
206 final InputMethodSubtype subtype = imi.getSubtypeAt(index); local
207 if (!subtype.isAuxiliary()) {
222 public boolean checkIfSubtypeBelongsToThisImeAndEnabled(final InputMethodSubtype subtype) {
223 return checkIfSubtypeBelongsToImeAndEnabled(mInputMethodInfoOfThisIme, subtype);
227 final InputMethodSubtype subtype) {
346 final InputMethodSubtype subtype = myImi.getSubtypeAt(i); local
    [all...]
AdditionalSubtypeSettings.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.ASCII_CAPABLE;
101 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
104 subtype.getLocale(), subtype.hashCode(), subtype.hashCode(),
105 SubtypeLocale.getSubtypeDisplayNameInSystemLocale(subtype)));
107 if (subtype.containsExtraValueKey(ASCII_CAPABLE)) {
108 items.add(createItem(context, subtype.getLocale()));
127 public KeyboardLayoutSetItem(final InputMethodSubtype subtype) {
128 super(SubtypeLocale.getKeyboardLayoutSetName(subtype),
146 final InputMethodSubtype subtype = AdditionalSubtype.createAdditionalSubtype( local
282 final InputMethodSubtype subtype = AdditionalSubtype.createAdditionalSubtype( local
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 119 * @param subtype
127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) {
128 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null);
142 * @param subtype
150 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> props) {
151 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromProperties(props));
157 * @param subtype
165 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) {
166 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text);
192 this._subtype = map.get(Fields.Subtype);
253 String subtype = ""; local
345 String subtype = (qualifiedNameMap.containsKey(Fields.Subtype) ? qualifiedNameMap.get(Fields.Subtype) : ""); local
388 String subtype = this.getSubtype(); local
    [all...]
DNSEntry.java 81 * Check if two entries have the same subtype.
84 * @return <code>true</code> if the two entries have are for the same subtype, <code>false</code> otherwise
91 * Returns the subtype of this entry
93 * @return subtype of this entry
96 String subtype = this.getQualifiedNameMap().get(Fields.Subtype); local
97 return (subtype != null ? subtype : "");
DNSRecord.java 505 map.put(Fields.Subtype, this.getQualifiedNameMap().get(Fields.Subtype));
    [all...]
JmDNSImpl.java 125 public SubTypeEntry(String subtype) {
127 _value = (subtype != null ? subtype : "");
228 * @param subtype
232 public boolean contains(String subtype) {
233 return subtype != null && this.containsKey(subtype.toLowerCase());
240 * @param subtype
244 public boolean add(String subtype) {
245 if (subtype == null || this.contains(subtype))
1087 String subtype = map.get(Fields.Subtype); local
1962 String subtype = info.getSubtype().toLowerCase(); local
2045 String subtype = (info != null ? info.getSubtype() : ""); local
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 643 const object::mach::CPUSubtypeARM Subtype;
646 : ARMAsmBackend(T, TT), Subtype(st) {
653 Subtype);
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 29 * <li>&lt;sub&gt;: This is the subtype for the application protocol</li>
61 * Subtype Field.
63 Subtype
90 * @param subtype
91 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
98 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final String text) {
99 return new ServiceInfoImpl(type, name, subtype, port, 0, 0, false, text);
130 * @param subtype
131 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
142 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final String text)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
KeyboardLayoutSet.java 23 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.ASCII_CAPABLE;
257 public Builder setSubtype(final InputMethodSubtype subtype) {
258 final boolean asciiCapable = subtype.containsExtraValueKey(ASCII_CAPABLE);
267 : subtype;
296 throw new RuntimeException("KeyboardLayoutSet subtype is not specified");
421 final InputMethodSubtype subtype = local
423 return createKeyboardSet(context, subtype, SPELLCHECKER_DUMMY_KEYBOARD_WIDTH,
428 final InputMethodSubtype subtype, final int orientation,
443 return createKeyboardSet(context, subtype, width, height, testCasesHaveTouchCoordinates);
447 final InputMethodSubtype subtype, final int width, final int height
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchLogger.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
    [all...]
  /external/grub/docs/
texinfo.tex     [all...]
  /external/bison/build-aux/
texinfo.tex     [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex     [all...]

Completed in 689 milliseconds