Searched defs:text (Results 101 - 125 of 328) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/text/
H A DSpanSet.java17 package android.text;
H A DTextPaint.java17 package android.text;
23 * data used during text measuring and drawing.
H A DGraphicsOperations.java17 package android.text;
H A DLoginFilter.java17 package android.text;
20 * Abstract class for filtering login-related text (user names and passwords)
43 * with the new text from the range <code>start &hellip; end</code>
48 * as this is what happens when you delete text.
H A DPackedObjectVector.java17 package android.text;
/frameworks/base/core/java/android/text/method/
H A DAllCapsTransformationMethod.java16 package android.text.method;
26 * Transforms source text into an ALL CAPS string, locale-aware.
45 Log.w(TAG, "Caller did not enable length changes; not transforming text");
H A DBaseKeyListener.java17 package android.text.method;
21 import android.text.*;
22 import android.text.method.TextKeyListener.Capitalize;
28 * Provides a basic foundation for entering and editing text.
174 * the event's text into the content.
191 CharSequence text = event.getCharacters();
192 if (text == null) {
196 content.replace(selectionStart, selectionEnd, text);
/frameworks/base/core/java/android/text/style/
H A DAbsoluteSizeSpan.java17 package android.text.style;
20 import android.text.ParcelableSpan;
21 import android.text.TextPaint;
22 import android.text.TextUtils;
30 * Set the text size to <code>size</code> physical pixels.
37 * Set the text size to <code>size</code> physical pixels,
H A DEasyEditSpan.java17 package android.text.style;
21 import android.text.ParcelableSpan;
22 import android.text.TextUtils;
26 * Provides an easy way to edit a portion of text.
28 * The {@link TextView} uses this span to allow the user to delete a chuck of text in one click.
30 * {@link TextView} removes the span when the user deletes the whole text or modifies it.
32 * This span can be also used to receive notification when the user deletes or modifies the text;
37 * The extra key field in the pending intent that describes how the text changed.
44 "android.text.style.EXTRA_TEXT_CHANGED_TYPE";
47 * The value of {@link #EXTRA_TEXT_CHANGED_TYPE} when the text wrappe
[all...]
H A DImageSpan.java17 package android.text.style;
H A DLocaleSpan.java17 package android.text.style;
21 import android.text.ParcelableSpan;
22 import android.text.TextPaint;
23 import android.text.TextUtils;
27 * Changes the {@link Locale} of the text to which the span is attached.
34 * @param locale The {@link Locale} of the text to which the span is
H A DStyleSpan.java17 package android.text.style;
22 import android.text.ParcelableSpan;
23 import android.text.TextPaint;
24 import android.text.TextUtils;
H A DTypefaceSpan.java17 package android.text.style;
22 import android.text.ParcelableSpan;
23 import android.text.TextPaint;
24 import android.text.TextUtils;
27 * Changes the typeface family of the text to which the span is attached.
/frameworks/base/core/java/android/view/inputmethod/
H A DExtractedText.java21 import android.text.TextUtils;
24 * Information about text that has been extracted for use by an input method.
26 * This contains information about a portion of the currently edited text,
31 * The text that has been extracted.
33 public CharSequence text; field in class:ExtractedText
36 * The offset in the overall text at which the extracted text starts.
41 * If the content is a report of a partial text change, this is the
43 * {@link #partialEndOffset}. If the content is the full text, this
49 * If the content is a report of a partial text chang
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java21 import android.text.TextUtils;
33 * @param text the text which will be input to TextService
35 public TextInfo(String text) { argument
36 this(text, 0, 0);
41 * @param text the text which will be input to TextService
45 public TextInfo(String text, int cookie, int sequence) { argument
46 if (TextUtils.isEmpty(text)) {
47 throw new IllegalArgumentException(text);
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DListItemFactory.java151 * @param text The text of the button
155 public static View button(int position, Context context, String text, int desiredHeight) { argument
158 result.setText(text);
172 * @param text The text of the button
176 public static View convertButton(View convertView, String text, int position) { argument
178 ((Button) convertView).setText(text);
187 * Create a text view ready to be a list item.
191 * @param text Th
195 text(int position, Context context, String text, int desiredHeight) argument
216 convertText(View convertView, String text, int position) argument
236 doubleText(int position, Context context, String text, int desiredHeight) argument
279 convertDoubleText(View convertView, String text, int position) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DViewGroupChildrenTest.java259 private TextView createView(String text) { argument
261 view.setText(text);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextPathActivity.java70 private void drawTextAsPath(Canvas canvas, String text, Path path) { argument
71 int count = text.length();
72 mHugePaint.getTextPath(text, 0, count, 0, 0, path);
/frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
H A DBaseRecipientChip.java38 * Get the text displayed in the chip.
43 * Get the text value this chip represents.
63 * Set the text in the edittextview originally associated with this chip
66 void setOriginalText(String text); argument
69 * Set the text in the edittextview originally associated with this chip
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextMessage.java25 public String text = null; field in class:TextMessage
38 text = in.readString();
55 dest.writeString(text);
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatKitKat.java32 public List<Object> findAccessibilityNodeInfosByText(String text, argument
48 String text, int virtualViewId) {
51 bridge.findAccessibilityNodeInfosByText(text, virtualViewId);
/frameworks/support/v4/tests/java/android/support/v4/text/
H A DBidiFormatterTest.java17 package android.support.v4.text;
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp88 String8 text; local
89 it.getString(&text);
91 printf(" found text frame '%s': %s\n", id.string(), text.string());
/frameworks/base/core/java/android/accounts/
H A DChooseAccountTypeActivity.java168 TextView text; field in class:ChooseAccountTypeActivity.ViewHolder
190 holder.text = (TextView) convertView.findViewById(R.id.account_row_text);
197 holder.text.setText(mInfos.get(position).name);
/frameworks/base/core/java/android/content/
H A DClipboardManager.java31 * Interface to the clipboard service, for placing and retrieving text in
53 public class ClipboardManager extends android.text.ClipboardManager {
204 * creates a ClippedItem holding the given text and sets it as the
207 public void setText(CharSequence text) { argument
208 setPrimaryClip(ClipData.newPlainText(null, text));

Completed in 715 milliseconds

1234567891011>>