Searched refs:text (Results 26 - 50 of 703) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/text/
H A DTextLayoutTest.java17 package android.text;
20 import android.text.DynamicLayout;
21 import android.text.Layout;
22 import android.text.StaticLayout;
23 import android.text.TextPaint;
/frameworks/base/core/java/android/text/
H A DEditable.java17 package android.text;
20 * This is the interface for text whose content and markup
22 * to immutable text like Strings). If you make a {@link DynamicLayout}
23 * of an Editable, the layout will be reflowed as the text is changed.
29 * Replaces the specified range (<code>st&hellip;en</code>) of text in this
37 * <code>source</code> text.
51 * Convenience for replace(st, en, text, 0, text.length())
54 public Editable replace(int st, int en, CharSequence text); argument
57 * Convenience for replace(where, where, text, star
60 insert(int where, CharSequence text, int start, int end) argument
66 insert(int where, CharSequence text) argument
78 append(CharSequence text) argument
84 append(CharSequence text, int start, int end) argument
90 append(char text) argument
[all...]
H A DAndroidCharacter.java17 package android.text;
73 * Replace the specified slice of <code>text</code> with the chars'
77 * @param text array of characters to apply mirror operation
82 public native static boolean mirror(char[] text, int start, int count); argument
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DItem.java32 public String text; field in class:Item
36 public Item(int id, String text) { argument
38 this.text = text;
44 text = in.readString();
54 dest.writeString(text);
69 return text;
/frameworks/base/services/java/com/android/server/am/
H A DAppWaitingForDebuggerDialog.java38 StringBuilder text = new StringBuilder();
40 text.append("Application ");
41 text.append(mAppName);
42 text.append(" (process ");
43 text.append(app.processName);
44 text.append(")");
46 text.append("Process ");
47 text.append(app.processName);
50 text.append(" is waiting for the debugger to attach.");
52 setMessage(text
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V40.java55 protected String maybeUnescapeText(final String text) { argument
56 return unescapeText(text);
59 public static String unescapeText(final String text) { argument
63 final int length = text.length();
65 char ch = text.charAt(i);
67 final char next_ch = text.charAt(++i);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java19 import android.text.GraphicsOperations;
20 import android.text.SpannableString;
21 import android.text.SpannedString;
22 import android.text.TextUtils;
26 * geometries, text and bitmaps.
92 /** bit mask for the flag enabling underline text */
94 /** bit mask for the flag enabling strike-thru text */
96 /** bit mask for the flag enabling fake-bold text */
98 /** bit mask for the flag enabling linear-text (no caching) */
100 /** bit mask for the flag enabling subpixel-text */
1217 measureText(char[] text, int index, int count) argument
1239 native_measureText(char[] text, int index, int count) argument
1249 measureText(String text, int start, int end) argument
1271 native_measureText(String text, int start, int end) argument
1279 measureText(String text) argument
1296 native_measureText(String text) argument
1306 measureText(CharSequence text, int start, int end) argument
1350 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1375 native_breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1394 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1443 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1465 native_breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1478 getTextWidths(char[] text, int index, int count, float[] widths) argument
1515 getTextWidths(CharSequence text, int start, int end, float[] widths) argument
1559 getTextWidths(String text, int start, int end, float[] widths) argument
1595 getTextWidths(String text, float[] widths) argument
1619 getTextGlyphs(String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
1708 getTextRunAdvances(CharSequence text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex) argument
1722 getTextRunAdvances(CharSequence text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
1806 getTextRunAdvances(String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex) argument
1855 getTextRunAdvances(String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
1921 getTextRunCursor(char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
1961 getTextRunCursor(CharSequence text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2008 getTextRunCursor(String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2034 getTextPath(char[] text, int index, int count, float x, float y, Path path) argument
2056 getTextPath(String text, int start, int end, float x, float y, Path path) argument
2075 getTextBounds(String text, int start, int end, Rect bounds) argument
2095 getTextBounds(char[] text, int index, int count, Rect bounds) argument
2147 native_getTextWidths(int native_object, char[] text, int index, int count, float[] widths) argument
2149 native_getTextWidths(int native_object, String text, int start, int end, float[] widths) argument
2152 native_getTextGlyphs(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
2156 native_getTextRunAdvances(int native_object, char[] text, int index, int count, int contextIndex, int contextCount, int flags, float[] advances, int advancesIndex, int reserved) argument
2159 native_getTextRunAdvances(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
2163 native_getTextRunCursor(int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2165 native_getTextRunCursor(int native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2168 native_getTextPath(int native_object, int bidiFlags, char[] text, int index, int count, float x, float y, int path) argument
2170 native_getTextPath(int native_object, int bidiFlags, String text, int start, int end, float x, float y, int path) argument
2172 nativeGetStringBounds(int nativePaint, String text, int start, int end, Rect bounds) argument
2174 nativeGetCharArrayBounds(int nativePaint, char[] text, int index, int count, Rect bounds) argument
[all...]
/frameworks/base/core/java/android/text/style/
H A DBackgroundColorSpan.java17 package android.text.style;
20 import android.text.ParcelableSpan;
21 import android.text.TextPaint;
22 import android.text.TextUtils;
H A DForegroundColorSpan.java17 package android.text.style;
20 import android.text.ParcelableSpan;
21 import android.text.TextPaint;
22 import android.text.TextUtils;
H A DReplacementSpan.java17 package android.text.style;
21 import android.text.TextPaint;
25 public abstract int getSize(Paint paint, CharSequence text, argument
28 public abstract void draw(Canvas canvas, CharSequence text, argument
H A DSubscriptSpan.java17 package android.text.style;
20 import android.text.ParcelableSpan;
21 import android.text.TextPaint;
22 import android.text.TextUtils;
H A DSuggestionRangeSpan.java17 package android.text.style;
20 import android.text.ParcelableSpan;
21 import android.text.TextPaint;
22 import android.text.TextUtils;
H A DSuperscriptSpan.java17 package android.text.style;
20 import android.text.ParcelableSpan;
21 import android.text.TextPaint;
22 import android.text.TextUtils;
H A DClickableSpan.java17 package android.text.style;
19 import android.text.TextPaint;
23 * If an object of this type is attached to the text of a TextView
25 * text can be selected. If clicked, the {@link #onClick} method will
36 * Makes the text underlined and in the link color.
H A DLineBackgroundSpan.java17 package android.text.style;
28 CharSequence text, int start, int end,
25 drawBackground(Canvas c, Paint p, int left, int right, int top, int baseline, int bottom, CharSequence text, int start, int end, int lnum) argument
H A DMaskFilterSpan.java17 package android.text.style;
20 import android.text.TextPaint;
H A DRasterizerSpan.java17 package android.text.style;
20 import android.text.TextPaint;
/frameworks/base/core/java/android/text/method/
H A DDateKeyListener.java17 package android.text.method;
20 import android.text.InputType;
23 * For entering dates in a text field.
H A DDateTimeKeyListener.java17 package android.text.method;
19 import android.text.InputType;
23 * For entering dates and times in the same text field.
H A DTimeKeyListener.java17 package android.text.method;
20 import android.text.InputType;
23 * For entering times in a text field.
/frameworks/base/core/java/android/widget/
H A DEditText.java20 import android.text.Editable;
21 import android.text.Selection;
22 import android.text.Spannable;
23 import android.text.TextUtils;
24 import android.text.method.ArrowKeyMovementMethod;
25 import android.text.method.MovementMethod;
77 public void setText(CharSequence text, BufferType type) { argument
78 super.setText(text, BufferType.EDITABLE);
/frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
H A DMultiPageTextWithPadding.java22 * One TextView with a text covering several pages. Padding is added
30 String text = "This is a long text.";
31 String longText = "First text.";
33 longText = longText + " " + text;
35 longText = longText + " Last text.";
/frameworks/compile/libbcc/runtime/lib/arm/
H A Drestore_vfp_d8_d15_regs.S22 .text
H A Dsave_vfp_d8_d15_regs.S22 .text
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientChip.java20 import android.text.TextUtils;
21 import android.text.style.DynamicDrawableSpan;
22 import android.text.style.ImageSpan;
68 * Get the text displayed in the chip.
75 * Get the text value this chip represents.
102 public void setOriginalText(String text) { argument
103 if (!TextUtils.isEmpty(text)) {
104 text = text.trim();
106 mOriginalText = text;
[all...]

Completed in 1351 milliseconds

1234567891011>>