HomeSort by relevance Sort by last modified time
    Searched refs:subtype (Results 1 - 25 of 115) 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/compat/
InputMethodServiceCompatWrapper.java 34 // For the API level 10 or previous, we handle the "subtype changed" events by ourselves
70 // handle the event the current subtype was changed. LatinIME calls
72 // changes the current subtype.
73 // This call is required to let LatinIME itself know a subtype changed
84 final InputMethodSubtypeCompatWrapper subtype = (newSubtype == null) local
87 if (subtype != null) {
89 && !subtype.isDummy()) return;
91 LanguageSwitcherProxy.getInstance().setLocale(subtype.getLocale());
93 SubtypeSwitcher.getInstance().updateSubtype(subtype);
101 public void onCurrentInputMethodSubtypeChanged(InputMethodSubtype subtype) {
    [all...]
InputMethodSubtypeCompatWrapper.java 66 public InputMethodSubtypeCompatWrapper(Object subtype) {
67 super((CLASS_InputMethodSubtype != null && CLASS_InputMethodSubtype.isInstance(subtype))
68 ? subtype : null);
76 // Constructor for creating a dummy subtype.
159 InputMethodSubtypeCompatWrapper subtype = (InputMethodSubtypeCompatWrapper)o; local
162 return (mDummyNameResId == subtype.mDummyNameResId
163 && mDummyIconResId == subtype.mDummyIconResId
164 && mDummyLocale.equals(subtype.mDummyLocale)
165 && mDummyMode.equals(subtype.mDummyMode)
166 && mDummyExtraValues.equals(subtype.mDummyExtraValues))
    [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...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
SubtypeLocaleTests.java 53 InputMethodSubtype subtype = imi.getSubtypeAt(i); local
54 if (subtype.getMode().equals("keyboard")) {
55 mKeyboardSubtypes.add(subtype);
62 assertTrue("Can not find keyboard subtype", mKeyboardSubtypes.size() > 0);
78 for (final InputMethodSubtype subtype : mKeyboardSubtypes) {
79 final String localeCode = subtype.getLocale();
84 // The subtype name in its locale. For example 'English (US) Keyboard' or
86 final String subtypeName = getStringWithLocale(subtype.getNameResId(), locale);
90 "subtype name is '%s' and should contain locale '%s' name '%s'\n",
  /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...]
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSubtype.java 32 * This class is used to specify meta information of a subtype contained in a spell checker.
33 * Subtype can describe locale (e.g. en_US, fr_FR...) used for settings.
44 * @param nameId The name of the subtype
45 * @param locale The locale supported by the subtype
46 * @param extraValue The extra value of the subtype
66 * @return the name of the subtype
73 * @return the locale of the subtype
80 * @return the extra value of the subtype
94 SpellCheckerSubtype subtype = (SpellCheckerSubtype) o; local
95 return (subtype.hashCode() == hashCode()
191 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;
230 public void setSpellCheckerSubtype(SpellCheckerSubtype subtype) {
233 if (subtype == null) {
236 hashCode = subtype.hashCode();
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtype.java 34 * This class is used to specify meta information of a subtype contained in an input method.
35 * Subtype can describe locale (e.g. en_US, fr_FR...) and mode (e.g. voice, keyboard...), and is
36 * used for IME switch and settings. The input method subtype allows the system to bring up the
37 * specified subtype of the designated input method directly.
40 * with the <code>&lt;subtype></code> element.
63 * @param nameId The name of the subtype
64 * @param iconId The icon of the subtype
65 * @param locale The locale supported by the subtype
66 * @param mode The mode supported by the subtype
67 * @param extraValue The extra value of the subtype
243 InputMethodSubtype subtype = (InputMethodSubtype) o; local
323 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
  /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 220 final InputMethodInfo imi, final InputMethodSubtype subtype) {
222 if (subtype == null || subtype.overridesImplicitlyEnabledSubtype()) {
225 subtypeName = getSubtypeName(imi, subtype);
228 final Drawable icon = getSubtypeIcon(imi, subtype);
265 subtypeView, new Pair<InputMethodInfo, InputMethodSubtype> (imi, subtype));
281 // TODO: Reuse subtype views.
296 for (InputMethodSubtype subtype: subtypes) {
297 mInputMethodMenuList.addView(createInputMethodItem(imi, subtype));
311 private void setInputMethodAndSubtype(InputMethodInfo imi, InputMethodSubtype subtype) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeSwitcher.java 159 Log.w(TAG, "Current subtype: " + mInputLocaleStr + ", " + currentMode);
160 Log.w(TAG, "Last subtype was disabled. Update to the current one.");
184 // TODO: Pick up the first found subtype for now. Should handle all subtypes
198 private static String getSubtypeLocale(InputMethodSubtypeCompatWrapper subtype) {
199 final String keyboardLocale = subtype.getExtraValueOf(
201 return keyboardLocale != null ? keyboardLocale : subtype.getLocale();
204 // Update the current subtype. LatinIME.onCurrentInputMethodSubtypeChanged calls this function.
212 Log.w(TAG, "Couldn't get the current subtype.");
220 Log.w(TAG, "Update subtype to:" + newLocale + "," + newMode
273 Log.w(TAG, "Unknown subtype mode: " + newMode + "," + version + ", " + packageNam
315 final InputMethodSubtypeCompatWrapper subtype = mShortcutSubtype; local
    [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 105 u8 id, size_t length, u8 subtype)
124 sake->subtype = subtype;
262 u8 version, session_id, subtype; local
274 subtype = resp->subtype;
287 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype=%d", subtype);
289 if (data->state == IDENTITY && subtype == EAP_SAKE_SUBTYPE_IDENTITY)
292 if (data->state == CHALLENGE && subtype == EAP_SAKE_SUBTYPE_CHALLENGE
435 u8 subtype; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
NetworkStateHandler.java 110 private void sendNetworkType(String type, String subtype) {
113 w.setNetworkType(type, subtype);
  /frameworks/base/core/java/android/net/
NetworkInfo.java 130 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) {
135 mSubtype = subtype;
173 * Return a network-type-specific integer describing the subtype
175 * @return the network subtype
183 void setSubtype(int subtype, String subtypeName) {
185 mSubtype = subtype;
202 * Return a human-readable name describing the subtype of the network.
203 * @return the name of the network subtype
422 int subtype = in.readInt();
425 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName)
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 25 private String subtype; field in class:ContentTypeParser
30 public String getSubType() { return subtype; }
66 Token subtype; local
69 subtype = jj_consume_token(ATOKEN);
71 this.subtype = subtype.image;
  /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);

Completed in 872 milliseconds

1 2 3 4 5