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

1 2 3 4 5 6 7 8

  /external/nist-sip/java/gov/nist/javax/sip/header/
MediaRange.java 48 * | ( type "/" subtype )
65 /** subtype field
67 protected String subtype; field in class:MediaRange
81 /** get the subType field.
85 return subtype;
97 * Set the subtype member
101 subtype = s;
115 .append(subtype);
  /external/smack/src/org/xbill/DNS/
AFSDBRecord.java 26 * @param subtype Indicates the type of service provided by the host.
30 AFSDBRecord(Name name, int dclass, long ttl, int subtype, Name host) {
31 super(name, Type.AFSDB, dclass, ttl, subtype, "subtype", host, "host");
34 /** Gets the subtype indicating the service provided by the host. */
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
SubtypeLocaleUtils.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;
52 // Keyboard layout to subtype name resource id map.
55 // Exceptional locale to subtype name resource id map.
58 // Exceptional locale to subtype name with layout resource id map.
70 // This is for compatibility to keep the same subtype ids as pre-JellyBean.
95 // Register subtype name resource id of "No language" with key "zz_<layout>"
182 // No language subtype should be displayed in system locale.
207 private static String getReplacementString(final InputMethodSubtype subtype,
210 && subtype.containsExtraValueKey(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME))
    [all...]
