/packages/modules/RuntimeI18n/apex/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 554 Landroid/icu/impl/locale/XLocaleDistance;->english:Landroid/icu/text/LocaleDisplayNames; 600 Landroid/icu/impl/Normalizer2Impl;->addComposites(ILandroid/icu/text/UnicodeSet;)V 614 Landroid/icu/impl/Normalizer2Impl;->enumLcccRange(IIILandroid/icu/text/UnicodeSet;)V 615 Landroid/icu/impl/Normalizer2Impl;->enumNorm16PropertyStartsRange(IIILandroid/icu/text/UnicodeSet;)V 685 Landroid/icu/impl/number/CompactData;->getResourceBundleKey(Ljava/lang/String;Landroid/icu/text/Com… 693 Landroid/icu/impl/number/DecimalFormatProperties;->compactStyle:Landroid/icu/text/CompactDecimalFor… 695 Landroid/icu/impl/number/DecimalFormatProperties;->currencyPluralInfo:Landroid/icu/text/CurrencyPlu… 726 Landroid/icu/impl/number/DecimalFormatProperties;->pluralRules:Landroid/icu/text/PluralRules; 771 …fier;-><init>(Landroid/icu/impl/number/ParameterizedModifier;Landroid/icu/text/PluralRules;Landroi… 774 Landroid/icu/impl/number/MutablePatternModifier$ImmutablePatternModifier;->rules:Landroid/icu/text/… [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/compat/ |
D | LocaleSpanCompatUtilsTests.java | 25 import android.text.SpannableString; 26 import android.text.Spanned; 27 import android.text.style.StyleSpan; 82 final SpannableString text = new SpannableString("0123456789"); in testUpdateLocaleSpan() local 83 LocaleSpanCompatUtils.updateLocaleSpan(text, 1, 5, Locale.JAPANESE); in testUpdateLocaleSpan() 84 assertSpanCount(1, text); in testUpdateLocaleSpan() 85 assertLocaleSpan(text, 0, 1, 5, Locale.JAPANESE, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); in testUpdateLocaleSpan() 90 final SpannableString text = new SpannableString("0123456789"); in testUpdateLocaleSpan() local 92 text.setSpan(styleSpan, 0, 7, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); in testUpdateLocaleSpan() 93 LocaleSpanCompatUtils.updateLocaleSpan(text, 1, 5, Locale.JAPANESE); in testUpdateLocaleSpan() [all …]
|
/packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/ |
D | LocaleUtils.java | 65 final String text = localeElements[INDEX_LANGUAGE]; in constructLocaleFromString() local 66 if (isValidLanguage(text)) { in constructLocaleFromString() 67 builder.setLanguage(text); in constructLocaleFromString() 73 final String text = localeElements[INDEX_SCRIPT]; in constructLocaleFromString() local 74 if (isValidScript(text)) { in constructLocaleFromString() 75 builder.setScript(text); in constructLocaleFromString() 76 } else if (isValidRegion(text)) { in constructLocaleFromString() 77 builder.setRegion(text); in constructLocaleFromString() 84 final String text = localeElements[INDEX_REGION]; in constructLocaleFromString() local 85 if (!hasRegion && isValidRegion(text)) { in constructLocaleFromString() [all …]
|
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
D | StringUtils.java | 110 public static int codePointCount(@Nullable final CharSequence text) { in codePointCount() argument 111 if (isEmpty(text)) { in codePointCount() 114 return Character.codePointCount(text, 0, text.length()); in codePointCount() 128 public static boolean containsInArray(@Nonnull final String text, in containsInArray() argument 131 if (text.equals(element)) { in containsInArray() 146 public static boolean containsInCommaSplittableText(@Nonnull final String text, in containsInCommaSplittableText() argument 151 return containsInArray(text, extraValues.split(SEPARATOR_FOR_COMMA_SPLITTABLE_TEXT)); in containsInCommaSplittableText() 155 public static String removeFromCommaSplittableTextIfExists(@Nonnull final String text, in removeFromCommaSplittableTextIfExists() argument 161 if (!containsInArray(text, elements)) { in removeFromCommaSplittableTextIfExists() 166 if (!text.equals(element)) { in removeFromCommaSplittableTextIfExists() [all …]
|
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/widget/ |
D | CarUiTextViewImpl.java | 22 import android.text.Layout; 23 import android.text.SpannableStringBuilder; 24 import android.text.Spanned; 25 import android.text.TextUtils; 85 public void setText(@NonNull CarUiText text) { in setText() argument 86 mText = Collections.singletonList(requireNonNull(text)); in setText() 90 setText(text.getPreferredText()); in setText() 122 private CharSequence getBestVariant(CarUiText text) { in getBestVariant() argument 123 if (text.getTextVariants().size() > 1) { in getBestVariant() 124 for (CharSequence variant : text.getTextVariants()) { in getBestVariant() [all …]
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
D | ICalendarTest.java | 33 String text = "BEGIN:STUB\n" + in testAddProperty() local 44 assertEquals(text, component.toString()); in testAddProperty() 49 String text = "BEGIN:STUB\n" + in testAddComponent() local 64 assertEquals(text, parent.toString()); in testAddComponent() 69 String text = "BEGIN:STUB\n" + in testParseBasicComponent() local 75 ICalendar.Component component = ICalendar.parseComponent(text); in testParseBasicComponent() 155 String text = "BEGIN:VEVENT\nEND:VEVENT\n"; in testParseBareEvent() local 156 ICalendar.Component event = ICalendar.parseEvent(text); in testParseBareEvent() 165 String text = "BEGIN:VEVENT\n" + in testParseEvent1() local 171 ICalendar.Component event = ICalendar.parseEvent(text); in testParseEvent1() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
D | SpannableStringUtils.java | 19 import android.text.Spannable; 20 import android.text.SpannableString; 21 import android.text.Spanned; 22 import android.text.SpannedString; 23 import android.text.TextUtils; 24 import android.text.style.SuggestionSpan; 25 import android.text.style.URLSpan; 82 public static CharSequence concatWithNonParagraphSuggestionSpansOnly(CharSequence... text) { in concatWithNonParagraphSuggestionSpansOnly() argument 83 if (text.length == 0) { in concatWithNonParagraphSuggestionSpansOnly() 87 if (text.length == 1) { in concatWithNonParagraphSuggestionSpansOnly() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | KeyboardTextsSet.java | 21 import android.text.TextUtils; 66 private static int searchTextNameEnd(final String text, final int start) { in searchTextNameEnd() argument 67 final int size = text.length(); in searchTextNameEnd() 69 final char c = text.charAt(pos); in searchTextNameEnd() 85 String text = rawText; in resolveTextReference() local 91 " reference indirection: " + text); in resolveTextReference() 95 final int size = text.length(); in resolveTextReference() 102 final char c = text.charAt(pos); in resolveTextReference() 103 if (text.startsWith(PREFIX_TEXT, pos)) { in resolveTextReference() 105 sb = new StringBuilder(text.substring(0, pos)); in resolveTextReference() [all …]
|
/packages/apps/Settings/tests/uitests/src/com/android/settings/ui/ |
D | MoreWirelessSettingsTest2.java | 157 (By.text(CONFIGURE_WIFI_PREFERENCE_TEXT)), TIMEOUT); in testWifiMenuLoadConfigure() 177 By.text(ADD_NETWORK_MENU_SAVE_BUTTON_TEXT)), TIMEOUT).isEnabled()); in testAddNetworkMenu_Default() 179 By.text(ADD_NETWORK_MENU_CANCEL_BUTTON_TEXT)), TIMEOUT).isEnabled()); in testAddNetworkMenu_Default() 221 mDevice.wait(Until.findObject(By.text("Manual")), TIMEOUT).click(); in testAddNetworkMenu_Proxy() 232 mDevice.wait(Until.findObject(By.text("Proxy Auto-Config")), TIMEOUT).click(); in testAddNetworkMenu_Proxy() 256 mDevice.wait(Until.findObject(By.text("Static")), TIMEOUT).click(); in testAddNetworkMenu_IpSettings() 284 assertNotNull(mDevice.wait(Until.findObject(By.text(PHASE2_MENU_NONE_TEXT)), TIMEOUT)); in testPhase2Settings() 285 assertNotNull(mDevice.wait(Until.findObject(By.text(PHASE2_MENU_MSCHAPV2_TEXT)), TIMEOUT)); in testPhase2Settings() 286 assertNotNull(mDevice.wait(Until.findObject(By.text(PHASE2_MENU_GTC_TEXT)), TIMEOUT)); in testPhase2Settings() 305 By.text(CACERT_MENU_PLEASE_SELECT_TEXT)), TIMEOUT)); in testCaCertSettings() [all …]
|
D | NotificationSettingsTests.java | 77 Until.findObject(By.text("Notifications")), TIMEOUT); in testNotificationsSettingsListForCalculator() 79 mDevice.wait(Until.findObject(By.text("Blink light")), TIMEOUT); in testNotificationsSettingsListForCalculator() 81 Until.findObject(By.text("On for all apps")), TIMEOUT); in testNotificationsSettingsListForCalculator() 85 Until.findObject(By.text("All apps")), TIMEOUT); in testNotificationsSettingsListForCalculator() 87 UiObject2 app = mDevice.wait(Until.findObject(By.text("Calculator")), TIMEOUT); in testNotificationsSettingsListForCalculator() 95 Until.findObject(By.text("Notifications")), TIMEOUT); in testNotificationsSettingsListForPhone() 97 mDevice.wait(Until.findObject(By.text("Blink light")), TIMEOUT); in testNotificationsSettingsListForPhone() 99 Until.findObject(By.text("On for all apps")), TIMEOUT); in testNotificationsSettingsListForPhone() 103 Until.findObject(By.text("All apps")), TIMEOUT); in testNotificationsSettingsListForPhone() 109 UiObject2 phone = scrollTo(mDevice, apps, By.text("Phone"), Direction.DOWN); in testNotificationsSettingsListForPhone() [all …]
|
/packages/apps/Traceur/uitests/src/com/android/traceur/uitest/ |
D | TraceurAppTests.java | 131 mDevice.wait(Until.findObject(By.text("Record trace")), in testElementsOnMainScreen() 134 mDevice.wait(Until.findObject(By.text("Trace debuggable applications")), in testElementsOnMainScreen() 137 mDevice.wait(Until.findObject(By.text("Categories")), in testElementsOnMainScreen() 140 mDevice.wait(Until.findObject(By.text("Restore default categories")), in testElementsOnMainScreen() 143 mDevice.wait(Until.findObject(By.text("Per-CPU buffer size")), in testElementsOnMainScreen() 146 mDevice.wait(Until.findObject(By.text("Clear saved traces")), in testElementsOnMainScreen() 149 mDevice.wait(Until.findObject(By.text("Long traces")), in testElementsOnMainScreen() 152 mDevice.wait(Until.findObject(By.text("Maximum long trace size")), in testElementsOnMainScreen() 155 mDevice.wait(Until.findObject(By.text("Maximum long trace duration")), in testElementsOnMainScreen() 158 mDevice.wait(Until.findObject(By.text("Show Quick Settings tile")), in testElementsOnMainScreen() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/format/ |
D | FormatUtils.java | 20 import android.text.SpannableString; 21 import android.text.style.StyleSpan; 107 SpannableString text = new SpannableString(input); in applyStyleToSpan() local 108 text.setSpan(new StyleSpan(style), start, end, flags); in applyStyleToSpan() 109 return text; in applyStyleToSpan() 113 public static void copyToCharArrayBuffer(String text, CharArrayBuffer buffer) { in copyToCharArrayBuffer() argument 114 if (text != null) { in copyToCharArrayBuffer() 116 if (data == null || data.length < text.length()) { in copyToCharArrayBuffer() 117 buffer.data = text.toCharArray(); in copyToCharArrayBuffer() 119 text.getChars(0, text.length(), data, 0); in copyToCharArrayBuffer() [all …]
|
D | TextHighlighter.java | 19 import android.text.SpannableString; 20 import android.text.style.CharacterStyle; 21 import android.text.style.StyleSpan; 47 public void setPrefixText(TextView view, String text, String prefix) { in setPrefixText() argument 48 view.setText(applyPrefixHighlight(text, prefix)); in setPrefixText() 61 public void applyMaskingHighlight(SpannableString text, int start, int end) { in applyMaskingHighlight() argument 63 text.setSpan(getStyleSpan(), start, end, 0); in applyMaskingHighlight() 72 public CharSequence applyPrefixHighlight(CharSequence text, String prefix) { in applyPrefixHighlight() argument 74 return text; in applyPrefixHighlight() 85 int index = FormatUtils.indexOfWordPrefix(text, trimmedPrefix); in applyPrefixHighlight() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
D | AndroidWordLevelSpellCheckerSession.java | 24 import android.text.TextUtils; 146 private static int getCheckabilityInScript(final String text, final int script) { in getCheckabilityInScript() argument 147 if (TextUtils.isEmpty(text) || text.length() <= 1) return CHECKABILITY_TOO_SHORT; in getCheckabilityInScript() 152 final int firstCodePoint = text.codePointAt(0); in getCheckabilityInScript() 158 final int length = text.length(); in getCheckabilityInScript() 160 for (int i = 0; i < length; i = text.offsetByCodePoints(i, 1)) { in getCheckabilityInScript() 161 final int codePoint = text.codePointAt(i); in getCheckabilityInScript() 192 private boolean isInDictForAnyCapitalization(final String text, final int capitalizeType) { in isInDictForAnyCapitalization() argument 195 if (mService.isValidWord(mLocale, text)) return true; in isInDictForAnyCapitalization() 201 final String lowerCaseText = text.toLowerCase(mLocale); in isInDictForAnyCapitalization() [all …]
|
/packages/apps/TV/tests/func/src/com/android/tv/tests/ui/dvr/ |
D | DvrLibraryTest.java | 58 ByResource.text(controller.getTargetResources(), R.string.dvr_main_recent)); in setUp() 61 ByResource.text( in setUp() 65 ByResource.text(controller.getTargetResources(), R.string.dvr_main_series)); in setUp() 69 ByResource.text( in setUp() 109 ByResource.text( in testEmptyLibrary() 131 By.text( in testScheduleRecordings() 142 By.text( in testScheduleRecordings() 162 ByResource.text( in testScheduleRecordings() 168 ByResource.text( in testScheduleRecordings() 196 ByResource.text( in testScheduleRecordings() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | RichInputConnectionAndTextRangeTests.java | 26 import android.text.SpannableString; 27 import android.text.TextUtils; 28 import android.text.style.SuggestionSpan; 77 public MockConnection(final CharSequence text, final int cursorPosition) { in MockConnection() argument 85 TextUtils.writeToParcel(text.subSequence(0, cursorPosition), p, 0 /* flags */); in MockConnection() 86 TextUtils.writeToParcel(text.subSequence(cursorPosition, text.length()), p, in MockConnection() 314 SpannableString text = new SpannableString("This is a string for test"); in helpTestGetSuggestionSpansAtWord() local 315 text.setSpan(new SuggestionSpan(Locale.ENGLISH, SUGGESTIONS1, 0 /* flags */), in helpTestGetSuggestionSpansAtWord() 317 mockInputMethodService.setInputConnection(new MockConnection(text, cursorPos)); in helpTestGetSuggestionSpansAtWord() 327 text = new SpannableString("This is a string for test"); in helpTestGetSuggestionSpansAtWord() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
D | SuggestionStripLayoutHelper.java | 31 import android.text.Spannable; 32 import android.text.SpannableString; 33 import android.text.Spanned; 34 import android.text.TextPaint; 35 import android.text.TextUtils; 36 import android.text.style.CharacterStyle; 37 import android.text.style.StyleSpan; 38 import android.text.style.UnderlineSpan; 440 final CharSequence text = getEllipsizedTextWithSettingScaleX( in layoutWord() local 443 wordView.setText(text); // TextView.setText() resets text scale x to 1.0. in layoutWord() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/i18n/ |
D | DialerBidiFormatter.java | 21 import android.text.SpannableStringBuilder; 22 import android.text.SpannedString; 23 import android.text.TextUtils; 54 public static CharSequence format(@Nullable CharSequence text) { in format() argument 55 if (TextUtils.isEmpty(text)) { in format() 56 return text; in format() 62 Matcher matcher = Patterns.PHONE.matcher(text.toString()); in format() 71 spannableStringBuilder.append(text.subSequence(currIndex, start)); in format() 79 String.valueOf(LRE), text.subSequence(start, end), String.valueOf(PDF)))); in format() 85 if (currIndex < text.length()) { in format() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
D | StringTexture.java | 24 import android.text.TextPaint; 25 import android.text.TextUtils; 36 private StringTexture(String text, TextPaint paint, in StringTexture() argument 39 mText = text; in StringTexture() 54 String text, float textSize, int color) { in newInstance() argument 55 return newInstance(text, getDefaultPaint(textSize, color)); in newInstance() 59 String text, float textSize, int color, in newInstance() argument 66 text = TextUtils.ellipsize( in newInstance() 67 text, paint, lengthLimit, TextUtils.TruncateAt.END).toString(); in newInstance() 69 return newInstance(text, paint); in newInstance() [all …]
|
/packages/apps/Settings/src/com/android/settings/ |
D | LinkifyUtils.java | 19 import android.text.Spannable; 20 import android.text.TextPaint; 21 import android.text.method.LinkMovementMethod; 22 import android.text.style.ClickableSpan; 49 public static boolean linkify(TextView textView, StringBuilder text, in linkify() argument 52 final int beginIndex = text.indexOf(PLACE_HOLDER_LINK_BEGIN); in linkify() 54 textView.setText(text); in linkify() 57 text.delete(beginIndex, beginIndex + PLACE_HOLDER_LINK_BEGIN.length()); in linkify() 58 final int endIndex = text.indexOf(PLACE_HOLDER_LINK_END); in linkify() 60 textView.setText(text); in linkify() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
D | MessageNotificationState.java | 29 import android.text.Html; 30 import android.text.Spannable; 31 import android.text.SpannableString; 32 import android.text.SpannableStringBuilder; 33 import android.text.Spanned; 34 import android.text.TextUtils; 35 import android.text.style.ForegroundColorSpan; 36 import android.text.style.StyleSpan; 37 import android.text.style.TextAppearanceSpan; 38 import android.text.style.URLSpan; [all …]
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/view/ |
D | ScaleSpan.java | 22 import android.text.StaticLayout; 23 import android.text.TextPaint; 24 import android.text.TextUtils; 25 import android.text.style.ReplacementSpan; 46 public int getSize(Paint paint, CharSequence text, int start, int end, in getSize() argument 48 if (TextUtils.isEmpty(text)) { in getSize() 54 float desiredWidth = StaticLayout.getDesiredWidth(text.toString(), start, end, textPaint); in getSize() 59 public void draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, in draw() argument 62 paint.getTextBounds(text, start, end, targetRect); in draw() 66 paint.getTextBounds(text, start, end, currentRect); in draw() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
D | IconView.java | 77 protected void computeTextPosition(String text) { in computeTextPosition() argument 78 if (text == null) { in computeTextPosition() 83 text = text.toUpperCase(); in computeTextPosition() 87 mPaint.getTextBounds(text, 0, text.length(), mTextBounds); in computeTextPosition() 97 protected void drawText(Canvas canvas, String text) { in drawText() argument 98 if (text == null) { in drawText() 101 float textWidth = mPaint.measureText(text); in drawText() 112 canvas.drawText(text, x, y, mPaint); in drawText() 115 protected void drawOutlinedText(Canvas canvas, String text) { in drawOutlinedText() argument 119 drawText(canvas, text); in drawOutlinedText() [all …]
|
/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/ |
D | EditTextVariations.java | 31 import android.text.InputType; 32 import android.text.TextUtils; 223 String text; in setupHintText() local 225 text = "actionLabel<" + e.getImeActionLabel() + ":" + e.getImeActionId() + ">"; in setupHintText() 227 text = actionName(imeOptions & EditorInfo.IME_MASK_ACTION); in setupHintText() 229 text = appendFlagText(text, in setupHintText() 231 text = appendFlagText(text, in setupHintText() 233 text = appendFlagText(text, in setupHintText() 235 text = appendFlagText(text, in setupHintText() 237 text = appendFlagText(text, in setupHintText() [all …]
|
/packages/apps/Tag/src/com/android/apps/tag/record/ |
D | TextRecord.java | 48 private TextRecord(String languageCode, String text) { in TextRecord() argument 50 mText = Preconditions.checkNotNull(text); in TextRecord() 55 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false); in getView() local 56 text.setText(mText); in getView() 57 return text; in getView() 107 String text = new String(payload, in parse() local 111 return new TextRecord(languageCode, text); in parse() 129 public static NdefRecord newTextRecord(String text, Locale locale) { in newTextRecord() argument 130 return newTextRecord(text, locale, true); in newTextRecord() 133 public static NdefRecord newTextRecord(String text, Locale locale, boolean encodeInUtf8) { in newTextRecord() argument [all …]
|