HomeSort by relevance Sort by last modified time
    Searched refs:subtypeName (Results 1 - 8 of 8) sorted by null

  /packages/apps/Browser/src/com/android/browser/
NetworkStateHandler.java 67 String subtypeName = info.getSubtypeName();
69 (subtypeName != null ? subtypeName.toLowerCase() : ""));
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
SubtypeLocaleTests.java 86 final String subtypeName = getStringWithLocale(subtype.getNameResId(), locale);
87 if (subtypeName.contains(displayName)) {
91 subtypeName, localeCode, displayName));
  /frameworks/base/core/java/android/net/
NetworkInfo.java 130 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) {
137 mSubtypeName = subtypeName;
183 void setSubtype(int subtype, String subtypeName) {
186 mSubtypeName = subtypeName;
424 String subtypeName = in.readString();
425 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSubtype.java 136 final CharSequence subtypeName = context.getPackageManager().getText(
138 if (!TextUtils.isEmpty(subtypeName)) {
139 return String.format(subtypeName.toString(), localeStr);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtype.java 186 final CharSequence subtypeName = context.getPackageManager().getText(
188 if (!TextUtils.isEmpty(subtypeName)) {
189 return String.format(subtypeName.toString(), localeStr);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodSubtypeCompatWrapper.java 144 final CharSequence subtypeName = context.getText(getNameResId());
146 return String.format(subtypeName.toString(), localeStr);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
InputMethodsPanel.java 221 final CharSequence subtypeName;
223 subtypeName = null;
225 subtypeName = getSubtypeName(imi, subtype);
235 if (subtypeName == null) {
239 itemTitle.setText(subtypeName);
  /frameworks/base/services/java/com/android/server/
InputMethodManagerService.java     [all...]

Completed in 260 milliseconds