AdditionalSubtypeUtils.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;
41 public static boolean isAdditionalSubtype(final InputMethodSubtype subtype) {
42 return subtype.containsExtraValueKey(IS_ADDITIONAL_SUBTYPE);
69 public static String getPrefSubtype(final InputMethodSubtype subtype) {
70 final String localeString = subtype.getLocale();
71 final String keyboardLayoutSetName = SubtypeLocaleUtils.getKeyboardLayoutSetName(subtype);
75 IS_ADDITIONAL_SUBTYPE, subtype.getExtraValue()))
101 final InputMethodSubtype subtype = createAdditionalSubtype(prefSubtype); local
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
file_type.js 14 * Pair type-subtype defines order when sorted by file type.
18 {type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'JPEG',
20 {type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'BMP',
22 {type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'GIF',
24 {type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'ICO',
26 {type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'PNG',
28 {type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'WebP',
30 {type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'TIFF',
34 {type: 'video', name: 'VIDEO_FILE_TYPE', subtype: '3GP',
36 {type: 'video', name: 'VIDEO_FILE_TYPE', subtype: 'AVI'
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java 19 import static com.android.inputmethod.latin.Constants.Subtype.KEYBOARD_MODE;
138 Log.w(TAG, "Can't find current subtype in enabled subtypes: subtype="
144 // The current subtype is the last or only enabled one and it needs to switch to
166 // The next IME has no subtype.
208 final InputMethodSubtype subtype = imi.getSubtypeAt(index); local
209 if (!subtype.isAuxiliary()) {
224 public boolean checkIfSubtypeBelongsToThisImeAndEnabled(final InputMethodSubtype subtype) {
225 return checkIfSubtypeBelongsToImeAndEnabled(mInputMethodInfoOfThisIme, subtype);
229 final InputMethodSubtype subtype) {
346 final InputMethodSubtype subtype = myImi.getSubtypeAt(i); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 209 * the given subtype. This takes into account primitiveness,
217 * @param subtypeBearer {@code non-null;} the subtype
222 Type subtype = subtypeBearer.getType(); local
224 if (supertype.equals(subtype)) {
230 int subBt = subtype.getBasicType();
240 subtype = Type.OBJECT;
249 return supertype.isIntlike() && subtype.isIntlike();
261 } else if (subtype == Type.KNOWN_NULL) {
263 * A known-null subtype is in fact assignable to any
274 if (! subtype.isArray())
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 36 private final String subtype; field in class:MediaType
39 private MediaType(String mediaType, String type, String subtype, String charset) {
42 this.subtype = subtype;
54 String subtype = typeSubtype.group(2).toLowerCase(Locale.US); local
70 return new MediaType(string, type, subtype, charset);
82 * Returns a specific media subtype, such as "plain" or "png", "mpeg",
85 public String subtype() { method in class:MediaType
86 return subtype;
  /external/valgrind/main/none/tests/amd64/
gen_insn_test.pl 240 my $subtype = $2;
248 subtype => $subtype,
256 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
263 print qq| $value$SubTypeSuffixes{$subtype}|;
277 my $subtype = $2;
285 subtype => $subtype,
293 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
300 print qq| $value$SubTypeSuffixes{$subtype}|;
    [all...]
  /external/valgrind/main/none/tests/x86/
gen_insn_test.pl 217 my $subtype = $2;
225 subtype => $subtype,
233 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
240 print qq| $value$SubTypeSuffixes{$subtype}|;
254 my $subtype = $2;
262 subtype => $subtype,
270 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
277 print qq| $value$SubTypeSuffixes{$subtype}|;
    [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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
AdditionalSubtypeSettings.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.ASCII_CAPABLE;
108 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
111 subtype.getLocale(), subtype.hashCode(), subtype.hashCode(),
112 SubtypeLocaleUtils.getSubtypeDisplayNameInSystemLocale(subtype)));
114 if (subtype.containsExtraValueKey(ASCII_CAPABLE)) {
115 items.add(createItem(context, subtype.getLocale()));
134 public KeyboardLayoutSetItem(final InputMethodSubtype subtype) {
135 super(SubtypeLocaleUtils.getKeyboardLayoutSetName(subtype),
153 final InputMethodSubtype subtype = AdditionalSubtypeUtils.createAdditionalSubtype( local
289 final InputMethodSubtype subtype = AdditionalSubtypeUtils.createAdditionalSubtype( local
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboardView.java 48 void setSubtypeOnSpaceKey(final InputMethodSubtype subtype) {
50 keyboard.setSpaceIcon(getResources().getDrawable(subtype.getIconResId()));
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmeth.h 38 * Following the 2byte BRCM ether_type is a 16bit BRCM subtype field
42 * 8 bit subtype (0-127)
46 * 16 bit big-endian subtype
94 uint16 subtype; /* Vendor specific..32769 */ member in struct:bcmeth_hdr
  /prebuilts/python/darwin-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:
  /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/tests/src/com/android/inputmethod/latin/utils/
SubtypeLocaleUtilsTests.java 95 for (final InputMethodSubtype subtype : mSubtypesList) {
97 SubtypeLocaleUtils.getSubtypeDisplayNameInSystemLocale(subtype);
98 if (SubtypeLocaleUtils.isNoLanguage(subtype)) {
103 SubtypeLocaleUtils.getSubtypeLocaleDisplayName(subtype.getLocale());
248 for (final InputMethodSubtype subtype : mSubtypesList) {
250 SubtypeLocaleUtils.getSubtypeDisplayNameInSystemLocale(subtype);
251 final String spacebarText = SubtypeLocaleUtils.getFullDisplayName(subtype);
253 SubtypeLocaleUtils.getSubtypeLocaleDisplayName(subtype.getLocale());
254 if (SubtypeLocaleUtils.isNoLanguage(subtype)) {
263 for (final InputMethodSubtype subtype : mSubtypesList)
    [all...]
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSubtype.java 34 * This class is used to specify meta information of a subtype contained in a spell checker.
35 * Subtype can describe locale (e.g. en_US, fr_FR...) used for settings.
50 * @param nameId The name of the subtype
51 * @param locale The locale supported by the subtype
52 * @param extraValue The extra value of the subtype
72 * @return the name of the subtype
79 * @return the locale of the subtype
86 * @return the extra value of the subtype
113 * The string of ExtraValue in subtype should be defined as follows:
116 * @return the subtype contains specified the extra valu
140 SpellCheckerSubtype subtype = (SpellCheckerSubtype) o; local
240 SpellCheckerSubtype subtype = sci.getSubtypeAt(i); local
    [all...]
TextServicesManager.java 146 final SpellCheckerSubtype subtype = sci.getSubtypeAt(i); local
147 final String tempSubtypeLocale = subtype.getLocale();
149 subtypeInUse = subtype;
153 subtypeInUse = subtype;
237 public void setSpellCheckerSubtype(SpellCheckerSubtype subtype) {
240 if (subtype == null) {
243 hashCode = subtype.hashCode();
  /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))
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 180 final InputMethodSubtype subtype = InputMethodSubtype.CREATOR.createFromParcel(p); local
183 subtype.containsExtraValueKey(mSubtypeExtraValue_key));
184 assertEquals(mInputMethodSubtype.getExtraValue(), subtype.getExtraValue());
186 subtype.getExtraValueOf(mSubtypeExtraValue_key));
187 assertEquals(mInputMethodSubtype.getIconResId(), subtype.getIconResId());
188 assertEquals(mInputMethodSubtype.getLocale(), subtype.getLocale());
189 assertEquals(mInputMethodSubtype.getMode(), subtype.getMode());
190 assertEquals(mInputMethodSubtype.getNameResId(), subtype.getNameResId());
191 assertEquals(mInputMethodSubtype.hashCode(), subtype.hashCode());
192 assertEquals(mInputMethodSubtype.isAuxiliary(), subtype.isAuxiliary())
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtype.java 35 * This class is used to specify meta information of a subtype contained in an input method editor
36 * (IME). Subtype can describe locale (e.g. en_US, fr_FR...) and mode (e.g. voice, keyboard...),
37 * and is used for IME switch and settings. The input method subtype allows the system to bring up
38 * the specified subtype of the designated IME directly.
41 * <code>&lt;subtype&gt;</code> element, which resides within an {@code &lt;input-method>} element.
86 * @param isAuxiliary should true when this subtype is auxiliary, false otherwise.
87 * An auxiliary subtype has the following differences with a regular subtype:
88 * - An auxiliary subtype cannot be chosen as the default IME in Settings.
89 * - The framework will never switch to this subtype throug
470 InputMethodSubtype subtype = (InputMethodSubtype) o; local
565 InputMethodSubtype subtype = imi.getSubtypeAt(i); local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_sake.c 91 u8 id, size_t length, u8 subtype)
110 sake->subtype = subtype;
241 u8 version, session_id, subtype; local
253 subtype = resp->subtype;
266 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype=%d", subtype);
268 if (data->state == IDENTITY && subtype == EAP_SAKE_SUBTYPE_IDENTITY)
271 if (data->state == CHALLENGE && subtype == EAP_SAKE_SUBTYPE_CHALLENGE
414 u8 subtype; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodSettingValuesWrapper.java 105 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
106 if (InputMethodUtils.SUBTYPE_MODE_KEYBOARD.equalsIgnoreCase(subtype.getMode())
107 && subtype.isAsciiCapable()) {
129 final InputMethodSubtype subtype = mImm.getCurrentInputMethodSubtype(); local
130 return InputMethodUtils.getImeAndSubtypeDisplayName(context, imi, subtype);
197 Log.w(TAG, "ascii capable subtype enabled imi not found. Fall back to English"
198 + " Keyboard subtype.");

Completed in 894 milliseconds

1 2 3 4 5 6 7 8