Searched defs:subtype (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java146 final SpellCheckerSubtype subtype = sci.getSubtypeAt(i);
147 final String tempSubtypeLocale = subtype.getLocale();
149 subtypeInUse = subtype;
153 subtypeInUse = subtype;
231 public void setSpellCheckerSubtype(SpellCheckerSubtype subtype) { argument
234 if (subtype == null) {
237 hashCode = subtype.hashCode();
H A DSpellCheckerSession.java128 SpellCheckerSubtype subtype) {
138 mSubtype = subtype;
126 SpellCheckerSession( SpellCheckerInfo info, ITextServicesManager tsm, SpellCheckerSessionListener listener, SpellCheckerSubtype subtype) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethod.java224 * 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); argument
H A DInputMethodManager.java1453 * Force switch to a new input method and subtype. This can only be called
1459 * @param subtype The new subtype of the new input method to be switched to.
1461 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) { argument
1463 mService.setInputMethodAndSubtype(token, id, subtype);
1603 * Returns the current input method subtype. This subtype is one of the subtypes in
1605 * have any input method subtype.
1619 * Switch to a new input method subtype of the current input method.
1620 * @param subtype
1624 setCurrentInputMethodSubtype(InputMethodSubtype subtype) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java282 public void changeInputMethodSubtype(InputMethodSubtype subtype) { argument
284 subtype));
H A DInputMethodService.java436 public void changeInputMethodSubtype(InputMethodSubtype subtype) { argument
437 onCurrentInputMethodSubtypeChanged(subtype);
2248 // TODO: Handle the subtype change event
2250 * Called when the subtype was changed.
2251 * @param newSubtype the subtype which is being changed to.
/frameworks/base/core/java/android/net/
H A DNetworkInfo.java134 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) { argument
139 mSubtype = subtype;
180 * Return a network-type-specific integer describing the subtype
182 * @return the network subtype
190 void setSubtype(int subtype, String subtypeName) { argument
192 mSubtype = subtype;
209 * Return a human-readable name describing the subtype of the network.
210 * @return the name of the network subtype
442 int subtype = in.readInt();
445 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeNam
[all...]
/frameworks/wilhelm/tools/permute/
H A Dpermute.c145 unsigned subtype = sfinfo_in.format & SF_FORMAT_SUBMASK; local
147 switch (subtype) {
155 fprintf(stderr, "%s: unsupported subtype 0x%X\n", path_in, subtype);
/frameworks/base/core/java/android/webkit/
H A DJWebCoreJavaBridge.java316 public native void setNetworkType(String type, String subtype); argument
H A DWebViewClassic.java2197 public void setNetworkType(String type, String subtype) { argument
2200 map.put("subtype", subtype);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DInputMethodsPanel.java219 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) { argument
218 createInputMethodItem( final InputMethodInfo imi, final InputMethodSubtype subtype) argument
368 updateRadioButtonsByImiAndSubtype( InputMethodInfo imi, InputMethodSubtype subtype) argument
439 getSubtypeName(InputMethodInfo imi, InputMethodSubtype subtype) argument
449 getSubtypeIcon(InputMethodInfo imi, InputMethodSubtype subtype) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java297 * The current subtype of the current input method.
1284 final InputMethodSubtype subtype = subtypes.get(j);
1285 if (!subtype.isAuxiliary()) {
1287 nonAuxSubtype = subtype;
1290 auxSubtype = subtype;
1435 // See if we need to notify a subtype change within the same IME.
1446 // If subtype is null, try to find the most applicable one from
1451 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1452 + ", new subtype
1791 setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) argument
2635 canAddToLastInputMethod(InputMethodSubtype subtype) argument
2993 addShortcutInputMethodAndSubtypes(InputMethodInfo imi, InputMethodSubtype subtype) argument
3034 setCurrentInputMethodSubtype(InputMethodSubtype subtype) argument
3077 getNextInputMethod( boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) argument
[all...]

Completed in 110 milliseconds