HomeSort by relevance Sort by last modified time
    Searched refs:subtype (Results 76 - 100 of 544) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
iterators.py 49 def typed_subpart_iterator(msg, maintype='text', subtype=None):
53 "text". Optional `subtype' is the MIME subtype to match against; if
58 if subtype is None or subpart.get_content_subtype() == subtype:
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
CustomInputStyleSettingsFragment.java 87 for (final InputMethodSubtype subtype : subtypes) {
88 subtypeNames.add(SubtypeLocaleUtils.getSubtypeDisplayNameInSystemLocale(subtype));
171 final InputMethodSubtype subtype = stylePref.getSubtype(); local
175 if (findDuplicatedSubtype(subtype) == null) {
180 // Saved subtype is duplicated.
185 showSubtypeAlreadyExistsToast(subtype);
191 final InputMethodSubtype subtype = stylePref.getSubtype(); local
192 if (findDuplicatedSubtype(subtype) == null) {
200 // Newly added subtype is duplicated.
203 showSubtypeAlreadyExistsToast(subtype);
    [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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
abc.py 134 subtype = type(instance)
136 if subtype is _InstanceType:
137 subtype = subclass
138 if subtype is subclass or subclass is None:
141 subtype in cls._abc_negative_cache):
144 return cls.__subclasscheck__(subtype)
146 cls.__subclasscheck__(subtype))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
abc.py 134 subtype = type(instance)
136 if subtype is _InstanceType:
137 subtype = subclass
138 if subtype is subclass or subclass is None:
141 subtype in cls._abc_negative_cache):
144 return cls.__subclasscheck__(subtype)
146 cls.__subclasscheck__(subtype))
  /external/python/cpython2/Lib/
abc.py 134 subtype = type(instance)
136 if subtype is _InstanceType:
137 subtype = subclass
138 if subtype is subclass or subclass is None:
141 subtype in cls._abc_negative_cache):
144 return cls.__subclasscheck__(subtype)
146 cls.__subclasscheck__(subtype))
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
ActionTestsBase.java 72 protected static Locale getLabelLocale(final InputMethodSubtype subtype) {
73 final String localeString = subtype.getLocale();
89 protected void doTestActionKey(final String tag, final InputMethodSubtype subtype,
93 doTestActionKey(tag, subtype, editorInfo, expectedKey);
96 protected void doTestActionKey(final String tag, final InputMethodSubtype subtype,
100 final KeyboardLayoutSet layoutSet = createKeyboardLayoutSet(subtype, editorInfo);
112 final KeyboardLayoutSet passwordSet = createKeyboardLayoutSet(subtype, editorInfo);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
abc.py 134 subtype = type(instance)
136 if subtype is _InstanceType:
137 subtype = subclass
138 if subtype is subclass or subclass is None:
141 subtype in cls._abc_negative_cache):
144 return cls.__subclasscheck__(subtype)
146 cls.__subclasscheck__(subtype))
  /prebuilts/gdb/linux-x86/lib/python2.7/
abc.py 134 subtype = type(instance)
136 if subtype is _InstanceType:
137 subtype = subclass
138 if subtype is subclass or subclass is None:
141 subtype in cls._abc_negative_cache):
144 return cls.__subclasscheck__(subtype)
146 cls.__subclasscheck__(subtype))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
abc.py 134 subtype = type(instance)
136 if subtype is _InstanceType:
137 subtype = subclass
138 if subtype is subclass or subclass is None:
141 subtype in cls._abc_negative_cache):
144 return cls.__subclasscheck__(subtype)
146 cls.__subclasscheck__(subtype))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
abc.py 134 subtype = type(instance)
136 if subtype is _InstanceType:
137 subtype = subclass
138 if subtype is subclass or subclass is None:
141 subtype in cls._abc_negative_cache):
144 return cls.__subclasscheck__(subtype)
146 cls.__subclasscheck__(subtype))
  /external/mesa3d/src/gallium/drivers/ilo/genhw/
genhw.h 49 #define GEN_RENDER_CMD(subtype, gen, op) \
51 GEN6_RENDER_SUBTYPE_ ## subtype | \
53 #define GEN6_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN6, op)
54 #define GEN7_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN7, op)
55 #define GEN75_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN75, op)
56 #define GEN8_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN8, op
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtype.java 42 * This class is used to specify meta information of a subtype contained in an input method editor
43 * (IME). Subtype can describe locale (e.g. en_US, fr_FR...) and mode (e.g. voice, keyboard...),
44 * and is used for IME switch and settings. The input method subtype allows the system to bring up
45 * the specified subtype of the designated IME directly.
48 * <code>&lt;subtype&gt;</code> element, which resides within an {@code <input-method>} element.
99 * @param isAuxiliary should true when this subtype is auxiliary, false otherwise.
100 * An auxiliary subtype has the following differences with a regular subtype:
101 * - An auxiliary subtype cannot be chosen as the default IME in Settings.
102 * - The framework will never switch to this subtype throug
602 InputMethodSubtype subtype = (InputMethodSubtype) o; local
683 InputMethodSubtype subtype = imi.getSubtypeAt(i); local
    [all...]
  /external/libbrillo/brillo/
mime_utils.h 73 // Combine a MIME type, subtype and parameters into a MIME string.
78 const std::string& subtype,
81 // Splits a MIME string into type and subtype.
85 std::string* subtype);
87 // Splits a MIME string into type, subtype, and parameters.
91 std::string* subtype,
mime_utils.cc 70 std::string* subtype,
77 if (!mime::Split(parts.front(), type, subtype))
94 std::string* subtype) {
101 if (subtype)
102 *subtype = types.second;
108 const std::string& subtype,
111 parts.push_back(brillo::string_utils::Join("/", type, subtype));
131 std::string subtype; local
134 if (mime::Split(mime_string, &type, &subtype, &parameters))
  /external/v8/src/inspector/
v8-internal-value-type.cc 41 v8::Local<v8::String> subtype = subtypeForInternalType(isolate, type); local
42 return object->SetPrivate(context, privateValue, subtype).FromMaybe(false);
50 v8::Local<v8::String> subtype = subtypeForInternalType(isolate, type); local
56 ->SetPrivate(context, privateValue, subtype)
  /frameworks/base/core/java/android/hardware/input/
InputManagerInternal.java 49 * Notifies that InputMethodManagerService switched the current input method subtype.
51 * @param userId user id that indicates who is using the specified input method and subtype.
53 * @param subtype {@code null} when {@code inputMethodInfo} does has no subtype.
56 @Nullable InputMethodInfo inputMethodInfo, @Nullable InputMethodSubtype subtype);
  /external/tcpdump/
print-lldp.c 650 int subtype, hexdump = FALSE; local
658 subtype = *(tptr+3);
660 ND_PRINT((ndo, "\n\t %s Subtype (%u)",
661 tok2str(lldp_8021_subtype_values, "unknown", subtype),
662 subtype));
664 switch (subtype) {
853 int subtype, hexdump = FALSE; local
934 int subtype, hexdump = FALSE; local
966 int subtype, hexdump = FALSE; local
1148 int subtype, hexdump = FALSE; local
1419 uint8_t subtype; local
    [all...]
  /device/google/contexthub/firmware/os/inc/
halIntf.h 30 #define APP_TO_SENSOR_HAL_TYPE(sensor, subtype) (((sensor) && 0xFF) | (((subtype) & 0x7F) << 8))
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
Usb10ACHeader.java 35 public Usb10ACHeader(int length, byte type, byte subtype, byte subclass, int spec) {
36 super(length, type, subtype, subclass, spec);
Usb10ASFormatII.java 41 public Usb10ASFormatII(int length, byte type, byte subtype, byte formatType, byte subclass) {
42 super(length, type, subtype, formatType, subclass);
Usb20ACInputTerminal.java 42 public Usb20ACInputTerminal(int length, byte type, byte subtype, byte subclass) {
43 super(length, type, subtype, subclass);
Usb20ASGeneral.java 44 public Usb20ASGeneral(int length, byte type, byte subtype, byte subclass) {
45 super(length, type, subtype, subclass);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
KeyboardLayoutSetSubtypesCountTests.java 42 final InputMethodSubtype subtype = subtypeList.get(index); local
44 sb.append(SubtypeLocaleUtils.getSubtypeNameForLogging(subtype));
TestsQwertyEmail.java 44 protected KeyboardLayoutSet createKeyboardLayoutSet(final InputMethodSubtype subtype,
51 subtype, emailField, voiceInputKeyEnabled, languageSwitchKeyEnabled,

Completed in 1477 milliseconds

1 2 34 5 6 7 8 91011>>