Searched refs:text (Results 251 - 275 of 1044) sorted by relevance

<<11121314151617181920>>

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DAccessibleDateAnimator.java20 import android.text.format.DateUtils;
42 // Clear the event's current text so that only the current date will be spoken.
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java30 import android.text.Html;
31 import android.text.Spanned;
83 String escapeHtml(CharSequence text); argument
91 public String escapeHtml(CharSequence text) { argument
93 withinStyle(out, text, 0, text.length());
97 private static void withinStyle(StringBuilder out, CharSequence text, argument
100 char c = text.charAt(i);
111 while (i + 1 < end && text.charAt(i + 1) == ' ') {
424 * Set the literal text dat
431 setText(CharSequence text) argument
[all...]
/frameworks/support/v4/java/android/support/v4/database/
H A DDatabaseUtilsCompat.java19 import android.text.TextUtils;
/frameworks/support/v4/java/android/support/v4/text/
H A DICUCompat.java17 package android.support.v4.text;
/frameworks/base/core/java/android/app/
H A DFragmentTransaction.java248 public abstract FragmentTransaction setBreadCrumbTitle(CharSequence text); argument
263 public abstract FragmentTransaction setBreadCrumbShortTitle(CharSequence text); argument
/frameworks/base/core/java/android/service/carrier/
H A DICarrierMessagingService.aidl35 * @param destPort the destination port of a data SMS. It will be -1 for text SMS
44 * Request sending a new text SMS from the device.
48 * @param text the text to send
53 void sendTextSms(String text, int subId, String destAddress,
71 * Request sending a new multi-part text SMS from the device.
75 * @param parts the parts of the multi-part text SMS to send
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodSession.aidl34 void updateExtractedText(int token, in ExtractedText text);
H A DInputConnectionWrapper.java287 public boolean commitText(CharSequence text, int newCursorPosition) { argument
289 mIInputContext.commitText(text, newCursorPosition);
296 public boolean commitCompletion(CompletionInfo text) { argument
298 mIInputContext.commitCompletion(text);
350 public boolean setComposingText(CharSequence text, int newCursorPosition) { argument
352 mIInputContext.setComposingText(text, newCursorPosition);
/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutTest.java17 package android.text;
21 import android.text.Layout.Alignment;
22 import static android.text.Layout.Alignment.*;
116 * large text. See effect of leading. Currently, we don't expect there to
236 String text = "This is a test"; field in class:StaticLayoutTest.LayoutBuilder
244 LayoutBuilder setText(String text) { argument
245 this.text = text;
280 return new StaticLayout(text, paint, width, align, spacingMult,
/frameworks/base/core/tests/coretests/src/android/widget/
H A DLabelView.java26 * is used to draw simple text views. Note that it does not handle
27 * styled text or right-to-left writing systems.
87 * Sets the text to display in this label
88 * @param text The text to display. This will be drawn as one line.
90 public void setText(String text) { argument
91 mText = text;
97 * Sets the text size for this label
107 * Sets the text color for this label
108 * @param color ARGB value for the text
[all...]
/frameworks/base/tests/LargeAssetTest/src/com/android/largeassettest/
H A DLargeAssetTest.java99 CharSequence text = (result) ? "Valid!" : "NOT VALID";
100 mResultText.setText(text);
/frameworks/base/tools/layoutlib/bridge/src/libcore/icu/
H A DDateIntervalFormat_Delegate.java19 import java.text.FieldPosition;
25 import com.ibm.icu.text.DateIntervalFormat;
/frameworks/minikin/sample/
H A Dexample.cpp17 // This is a test program that uses Minikin to layout and draw some text.
86 const char *text = "fine world \xe0\xa4\xa8\xe0\xa4\xae\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\xa4\xe0\xa5\x87"; local
91 icu::UnicodeString icuText = icu::UnicodeString::fromUTF8(text);
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
H A DReplacementDrawableSpan.java7 import android.text.style.ReplacementSpan;
10 * ReplacementSpan that properly draws the drawable that is centered around the text
11 * without changing the default text size or layout.
44 public int getSize(Paint paint, CharSequence text, int i, int i2, Paint.FontMetricsInt fm) { argument
/frameworks/base/core/java/android/content/pm/
H A DSignature.java83 * Create Signature from a text representation previously returned by
87 * @param text hex-encoded string representing the signature
90 public Signature(String text) { argument
91 final byte[] input = text.getBytes();
95 throw new IllegalArgumentException("text size " + N + " is not even");
111 * Encode the Signature as ASCII text.
118 * Encode the Signature as ASCII text in to an existing array.
131 char[] text = existingArray == null || N2 > existingArray.length
136 text[j*2] = (char)(d >= 10 ? ('a' + d - 10) : ('0' + d));
138 text[
[all...]
/frameworks/base/core/java/android/view/
H A DAccessibilityIterators.java22 import java.text.BreakIterator;
26 * This class contains the implementation of text segment iterators
53 public void initialize(String text) { argument
54 mText = text;
89 public void initialize(String text) { argument
90 super.initialize(text);
91 mImpl.setText(text);
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java24 import android.text.Editable;
25 import android.text.Selection;
26 import android.text.Spannable;
27 import android.text.TextWatcher;
74 * Place text in the text field so it can be searched for. Need to press
77 public void setText(String text) { argument
78 mEditText.setText(text);
85 // Necessary each time we set the text, so that this will watch
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java31 import android.text.Layout;
163 CharSequence text = mItemData.getTitleForItemView(this);
171 text = mShortcutCaption;
174 setText(text);
188 // When there is an icon, make sure the text is at the bottom
200 // When there is no icon, make sure the text is centered vertically
248 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
249 super.onTextChanged(text, start, before, after);
251 // our layout params depend on the length of the text
257 * augment them to be appropriate to the current text siz
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V30.java313 protected String maybeUnescapeText(final String text) { argument
314 return unescapeText(text);
317 public static String unescapeText(final String text) { argument
319 final int length = text.length();
321 char ch = text.charAt(i);
323 final char next_ch = text.charAt(++i);
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css63 text-align: center;
68 text-align: center;
74 text-align: center;
91 text-decoration: none;
99 text-decoration: underline;
215 text-align: center;
227 text-align: center;
238 text-align: right;
393 text-align: center;
422 text
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java48 import android.text.ClipboardManager;
49 import android.text.Editable;
50 import android.text.Html;
51 import android.text.Layout;
52 import android.text.NoCopySpan;
53 import android.text.NoCopySpan.Concrete;
54 import android.text.Selection;
55 import android.text.Spannable;
56 import android.text.SpannableStringBuilder;
57 import android.text
346 onTextChanged(CharSequence text, int start, int before, int after) argument
398 toHtml(Spanned text) argument
400 toHtml(Spanned text, boolean escapeNonAsciiChar) argument
402 toHtml(Spanned text, boolean escapeNonAsciiChar, int width, float scale) argument
1458 removeImageChar(SpannableStringBuilder text) argument
1743 findLineStart(Editable text, int current) argument
1757 findLineEnd(Editable text, int current) argument
1845 toHtml(Spanned text) argument
1849 toHtml(Spanned text, boolean escapeNonAsciiChar) argument
1853 toHtml(Spanned text, boolean escapeNonAsciiChar, int width, float scale) argument
1906 getUriArray(ArrayList<Uri> uris, Editable text) argument
2482 commitText(CharSequence text, int newCursorPosition) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java33 import android.text.Editable;
34 import android.text.Spannable;
35 import android.text.SpannableStringBuilder;
36 import android.text.TextUtils;
38 import android.text.style.TtsSpan;
1147 SpannableStringBuilder text = new SpannableStringBuilder(source);
1148 formatNumber(text, getFormatTypeForLocale(Locale.getDefault()));
1149 return text.toString();
1165 SpannableStringBuilder text = new SpannableStringBuilder(source);
1166 formatNumber(text, defaultFormattingTyp
1195 formatNumber(Editable text, int defaultFormattingType) argument
1243 formatNanpNumber(Editable text) argument
1358 formatJapaneseNumber(Editable text) argument
1367 removeDashes(Editable text) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java25 import android.text.InputFilter;
26 import android.text.SpannableString;
55 import android.text.DynamicLayout;
56 import android.text.Editable;
57 import android.text.InputType;
58 import android.text.Layout;
59 import android.text.ParcelableSpan;
60 import android.text.Selection;
61 import android.text.SpanWatcher;
62 import android.text
592 chooseSize(PopupWindow pop, CharSequence text, TextView tv) argument
1796 getTextThumbnailBuilder(CharSequence text) argument
1893 addSpanWatchers(Spannable text) argument
1920 isNonIntermediateSelectionSpan(final Spannable text, final Object span) argument
1927 onSpanAdded(Spannable text, Object span, int start, int end) argument
1984 onSpanRemoved(Spannable text, Object span, int start, int end) argument
1993 onSpanChanged(Spannable text, Object span, int previousStart, int previousEnd, int newStart, int newEnd) argument
2393 SpannableStringBuilder text = new SpannableStringBuilder(); field in class:Editor.SuggestionsPopupWindow.SuggestionInfo
[all...]
/frameworks/base/core/java/android/text/
H A DLayout.java17 package android.text;
24 import android.text.method.TextKeyListener;
25 import android.text.style.AlignmentSpan;
26 import android.text.style.LeadingMarginSpan;
27 import android.text.style.LeadingMarginSpan.LeadingMarginSpan2;
28 import android.text.style.LineBackgroundSpan;
29 import android.text.style.ParagraphStyle;
30 import android.text.style.ReplacementSpan;
31 import android.text.style.TabStopSpan;
39 * A base class that manages text layou
112 Layout(CharSequence text, TextPaint paint, int width, Alignment align, float spacingMult, float spacingAdd) argument
134 Layout(CharSequence text, TextPaint paint, int width, Alignment align, TextDirectionHeuristic textDir, float spacingMult, float spacingAdd) argument
164 replaceWith(CharSequence text, TextPaint paint, int width, Alignment align, float spacingmult, float spacingadd) argument
1562 measurePara(TextPaint paint, CharSequence text, int start, int end) argument
1689 nextTab(CharSequence text, int start, int end, float h, Object[] tabs) argument
1747 getParagraphSpans(Spanned text, int start, int end, Class<T> type) argument
[all...]
H A DDynamicLayout.java17 package android.text;
20 import android.text.style.UpdateLayout;
21 import android.text.style.WrapTogetherSpan;
29 * DynamicLayout is a text layout that updates itself as the text is edited.
30 * <p>This is used by widgets to control text layout. You should not need
42 * Make a layout for the specified text that will be updated as
43 * the text is changed.
55 * Make a layout for the transformed text (password transformation
57 * that will be updated as the base text i
[all...]

Completed in 3859 milliseconds

<<11121314151617181920>>