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

1 2 3 4 5

  /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...]
  /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/wpa_supplicant_8/wpa_supplicant/
hs20_supplicant.c 142 u8 subtype; local
152 subtype = *pos++;
158 switch (subtype) {
211 wpa_printf(MSG_DEBUG, "HS20: Unsupported subtype %u", subtype);
  /development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 106 final InputMethodSubtype subtype = subtypes.get(i); local
110 sb.append(subtype.getDisplayName(context, imi.getPackageName(),
  /frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 100 final InputMethodSubtype subtype = subtypes.get(i); local
104 sb.append(subtype.getDisplayName(context, imi.getPackageName(),
  /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;
  /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
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
conversion_traits.hpp 48 typedef typename mpl::if_<subranged,T,S>::type subtype ; typedef in struct:boost::numeric::convdetail::non_trivial_traits_impl
72 typedef N subtype ; typedef in struct:boost::numeric::convdetail::trivial_traits_impl
  /system/core/sh/
show.c 170 int subtype; local
185 subtype = *++p;
186 if (subtype == VSLENGTH)
192 if (subtype & VSNUL)
195 switch (subtype & VSTYPE) {
228 printf("<subtype %d>", subtype);
  /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/chromium_org/third_party/mesa/src/src/glsl/
opt_array_splitting.cpp 370 const struct glsl_type *subtype; local
373 subtype = type->column_type();
375 subtype = type->fields.array;
388 new(entry->mem_ctx) ir_variable(subtype, name, ir_var_temporary);
  /external/mesa3d/src/glsl/
opt_array_splitting.cpp 370 const struct glsl_type *subtype; local
373 subtype = type->column_type();
375 subtype = type->fields.array;
388 new(entry->mem_ctx) ir_variable(subtype, name, ir_var_temporary);
  /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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_oss.h 87 int subtype; member in struct:snd_seq_oss_reg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_oss.h 87 int subtype; member in struct:snd_seq_oss_reg
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_controller.cc 45 // Converts the given match to a type (and possibly subtype) based on the AQS
49 const AutocompleteMatch::Type& match, size_t* type, size_t* subtype) {
52 // Default value, indicating no subtype.
53 *subtype = string16::npos;
65 *subtype = 57;
69 *subtype = 58;
73 *subtype = 59;
77 *subtype = 60;
81 *subtype = 61;
85 *subtype = 62
499 size_t subtype = string16::npos; local
    [all...]
  /external/iptables/include/linux/netfilter/
xt_osf.h 76 char subtype[MAXGENRELEN]; member in struct:xt_osf_user_finger
  /external/jmdns/src/javax/jmdns/impl/
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 : "");
  /external/jpeg/
rdtarga.c 337 int idlen, cmaptype, subtype, flags, interlace_type, components; local
353 subtype = UCH(targaheader[2]);
369 if (subtype > 8) {
373 subtype -= 8;
379 /* Now should have subtype 1, 2, or 3 */
383 switch (subtype) {
  /external/qemu/block/
bochs.c 45 char subtype[16]; // "Undoable" / "Volatile" / "Growing" member in struct:bochs_header_v1
65 char subtype[16]; // "Undoable" / "Volatile" / "Growing" member in struct:bochs_header
102 !strcmp(bochs->subtype, GROWING_TYPE) &&
125 strcmp(bochs.subtype, GROWING_TYPE) ||
  /external/qemu/distrib/jpeg-6b/
rdtarga.c 337 int idlen, cmaptype, subtype, flags, interlace_type, components; local
353 subtype = UCH(targaheader[2]);
369 if (subtype > 8) {
373 subtype -= 8;
379 /* Now should have subtype 1, 2, or 3 */
383 switch (subtype) {
  /external/wpa_supplicant_8/src/eap_common/
eap_sake_common.h 50 u8 subtype; member in struct:eap_sake_hdr
eap_tlv_common.h 75 u8 subtype; member in struct:eap_tlv_crypto_binding_tlv
  /external/wpa_supplicant_8/src/eap_peer/
eap_sake.c 116 int id, size_t length, u8 subtype)
135 sake->subtype = subtype;
370 u8 subtype, session_id; local
380 subtype = req->subtype;
384 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype %d "
385 "session_id %d", subtype, session_id);
403 switch (subtype) {
418 "unknown subtype %d", subtype)
    [all...]

Completed in 4023 milliseconds

1 2 3 4 5