/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
D | ExpectedKey.java | 147 public ExpectedKey toUpperCase(Locale locale) { in toUpperCase() method in ExpectedKey 148 return newInstance(mVisual.toUpperCase(locale), mOutput.toUpperCase(locale)); in toUpperCase() 222 public ExpectedAdditionalMoreKey toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKey.ExpectedAdditionalMoreKey 223 final ExpectedKey upperCaseKey = super.toUpperCase(locale); in toUpperCase() 242 public ExpectedKey toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKey.ExpectedKeyWithMoreKeys 245 upperCaseMoreKeys[i] = mMoreKeys[i].toUpperCase(locale); in toUpperCase() 247 return newInstance(getVisual().toUpperCase(locale), getOutput().toUpperCase(locale), in toUpperCase() 347 public ExpectedKey toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKey.ExpectedKeyWithMoreKeysAndAdditionalMoreKeys 351 upperCaseMoreKeys[i] = moreKeys[i].toUpperCase(locale); in toUpperCase() 356 upperCaseAdditionalMoreKeys[i] = mAdditionalMoreKeys[i].toUpperCase(locale); in toUpperCase() [all …]
|
D | ExpectedKeyOutput.java | 44 abstract ExpectedKeyOutput toUpperCase(final Locale locale); in toUpperCase() method in ExpectedKeyOutput 61 ExpectedKeyOutput toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKeyOutput.Code 107 ExpectedKeyOutput toUpperCase(final Locale locale) { return this; } in toUpperCase() method in ExpectedKeyOutput.Code.CasePreservedCode 123 ExpectedKeyOutput toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKeyOutput.Text 124 return newInstance(mText.toUpperCase(locale)); in toUpperCase() 163 ExpectedKeyOutput toUpperCase(final Locale locale) { return this; } in toUpperCase() method in ExpectedKeyOutput.Text.CasePreservedText
|
D | ExpectedKeyVisual.java | 42 abstract ExpectedKeyVisual toUpperCase(final Locale locale); in toUpperCase() method in ExpectedKeyVisual 71 ExpectedKeyVisual toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKeyVisual.Icon 137 ExpectedKeyVisual toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKeyVisual.Label 187 ExpectedKeyVisual toUpperCase(final Locale locale) { return this; } in toUpperCase() method in ExpectedKeyVisual.Label.CasePreservedLabel
|
D | ExpectedKeyboardBuilder.java | 312 public ExpectedKeyboardBuilder toUpperCase(final Locale locale) { in toUpperCase() method in ExpectedKeyboardBuilder 318 upperCaseKeys[columnIndex] = lowerCaseKeys[columnIndex].toUpperCase(locale); in toUpperCase()
|
/packages/apps/TV/tests/func/src/com/android/tv/tests/ui/dvr/ |
D | DvrLibraryTest.java | 153 .toUpperCase() in testScheduleRecordings() 216 .toUpperCase()), in testScheduleRecordings() 224 .toUpperCase()), in testScheduleRecordings() 240 .toUpperCase()), in testScheduleRecordings() 268 .toUpperCase()), in testScheduleRecordings() 275 .toUpperCase()), in testScheduleRecordings() 293 .toUpperCase()), in testScheduleRecordings() 300 .toUpperCase()), in testScheduleRecordings() 310 .toUpperCase())); in testScheduleRecordings()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapbMessageMime.java | 57 charset = charset.toUpperCase(); in getDataAsString() 104 if (mContentType != null && (mContentType.toUpperCase().contains("TEXT") in encode() 105 || mContentType.toUpperCase().contains("SMIL"))) { in encode() 128 if (mContentType != null && mContentType.toUpperCase().contains("TEXT")) { in encodePlainText() 134 } else if (mContentType != null && mContentType.toUpperCase().contains("/SMIL")) { in encodePlainText() 186 if (part.mContentType.toUpperCase().contains("TEXT")) { in getMessageAsText() 351 if (part.mContentType != null && part.mContentType.toUpperCase().contains("TEXT")) { in updateCharset() 583 String headerType = headerParts[0].toUpperCase(); in parseMimeHeaders() 680 String headerType = headerParts[0].toUpperCase(); in parseMimePart() 730 if (encoding != null && encoding.toUpperCase().contains("BASE64")) { in decodeBody() [all …]
|
D | BluetoothMapbMessage.java | 417 } else if (!line.toUpperCase().contains(subString.toUpperCase())) { in expect() 432 if (!line.toUpperCase().contains(subString.toUpperCase())) { in expect() 436 if (!line.toUpperCase().contains(subString2.toUpperCase())) { in expect()
|
D | BluetoothMapUtils.java | 598 charset = charset.toUpperCase(); in quotedPrintableToUtf8() 660 char hex1 = Character.toUpperCase(Character.forDigit((b >> 4) & 0xF, 16)); in encodeQuotedPrintable() 661 char hex2 = Character.toUpperCase(Character.forDigit(b & 0xF, 16)); in encodeQuotedPrintable()
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
D | MoreKeySpecTests.java | 318 new String[] { HAS_LABEL.toUpperCase(Locale.ROOT), "a", "b", "c" }, in testGetBooleanValue() 331 "a", HAS_LABEL.toUpperCase(Locale.ROOT), "b", "c", HAS_LABEL, "d" }, in testGetBooleanValue() 337 "a", HAS_LABEL, "b", NEEDS_DIVIDER, HAS_LABEL.toUpperCase(Locale.ROOT), "d" }, in testGetBooleanValue() 358 new String[] { FIXED_COLUMN_ORDER.toUpperCase(Locale.ROOT) + "3", "a", "b", "c" }, in testGetIntValue() 374 FIXED_COLUMN_ORDER.toUpperCase(Locale.ROOT) + "5", HAS_LABEL, "a", in testGetIntValue()
|
D | KeySpecParserTestsBase.java | 37 private static final String CODE_SETTINGS_UPPERCASE = CODE_SETTINGS.toUpperCase(Locale.ROOT); 38 private static final String ICON_SETTINGS_UPPERCASE = ICON_SETTINGS.toUpperCase(Locale.ROOT);
|
/packages/apps/Dialer/java/com/android/dialer/assisteddialing/ |
D | LocationDetector.java | 59 return Optional.of(userProvidedHomeCountry.toUpperCase(Locale.US)); in getUpperCaseUserHomeCountry() 65 return Optional.of(telephonyManager.getSimCountryIso().toUpperCase(Locale.US)); in getUpperCaseUserHomeCountry() 76 return Optional.of(telephonyManager.getNetworkCountryIso().toUpperCase(Locale.US)); in getUpperCaseUserRoamingCountry()
|
D | Constraints.java | 92 userHomeCountryCode = userHomeCountryCode.toUpperCase(Locale.US); in meetsPreconditions() 93 userRoamingCountryCode = userRoamingCountryCode.toUpperCase(Locale.US); in meetsPreconditions()
|
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
D | StringUtils.java | 204 return s.toUpperCase(getLocaleUsedForToTitleCase(locale)); in capitalizeFirstCodePoint() 209 return s.substring(0, cutoff).toUpperCase(getLocaleUsedForToTitleCase(locale)) in capitalizeFirstCodePoint() 217 return s.toUpperCase(getLocaleUsedForToTitleCase(locale)); in capitalizeFirstAndDowncaseRest() 227 return s.substring(0, cutoff).toUpperCase(getLocaleUsedForToTitleCase(locale)) in capitalizeFirstAndDowncaseRest() 412 builder.append(nextChar.toUpperCase(locale)); in capitalizeEachWord() 606 return label.toUpperCase(getLocaleUsedForToTitleCase(locale)); in toTitleCaseOfKeyLabel()
|
/packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/ |
D | CarLatinIME.java | 341 txt = txt.toUpperCase(mLocale); 355 commitText = commitText.toUpperCase(mLocale); 408 commitText = commitText.toUpperCase(mLocale); 449 return String.valueOf(current).toUpperCase(mLocale).charAt(0); in cycleCharacter()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | NameSplitter.java | 312 set.add(split[i].trim().toUpperCase()); in convertToSet() 676 if (mSuffixesSet.contains(withDot.toUpperCase())) { in normalizedSuffix() 721 if (mPrefixesSet.contains(firstToken.toUpperCase())) { in parsePrefix() 755 String normalized = lastToken.toUpperCase(); in parseSuffix() 788 normalized = tokens.mTokens[pos].toUpperCase() + "." + normalized; in parseSuffix() 840 final String normalized = word.toUpperCase(); in isFamilyNamePrefix() 855 toUpperCase())) { in parseMiddleName()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/ |
D | AvrcpNativeInterface.java | 192 BluetoothAdapter.getDefaultAdapter().getRemoteDevice(bdaddr.toUpperCase()); in setActiveDevice() 199 BluetoothAdapter.getDefaultAdapter().getRemoteDevice(bdaddr.toUpperCase()); in deviceConnected() 211 BluetoothAdapter.getDefaultAdapter().getRemoteDevice(bdaddr.toUpperCase()); in deviceDisconnected()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
D | ParametricEditor.java | 118 apply += " " + effectName.toUpperCase() + " " + interval.getStateRepresentation(); in calculateUserMessage() 120 apply += " " + effectName.toUpperCase() + " " + parameterValue; in calculateUserMessage() 123 apply += " " + effectName.toUpperCase(); in calculateUserMessage()
|
D | Editor.java | 70 item.setTitle(item.getTitle().toString().toUpperCase()); in hackFixStrings() 75 return effectName.toUpperCase() + " " + parameterValue; in calculateUserMessage() 269 String text = mContext.getString(representation.getTextId()).toUpperCase(); in reflectCurrentFilter()
|
D | EditorGrad.java | 218 mEffectName = mEffectName.toUpperCase(); in onProgressChanged() 314 return mEffectName.toUpperCase() + ((val > 0) ? " +" : " ") + val; in calculateUserMessage()
|
/packages/apps/SecureElement/src/com/android/se/internal/ |
D | ByteArrayConverter.java | 131 str = str.toUpperCase(); in hexStringToByteArray() 204 c = Character.toUpperCase(c); in isHexChar()
|
/packages/apps/TV/common/src/com/android/tv/common/util/ |
D | PostalCodeUtils.java | 122 Pattern pattern = REGION_PATTERN.get(region.toUpperCase()); in matches() 134 REGION_MAX_LENGTH.get(LocationUtils.getCurrentCountry(context).toUpperCase()); in getRegionMaxLength()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | PhoneUtils.java | 274 return country.toUpperCase(); in getSimCountry() 426 return country.toUpperCase(); in getSimCountry() 692 return country.toUpperCase(); in getLocaleCountry()
|
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
D | FlagTests.java | 38 assertEquals(name.toUpperCase(), name); in testFlagsUpperCase()
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/ |
D | DirectoryListBot.java | 135 assertEquals(msg.toUpperCase(), button.getText().toUpperCase()); in assertHasMessageButtonText()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | TelephonyManagerUtils.java | 53 String countryIso = telephonyManager.getNetworkCountryIso().toUpperCase(); in getCurrentCountryIso()
|