HomeSort by relevance Sort by last modified time
    Searched defs:mSubtype (Results 1 - 10 of 10) sorted by null

  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
UsbACEndpoint.java 30 protected byte mSubtype; // 2:1 HEADER descriptor subtype
42 return mSubtype;
47 mSubtype = stream.getByte();
UsbACInterface.java 80 protected final byte mSubtype; // 2:1 HEADER descriptor subtype
86 mSubtype = subtype;
91 return mSubtype;
  /packages/services/Car/car-lib/src/android/car/vms/
VmsLayer.java 37 private int mSubtype;
44 mSubtype = subtype;
53 return mSubtype;
73 Objects.equals(p.mSubtype, mSubtype) &&
84 return Objects.hash(mType, mSubtype, mVersion);
89 return "VmsLayer{ Type: " + mType + ", Sub type: " + mSubtype + ", Version: " + mVersion + "}";
108 out.writeInt(mSubtype);
123 mSubtype = in.readInt();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
LayoutTestsBase.java 43 private InputMethodSubtype mSubtype;
52 mSubtype = getSubtype(mLayout.getLocale(), mLayout.getName());
53 mLogTag = SubtypeLocaleUtils.getSubtypeNameForLogging(mSubtype) + "/"
56 mKeyboardLayoutSet = createKeyboardLayoutSet(mSubtype, null /* editorInfo */,
  /platform_testing/libraries/metrics-helper/tests/src/android/support/test/metricshelper/
MetricsAssertsTest.java 50 private int mSubtype = 4;
64 .setSubtype(mSubtype)
150 .setSubtype(mSubtype));
160 .setSubtype(mSubtype));
  /frameworks/base/core/java/android/net/
NetworkInfo.java 118 private int mSubtype;
138 mSubtype = subtype;
150 mSubtype = source.mSubtype;
205 return mSubtype;
214 mSubtype = subtype;
495 dest.writeInt(mSubtype);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodSubtype.java 58 private final InputMethodSubtype mSubtype;
65 mSubtype = subtype;
66 mOriginalLocale = InputMethodSubtypeCompatUtils.getLocaleObject(mSubtype);
74 return mSubtype.getExtraValueOf(key);
79 return mSubtype.getMode();
83 return SubtypeLocaleUtils.NO_LANGUAGE.equals(mSubtype.getLocale());
111 return SubtypeLocaleUtils.getKeyboardLayoutSetDisplayName(mSubtype);
113 return SubtypeLocaleUtils.getSubtypeLocaleDisplayName(mSubtype.getLocale());
120 return SubtypeLocaleUtils.getKeyboardLayoutSetDisplayName(mSubtype);
122 return SubtypeLocaleUtils.getSubtypeLanguageDisplayName(mSubtype.getLocale())
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 74 public final RichInputMethodSubtype mSubtype;
89 mSubtype = params.mSubtype;
120 id.mSubtype,
141 && other.mSubtype.equals(mSubtype)
178 return mSubtype.getLocale();
195 mSubtype.getLocale(),
196 mSubtype.getExtraValueOf(KEYBOARD_LAYOUT_SET),
KeyboardLayoutSet.java 122 RichInputMethodSubtype mSubtype;
309 mParams.mSubtype = keyboardSubtype;
381 if (mParams.mSubtype == null)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
CustomInputStylePreference.java 59 private InputMethodSubtype mSubtype;
85 return mSubtype == null;
89 return mSubtype;
93 mPreviousSubtype = mSubtype;
94 mSubtype = subtype;
114 return mSubtype != null && !mSubtype.equals(mPreviousSubtype);
143 final SubtypeLocaleItem localeItem = new SubtypeLocaleItem(mSubtype);
144 final KeyboardLayoutSetItem layoutItem = new KeyboardLayoutSetItem(mSubtype);
208 myState.mSubtype = mSubtype
    [all...]

Completed in 429 milliseconds