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;
49 // Keyboard layout to subtype name resource id map.
52 // Exceptional locale to subtype name resource id map.
65 // This is for compatibility to keep the same subtype ids as pre-JellyBean.
89 // Register subtype name resource id of "No language" with key "zz_<layout>"
167 public static String getSubtypeDisplayName(final InputMethodSubtype subtype, Resources res) {
169 && subtype.containsExtraValueKey(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME))
170 ? subtype.getExtraValueOf(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME)
171 : getSubtypeLocaleDisplayName(subtype.getLocale())
    [all...]
ImfUtils.java 19 import static com.android.inputmethod.latin.Constants.Subtype.KEYBOARD_MODE;
72 for (final InputMethodSubtype subtype : subtypes) {
73 if (subtype.equals(ims)) {
85 final InputMethodSubtype subtype = myImi.getSubtypeAt(i); local
86 if (subtype.equals(ims)) {
133 for (InputMethodSubtype subtype : subtypes) {
134 if (subtype.isAuxiliary()) {
155 // both explicitly and implicitly enabled input method subtype.
157 for (InputMethodSubtype subtype : subtypes) {
158 if (KEYBOARD_MODE.equals(subtype.getMode()))
170 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
    [all...]
SubtypeSwitcher.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.REQ_NETWORK_CONNECTIVITY;
104 throw new RuntimeException("Can't find no lanugage with QWERTY subtype");
123 * @return true if the current subtype is enabled.
135 * @param subtype the subtype to be checked
136 * @return true if the {@code subtype} is enabled.
138 private boolean updateEnabledSubtypesAndReturnIfEnabled(final InputMethodSubtype subtype) {
144 if (ims.equals(subtype)) {
149 Log.w(TAG, "Subtype: " + subtype.getLocale() + "/" + subtype.getExtraValue(
    [all...]
AdditionalSubtypeSettings.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.ASCII_CAPABLE;
96 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
97 if (subtype.containsExtraValueKey(ASCII_CAPABLE)) {
98 items.add(createItem(context, subtype.getLocale()));
117 public KeyboardLayoutSetItem(final InputMethodSubtype subtype) {
118 super(SubtypeLocale.getKeyboardLayoutSetName(subtype),
119 SubtypeLocale.getKeyboardLayoutSetDisplayName(subtype));
135 // This is a dummy subtype with NO_LANGUAGE, only for display.
136 final InputMethodSubtype subtype = AdditionalSubtype.createAdditionalSubtype( local
138 add(new KeyboardLayoutSetItem(subtype));
272 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 593 const object::mach::CPUSubtypeARM Subtype;
596 : ARMAsmBackend(T, TT), Subtype(st) { }
601 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;
80 public KeyboardId(int elementId, InputMethodSubtype subtype, int deviceFormFactor,
83 mSubtype = subtype;
84 mLocale = SubtypeLocale.getSubtypeLocale(subtype);
KeyboardLayoutSet.java 23 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.ASCII_CAPABLE;
238 public Builder setSubtype(final InputMethodSubtype subtype) {
239 final boolean asciiCapable = subtype.containsExtraValueKey(ASCII_CAPABLE);
248 : subtype;
278 throw new RuntimeException("KeyboardLayoutSet subtype is not specified");
  /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...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
pdfjs.js     [all...]
  /external/grub/docs/
texinfo.tex     [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex     [all...]

Completed in 470 milliseconds