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

/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java157 final SpellCheckerSubtype subtype = sci.getSubtypeAt(i);
158 final String tempSubtypeLocale = subtype.getLocale();
161 subtypeInUse = subtype;
165 subtypeInUse = subtype;
249 public void setSpellCheckerSubtype(SpellCheckerSubtype subtype) { argument
252 if (subtype == null) {
255 hashCode = subtype.hashCode();
H A DSpellCheckerSession.java125 SpellCheckerSubtype subtype) {
135 mSubtype = subtype;
123 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.java1704 * Force switch to a new input method and subtype. This can only be called
1710 * @param subtype The new subtype of the new input method to be switched to.
1712 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) { argument
1714 mService.setInputMethodAndSubtype(token, id, subtype);
1964 * Returns the current input method subtype. This subtype is one of the subtypes in
1966 * have any input method subtype.
1980 * Switch to a new input method subtype of the current input method.
1981 * @param subtype
1986 setCurrentInputMethodSubtype(InputMethodSubtype subtype) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java322 public void changeInputMethodSubtype(InputMethodSubtype subtype) { argument
324 subtype));
H A DInputMethodService.java457 public void changeInputMethodSubtype(InputMethodSubtype subtype) { argument
458 onCurrentInputMethodSubtypeChanged(subtype);
2394 // TODO: Handle the subtype change event
2396 * Called when the subtype was changed.
2397 * @param newSubtype the subtype which is being changed to.
/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/net/
H A DNetworkInfo.java132 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) { argument
137 mSubtype = subtype;
189 * Return a network-type-specific integer describing the subtype
191 * @return the network subtype
202 public void setSubtype(int subtype, String subtypeName) { argument
204 mSubtype = subtype;
221 * Return a human-readable name describing the subtype of the network.
222 * @return the name of the network subtype
456 int subtype = in.readInt();
459 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeNam
[all...]
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeSwitchingController.java223 for (InputMethodSubtype subtype : explicitlyOrImplicitlyEnabledSubtypeList) {
224 enabledSubtypeSet.add(String.valueOf(subtype.hashCode()));
233 final InputMethodSubtype subtype = imi.getSubtypeAt(j);
234 final String subtypeHashCode = String.valueOf(subtype.hashCode());
237 && (includeAuxiliarySubtypes || !subtype.isAuxiliary())) {
239 subtype.overridesImplicitlyEnabledSubtype() ? null : subtype
243 subtypeLabel, imi, j, subtype.getLocale(), mSystemLocaleStr));
245 // Removing this subtype from enabledSubtypeSet because we no
246 // longer need to add an entry of this subtype t
261 calculateSubtypeId(InputMethodInfo imi, InputMethodSubtype subtype) argument
279 getIndex(InputMethodInfo imi, InputMethodSubtype subtype) argument
292 getNextInputMethodLocked(boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) argument
350 getUsageRank(final InputMethodInfo imi, InputMethodSubtype subtype) argument
366 onUserAction(InputMethodInfo imi, InputMethodSubtype subtype) argument
378 getNextInputMethodLocked(boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) argument
462 getNextInputMethod(boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) argument
476 onUserActionLocked(InputMethodInfo imi, InputMethodSubtype subtype) argument
522 onUserActionLocked(InputMethodInfo imi, InputMethodSubtype subtype) argument
538 getNextInputMethodLocked(boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) argument
[all...]
H A DInputMethodUtils.java365 // subtype)
407 final InputMethodSubtype subtype = imi.getSubtypeAt(i);
409 final Locale subtypeLocale = subtype.getLocaleObject();
417 subtype.getLocale()));
423 mode.equalsIgnoreCase(subtype.getMode())) {
444 final InputMethodSubtype subtype = imi.getSubtypeAt(i);
445 if (subtype.overridesImplicitlyEnabledSubtype() && subtype.getMode().equals(mode)) {
446 subtypes.add(subtype);
506 InputMethodSubtype subtype
644 canAddToLastInputMethod(InputMethodSubtype subtype) argument
739 getImeAndSubtypeDisplayName(Context context, InputMethodInfo imi, InputMethodSubtype subtype) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp373 const char *subtype = mIsVideo ? kResourceVideoCodec : kResourceAudioCodec; local
374 resources.push_back(MediaResource(String8(type), String8(subtype), 1));
436 const char *subtype = mIsVideo ? kResourceVideoCodec : kResourceAudioCodec; local
437 resources.push_back(MediaResource(String8(type), String8(subtype), 1));
519 void MediaCodec::addResource(const String8 &type, const String8 &subtype, uint64_t value) { argument
521 resources.push_back(MediaResource(type, subtype, value));
533 const char *subtype = mIsVideo ? kResourceVideoCodec : kResourceAudioCodec; local
534 resources.push_back(MediaResource(String8(type), String8(subtype), 1));
1157 const char *subtype = mIsVideo ? kResourceVideoCodec : kResourceAudioCodec; local
1158 addResource(resourceType, String8(subtype),
1292 String8 subtype; local
1295 subtype, local
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java326 * The current subtype of the current input method.
538 // Merge the restored ime+subtype enabled states into the live state
1702 final InputMethodSubtype subtype = subtypes.get(j);
1703 if (!subtype.isAuxiliary()) {
1705 nonAuxSubtype = subtype;
1708 auxSubtype = subtype;
1948 // See if we need to notify a subtype change within the same IME.
1959 // If subtype is null, try to find the most applicable one from
1964 Slog.w(TAG, "Illegal subtype state: old subtype
2349 setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) argument
3471 addShortcutInputMethodAndSubtypes(InputMethodInfo imi, InputMethodSubtype subtype) argument
3512 setCurrentInputMethodSubtype(InputMethodSubtype subtype) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 567 milliseconds