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

1 2 3 4 5 6 7 8 91011

  /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...]
  /packages/inputmethods/LatinIME/java/res/xml/
method.xml 25 <!-- If IME doesn't have an applicable subtype, the first subtype will be used as a default
26 subtype.-->
30 <subtype android:icon="@drawable/ic_subtype_keyboard"
36 <subtype android:icon="@drawable/ic_subtype_keyboard"
42 <subtype android:icon="@drawable/ic_subtype_keyboard"
48 <subtype android:icon="@drawable/ic_subtype_keyboard"
54 <subtype android:icon="@drawable/ic_subtype_keyboard"
60 <subtype android:icon="@drawable/ic_subtype_keyboard"
66 <subtype android:icon="@drawable/ic_subtype_keyboard
    [all...]
spellchecker.xml 25 <subtype
29 <subtype
33 <subtype
37 <subtype
41 <subtype
  /external/llvm/test/FrontendAda/
array_size.adb 3 subtype S is String (1 .. 2);
debug_var_size.ads 3 subtype Length_Type is Positive range 1 .. 64;
vce_lv.adb 5 subtype U is String (5 .. 7);
placeholder.adb 3 subtype Bounded is Integer range 1 .. 5;
  /external/zlib/contrib/dotzlib/DotZLib/
DotZLib.csproj 94 SubType = "Code"
99 SubType = "Code"
104 SubType = "Code"
109 SubType = "Code"
114 SubType = "Code"
119 SubType = "Code"
124 SubType = "Code"
129 SubType = "Code"
134 SubType = "Code"
  /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...]
  /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);
ContentType.java 82 /** Constructor given a content type and subtype.
84 *@param contentSubtype is the content subtype
97 mediaRange.type + "/" + mediaRange.subtype).compareToIgnoreCase(
136 return mediaRange.subtype;
139 /** Get the content subtype.
140 *@return the content subtype string (or null if not set).
146 /** Get the content subtype.
169 * set the content type and subtype.
171 *@param contentSubType content subtype string
194 /** Set the content subtype
    [all...]
  /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...]
  /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",
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeUtil.java 162 final InputMethodSubtype subtype = imm.getCurrentInputMethodSubtype(); local
164 final CharSequence summary = subtype != null
165 ? TextUtils.concat(subtype.getDisplayName(context,
192 // In the Configure input method screen or in the subtype enabler screen.
210 InputMethodSubtype subtype = imi.getSubtypeAt(i); local
211 final String subtypeHashCodeStr = String.valueOf(subtype.hashCode());
214 // In the Configure input method screen which does not have subtype preferences.
217 // Once subtype checkbox is found, subtypeSet needs to be cleared.
220 // If selected subtype preference is disabled, needs to reset.
227 if (selectedInputMethodSubtype == subtype.hashCode())
332 InputMethodSubtype subtype = imi.getSubtypeAt(i); local
353 InputMethodSubtype subtype = imi.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...]
  /frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsInterface.java 39 * Sets the title for the input method enabler preference for launching subtype enabler with a
46 * Sets the title for the input method enabler preference for launching subtype enabler with a
53 * Sets the icon for the preference for launching subtype enabler with a resource ID.
59 * Sets the icon for the Preference for launching subtype enabler with a Drawable.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
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...]
  /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...]
  /development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
InputMethodSettingsInterface.java 45 * Sets the title for the input method enabler preference for launching subtype enabler with a
52 * Sets the title for the input method enabler preference for launching subtype enabler with a
59 * Sets the icon for the preference for launching subtype enabler with a resource ID.
65 * Sets the icon for the Preference for launching subtype enabler with a Drawable.
  /frameworks/base/services/java/com/android/server/net/
NetworkIdentitySet.java 48 final int subType = in.readInt();
50 add(new NetworkIdentity(type, subType, subscriberId, false));
58 final int subType = in.readInt();
61 add(new NetworkIdentity(type, subType, subscriberId, roaming));

Completed in 5614 milliseconds

1 2 3 4 5 6 7 8 91011