Searched refs:extraValue (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/updates/
H A DConfigUpdateInstallReceiver.java141 String extraValue = i.getStringExtra(EXTRA_VERSION_NUMBER);
142 if (extraValue == null) {
145 return Integer.parseInt(extraValue.trim());
149 String extraValue = i.getStringExtra(EXTRA_REQUIRED_HASH);
150 if (extraValue == null) {
153 return extraValue.trim();
157 String extraValue = i.getStringExtra(EXTRA_SIGNATURE);
158 if (extraValue == null) {
161 return extraValue.trim();
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java152 * Arrays.hashCode(new Object[] {locale, mode, extraValue,
198 String mode, String extraValue, boolean isAuxiliary,
205 builder.mSubtypeExtraValue = extraValue;
220 public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue, argument
222 this(nameId, iconId, locale, mode, extraValue, isAuxiliary,
236 * @param extraValue The extra value of the subtype. This string is free-form, but the API
254 * Arrays.hashCode(new Object[] {locale, mode, extraValue,
257 public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue, argument
259 this(getBuilder(nameId, iconId, locale, mode, extraValue, isAuxiliary,
522 private static int hashCodeInternal(String locale, String mode, String extraValue, argument
197 getBuilder(int nameId, int iconId, String locale, String mode, String extraValue, boolean isAuxiliary, boolean overridesImplicitlyEnabledSubtype, int id, boolean isAsciiCapable) argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java52 * @param extraValue The extra value of the subtype
54 public SpellCheckerSubtype(int nameId, String locale, String extraValue) { argument
57 mSubtypeExtraValue = extraValue != null ? extraValue : "";
219 private static int hashCodeInternal(String locale, String extraValue) { argument
220 return Arrays.hashCode(new Object[] {locale, extraValue});

Completed in 51 milliseconds