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

1 2

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackendDarwin.h 21 const MachO::CPUSubTypeARM Subtype;
24 : ARMAsmBackend(T, TT, /* IsLittleEndian */ true), MRI(MRI), Subtype(st) {
30 Subtype);
ARMAsmBackend.cpp 839 if (Subtype != MachO::CPU_SUBTYPE_ARM_V7K)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
AdditionalSubtypeUtilsTests.java 19 import static com.android.inputmethod.latin.common.Constants.Subtype.KEYBOARD_MODE;
20 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.ASCII_CAPABLE;
21 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.EMOJI_CAPABLE;
22 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.IS_ADDITIONAL_SUBTYPE;
23 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
24 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME;
40 * Predictable subtype ID for en_US dvorak layout. This is actually a hash code calculated as
75 * Predictable subtype ID for azerty layout. This is actually a hash code calculated as follows.
108 private static void assertEnUsDvorak(InputMethodSubtype subtype) {
109 assertEquals("en_US", subtype.getLocale())
    [all...]
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
Constants.java 77 public static final class Subtype {
79 * The subtype mode used to indicate that the subtype is a keyboard.
85 * The subtype extra value used to indicate that this subtype is capable of
91 * The subtype extra value used to indicate that this subtype is enabled
92 * when the default subtype is not marked as ascii capable.
98 * The subtype extra value used to indicate that this subtype is capable o
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AdditionalSubtypeUtils.java 19 import static com.android.inputmethod.latin.common.Constants.Subtype.KEYBOARD_MODE;
20 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.ASCII_CAPABLE;
21 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.EMOJI_CAPABLE;
22 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.IS_ADDITIONAL_SUBTYPE;
23 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
24 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME;
49 public static boolean isAdditionalSubtype(final InputMethodSubtype subtype) {
50 return subtype.containsExtraValueKey(IS_ADDITIONAL_SUBTYPE);
90 public static String getPrefSubtype(final InputMethodSubtype subtype) {
91 final String localeString = subtype.getLocale()
121 final InputMethodSubtype subtype = createAsciiEmojiCapableAdditionalSubtype( local
    [all...]
SubtypeLocaleUtils.java 19 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.COMBINING_RULES;
20 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
21 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME;
40 * A helper class to deal with subtype locales.
60 // Keyboard layout to subtype name resource id map.
65 // Exceptional locale to subtype name resource id map.
67 // Exceptional locale to subtype name with layout resource id map.
81 // This is for compatibility to keep the same subtype ids as pre-JellyBean.
112 // Register subtype name resource id of "No language" with key "zz_<layout>"
211 // No language subtype should be displayed in system locale
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodSubtype.java 19 import static com.android.inputmethod.latin.common.Constants.Subtype.KEYBOARD_MODE;
40 * Right now, this returns the extra value of its primary subtype.
64 public RichInputMethodSubtype(@Nonnull final InputMethodSubtype subtype) {
65 mSubtype = subtype;
71 // Extra values are determined by the primary subtype. This is probably right, but
77 // The mode is also determined by the primary subtype.
141 return "Multi-lingual subtype: " + mSubtype + ", " + mLocale;
155 // The subtype is considered RTL if the language of the main subtype is RTL.
169 @Nullable final InputMethodSubtype subtype) {
    [all...]
RichInputMethodManager.java 19 import static com.android.inputmethod.latin.common.Constants.Subtype.KEYBOARD_MODE;
109 // Initialize the current input method subtype and the shortcut IME.
151 Log.w(TAG, "Can't find current subtype in enabled subtypes: subtype="
157 // The current subtype is the last or only enabled one and it needs to switch to
179 // The next IME has no subtype.
221 final InputMethodSubtype subtype = imi.getSubtypeAt(index); local
222 if (!subtype.isAuxiliary()) {
290 public boolean checkIfSubtypeBelongsToThisImeAndEnabled(final InputMethodSubtype subtype) {
291 return checkIfSubtypeBelongsToList(subtype,
422 final InputMethodSubtype subtype = myImi.getSubtypeAt(i); local
439 final InputMethodSubtype subtype = subtypes.get(i); local
446 final InputMethodSubtype subtype = subtypes.get(i); local
455 final InputMethodSubtype subtype = subtypes.get(i); local
463 final InputMethodSubtype subtype = subtypes.get(i); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodSubtypeCompatUtils.java 75 public static boolean isAsciiCapable(final RichInputMethodSubtype subtype) {
76 return isAsciiCapable(subtype.getRawSubtype());
79 public static boolean isAsciiCapable(final InputMethodSubtype subtype) {
80 return isAsciiCapableWithAPI(subtype)
81 || subtype.containsExtraValueKey(Constants.Subtype.ExtraValue.ASCII_CAPABLE);
88 public static Locale getLocaleObject(final InputMethodSubtype subtype) {
91 final String languageTag = (String) CompatUtils.invoke(subtype, null, GET_LANGUAGE_TAG);
96 return LocaleUtils.constructLocaleFromString(subtype.getLocale());
100 public static boolean isAsciiCapableWithAPI(final InputMethodSubtype subtype) {
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 384 + "," + Constants.Subtype.ExtraValue.ASCII_CAPABLE
385 + "," + Constants.Subtype.ExtraValue.ENABLED_WHEN_DEFAULT_IS_NOT_ASCII_CAPABLE
386 + "," + Constants.Subtype.ExtraValue.EMOJI_CAPABLE
388 final InputMethodSubtype subtype = InputMethodSubtypeCompatUtils.newInputMethodSubtype( local
392 Constants.Subtype.KEYBOARD_MODE,
397 RichInputMethodManager.forceSubtype(subtype);
398 mLatinIME.onCurrentInputMethodSubtypeChanged(subtype);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddkbd.h 102 UCHAR Subtype;
wincrypt.h 605 GUID Subtype;
    [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/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...]
  /external/opencv3/modules/videoio/src/
cap_winrt_video.cpp 125 props->Subtype = MediaEncodingSubtypes::Rgb24; bytesPerPixel = 3;
128 // props->Subtype = MediaEncodingSubtypes::Bgra8; bytesPerPixel = 4;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 19 import static com.android.inputmethod.latin.common.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 797 const MachO::CPUSubTypeX86 Subtype;
801 : DarwinX86AsmBackend(T, MRI, CPU, true), Subtype(st) {}
805 MachO::CPU_TYPE_X86_64, Subtype);
  /external/webrtc/webrtc/modules/video_capture/windows/
sink_filter_ds.cc 177 const GUID *SubType = pMediaType->Subtype();
178 if (SubType == NULL)
196 if(*SubType == MEDIASUBTYPE_RGB24
211 if(*SubType == MEDIASUBTYPE_MJPG
217 if(*SubType == MEDIASUBTYPE_I420
223 if(*SubType == MEDIASUBTYPE_YUY2
230 if(*SubType == MEDIASUBTYPE_UYVY
237 if(*SubType == MEDIASUBTYPE_HDYC)
242 if(*SubType == MEDIASUBTYPE_RGB2
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
atm.h 80 UCHAR Subtype;
wmidata.h     [all...]
wdm.h     [all...]
  /external/opencv3/samples/winrt/ImageManipulations/
AdvancedCapture.xaml.cpp 568 if(!videoEncodingProperties->Subtype->Equals("H264")) //Cant add an effect to an H264 stream

Completed in 524 milliseconds

1 2