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;
237 public void setSpellCheckerSubtype(SpellCheckerSubtype subtype) { argument
240 if (subtype == null) {
243 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.java1508 * Force switch to a new input method and subtype. This can only be called
1514 * @param subtype The new subtype of the new input method to be switched to.
1516 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) { argument
1518 mService.setInputMethodAndSubtype(token, id, subtype);
1766 * Returns the current input method subtype. This subtype is one of the subtypes in
1768 * have any input method subtype.
1782 * Switch to a new input method subtype of the current input method.
1783 * @param subtype
1787 setCurrentInputMethodSubtype(InputMethodSubtype subtype) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java286 public void changeInputMethodSubtype(InputMethodSubtype subtype) { argument
288 subtype));
H A DInputMethodService.java438 public void changeInputMethodSubtype(InputMethodSubtype subtype) { argument
439 onCurrentInputMethodSubtypeChanged(subtype);
2291 // TODO: Handle the subtype change event
2293 * Called when the subtype was changed.
2294 * @param newSubtype the subtype which is being changed to.
/frameworks/base/core/java/android/net/
H A DNetworkInfo.java137 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) { argument
142 mSubtype = subtype;
183 * Return a network-type-specific integer describing the subtype
185 * @return the network subtype
193 void setSubtype(int subtype, String subtypeName) { argument
195 mSubtype = subtype;
212 * Return a human-readable name describing the subtype of the network.
213 * @return the name of the network subtype
445 int subtype = in.readInt();
448 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.java2228 public void setNetworkType(String type, String subtype) { argument
2231 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.java304 * The current subtype of the current input method.
1439 final InputMethodSubtype subtype = subtypes.get(j);
1440 if (!subtype.isAuxiliary()) {
1442 nonAuxSubtype = subtype;
1445 auxSubtype = subtype;
1608 // See if we need to notify a subtype change within the same IME.
1619 // If subtype is null, try to find the most applicable one from
1624 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1625 + ", new subtype
1985 setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) argument
2872 canAddToLastInputMethod(InputMethodSubtype subtype) argument
3228 addShortcutInputMethodAndSubtypes(InputMethodInfo imi, InputMethodSubtype subtype) argument
3269 setCurrentInputMethodSubtype(InputMethodSubtype subtype) argument
3317 getNextInputMethod( boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) argument
[all...]

Completed in 116 milliseconds