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

1 2 3 4 5

  /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);
Accept.java 157 * @param subtype String to set
159 public void setContentSubType(String subtype) {
162 mediaRange.setSubtype(subtype);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
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;
48 // Keyboard layout to subtype name resource id map.
51 // Exceptional locale to subtype name resource id map.
64 // This is for compatibility to keep the same subtype ids as pre-JellyBean.
85 // Register subtype name resource id of "No language" with key "zz_<layout>"
161 public static String getSubtypeDisplayName(final InputMethodSubtype subtype, Resources res) {
163 && subtype.containsExtraValueKey(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME))
164 ? subtype.getExtraValueOf(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME)
165 : getSubtypeLocaleDisplayName(subtype.getLocale())
    [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(InputMethodSubtype subtype) {
38 return subtype.containsExtraValueKey(IS_ADDITIONAL_SUBTYPE);
65 public static String getPrefSubtype(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...]
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)) {
126 for (InputMethodSubtype subtype : subtypes) {
127 if (subtype.isAuxiliary()) {
148 // both explicitly and implicitly enabled input method subtype.
150 for (InputMethodSubtype subtype : subtypes) {
151 if (KEYBOARD_MODE.equals(subtype.getMode()))
163 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
    [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()));
116 public KeyboardLayoutSetItem(InputMethodSubtype subtype) {
117 super(SubtypeLocale.getKeyboardLayoutSetName(subtype),
118 SubtypeLocale.getKeyboardLayoutSetDisplayName(subtype));
134 // This is a dummy subtype with NO_LANGUAGE, only for display.
135 final InputMethodSubtype subtype = AdditionalSubtype.createAdditionalSubtype( local
137 add(new KeyboardLayoutSetItem(subtype));
271 final InputMethodSubtype subtype = AdditionalSubtype.createAdditionalSubtype( 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/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...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
SpacebarTextTests.java 47 for (final InputMethodSubtype subtype : mSubtypesList) {
48 final String subtypeName = SubtypeLocale.getSubtypeDisplayName(subtype, mRes);
49 final String spacebarText = LatinKeyboardView.getFullDisplayName(subtype, mRes);
51 SubtypeLocale.getSubtypeLocaleDisplayName(subtype.getLocale());
52 if (SubtypeLocale.isNoLanguage(subtype)) {
61 for (final InputMethodSubtype subtype : mSubtypesList) {
62 final String subtypeName = SubtypeLocale.getSubtypeDisplayName(subtype, mRes);
63 final String spacebarText = LatinKeyboardView.getMiddleDisplayName(subtype);
64 if (SubtypeLocale.isNoLanguage(subtype)) {
66 SubtypeLocale.getKeyboardLayoutSetName(subtype), spacebarText)
    [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...]
  /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. For more information, see the guide to
65 * @param nameId Resource ID of the subtype name string. The string resource may have exactly
68 * @param iconId Resource ID of the subtype icon drawable.
69 * @param locale The locale supported by the subtype
70 * @param mode The mode supported by the subtype
71 * @param extraValue The extra value of the subtype. This string is free-form, but the AP
290 InputMethodSubtype subtype = (InputMethodSubtype) o; local
370 InputMethodSubtype subtype = imi.getSubtypeAt(i); local
    [all...]
InputMethod.java 224 * Notify that the input method subtype is being changed in the same input method.
225 * @param subtype New subtype of the notified input method
227 public void changeInputMethodSubtype(InputMethodSubtype subtype);
  /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/bcm4329/dhdutil/include/proto/
bcmeth.h 65 uint16 subtype; member in struct:bcmeth_hdr
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmeth.h 65 uint16 subtype; member in struct:bcmeth_hdr
  /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;
231 public void setSpellCheckerSubtype(SpellCheckerSubtype subtype) {
234 if (subtype == null) {
237 hashCode = subtype.hashCode();
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IconGtk.cpp 62 1. media-subtype
63 2. gnome-mime-media-subtype
72 String subtype = MIMEType.substring(pos + 1); local
74 String iconName = media + "-" + subtype;
77 iconName = "gnome-mime-" + media + "-" + subtype;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
InputMethodButton.java 90 final InputMethodSubtype subtype = subtypes.get(j); local
91 if (!subtype.isAuxiliary()) {
93 nonAuxSubtype = subtype;
96 auxSubtype = subtype;
InputMethodsPanel.java 219 final InputMethodInfo imi, final InputMethodSubtype subtype) {
221 if (subtype == null || subtype.overridesImplicitlyEnabledSubtype()) {
224 subtypeName = getSubtypeName(imi, subtype);
227 final Drawable icon = getSubtypeIcon(imi, subtype);
264 subtypeView, new Pair<InputMethodInfo, InputMethodSubtype> (imi, subtype));
280 // TODO: Reuse subtype views.
295 for (InputMethodSubtype subtype: subtypes) {
296 mInputMethodMenuList.addView(createInputMethodItem(imi, subtype));
310 private void setInputMethodAndSubtype(InputMethodInfo imi, InputMethodSubtype subtype) {
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sake.c 104 u8 id, size_t length, u8 subtype)
123 sake->subtype = subtype;
261 u8 version, session_id, subtype; local
273 subtype = resp->subtype;
286 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype=%d", subtype);
288 if (data->state == IDENTITY && subtype == EAP_SAKE_SUBTYPE_IDENTITY)
291 if (data->state == CHALLENGE && subtype == EAP_SAKE_SUBTYPE_CHALLENGE
434 u8 subtype; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_sake.c 99 u8 id, size_t length, u8 subtype)
118 sake->subtype = subtype;
256 u8 version, session_id, subtype; local
268 subtype = resp->subtype;
281 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype=%d", subtype);
283 if (data->state == IDENTITY && subtype == EAP_SAKE_SUBTYPE_IDENTITY)
286 if (data->state == CHALLENGE && subtype == EAP_SAKE_SUBTYPE_CHALLENGE
429 u8 subtype; 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
  /packages/apps/Browser/src/com/android/browser/
NetworkStateHandler.java 115 private void sendNetworkType(String type, String subtype) {
118 WebViewClassic.fromWebView(w).setNetworkType(type, subtype);

Completed in 438 milliseconds

1 2 3 4 5