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

1234567891011>>

/frameworks/base/core/java/android/text/style/
H A DLineHeightSpan.java17 package android.text.style;
21 import android.text.Layout;
22 import android.text.TextPaint;
27 public void chooseHeight(CharSequence text, int start, int end, argument
32 public void chooseHeight(CharSequence text, int start, int end, argument
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/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/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiCollection.java20 * or targeting a sub elements by a child's text or description.
33 * a child UI element anywhere within its sub hierarchy that has content-description text.
38 * @param text String of the identifying child contents of of the <code>childPattern</code>
42 public UiObject getChildByDescription(UiSelector childPattern, String text) argument
44 if (text != null) {
49 if(nodeDesc != null && nodeDesc.contains(text)) {
52 UiObject item = row.getChild(new UiSelector().descriptionContains(text));
58 throw new UiObjectNotFoundException("for description= \"" + text + "\"");
86 * a child UI element anywhere within its sub hierarchy that has text attribute =
87 * <code>text</cod
96 getChildByText(UiSelector childPattern, String text) argument
[all...]
/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/opt/telephony/src/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.java39 StringBuilder text = new StringBuilder();
41 text.append("Application ");
42 text.append(mAppName);
43 text.append(" (process ");
44 text.append(app.processName);
45 text.append(")");
47 text.append("Process ");
48 text.append(app.processName);
51 text.append(" is waiting for the debugger to attach.");
53 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;
28 * geometries, text and bitmaps.
96 /** bit mask for the flag enabling underline text */
98 /** bit mask for the flag enabling strike-thru text */
100 /** bit mask for the flag enabling fake-bold text */
102 /** bit mask for the flag enabling linear-text (no caching) */
104 /** bit mask for the flag enabling subpixel-text */
1288 measureText(char[] text, int index, int count) argument
1310 native_measureText(char[] text, int index, int count) argument
1320 measureText(String text, int start, int end) argument
1342 native_measureText(String text, int start, int end) argument
1350 measureText(String text) argument
1367 native_measureText(String text) argument
1377 measureText(CharSequence text, int start, int end) argument
1421 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1446 native_breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1465 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1514 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1536 native_breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1549 getTextWidths(char[] text, int index, int count, float[] widths) argument
1586 getTextWidths(CharSequence text, int start, int end, float[] widths) argument
1630 getTextWidths(String text, int start, int end, float[] widths) argument
1666 getTextWidths(String text, float[] widths) argument
1690 getTextGlyphs(String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
1779 getTextRunAdvances(CharSequence text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex) argument
1793 getTextRunAdvances(CharSequence text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
1877 getTextRunAdvances(String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex) argument
1926 getTextRunAdvances(String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
1992 getTextRunCursor(char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2032 getTextRunCursor(CharSequence text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2079 getTextRunCursor(String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2105 getTextPath(char[] text, int index, int count, float x, float y, Path path) argument
2127 getTextPath(String text, int start, int end, float x, float y, Path path) argument
2146 getTextBounds(String text, int start, int end, Rect bounds) argument
2166 getTextBounds(char[] text, int index, int count, Rect bounds) argument
2219 native_getTextWidths(int native_object, char[] text, int index, int count, float[] widths) argument
2221 native_getTextWidths(int native_object, String text, int start, int end, float[] widths) argument
2224 native_getTextGlyphs(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
2228 native_getTextRunAdvances(int native_object, char[] text, int index, int count, int contextIndex, int contextCount, int flags, float[] advances, int advancesIndex, int reserved) argument
2231 native_getTextRunAdvances(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
2235 native_getTextRunCursor(int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2237 native_getTextRunCursor(int native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2240 native_getTextPath(int native_object, int bidiFlags, char[] text, int index, int count, float x, float y, int path) argument
2242 native_getTextPath(int native_object, int bidiFlags, String text, int start, int end, float x, float y, int path) argument
2244 nativeGetStringBounds(int nativePaint, String text, int start, int end, Rect bounds) argument
2246 nativeGetCharArrayBounds(int nativePaint, char[] text, int index, int count, Rect bounds) argument
[all...]
/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/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

Completed in 4192 milliseconds

1234567891011>>