Searched refs:text (Results 226 - 250 of 703) sorted by relevance

1234567891011>>

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccSmsInterfaceManagerProxy.java60 String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
61 mIccSmsInterfaceManager.sendText(destAddr, scAddr, text, sentIntent, deliveryIntent);
59 sendText(String destAddr, String scAddr, String text, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
/frameworks/base/tests/LargeAssetTest/src/com/android/largeassettest/
H A DLargeAssetTest.java99 CharSequence text = (result) ? "Valid!" : "NOT VALID";
100 mResultText.setText(text);
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java23 import android.text.Editable;
24 import android.text.Selection;
25 import android.text.Spannable;
26 import android.text.TextWatcher;
70 * Place text in the text field so it can be searched for. Need to press
73 void setText(String text) { argument
74 mEditText.setText(text);
81 // Necessary each time we set the text, so that this will watch
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java273 public boolean commitText(CharSequence text, int newCursorPosition) { argument
275 mIInputContext.commitText(text, newCursorPosition);
282 public boolean commitCompletion(CompletionInfo text) { argument
284 mIInputContext.commitCompletion(text);
336 public boolean setComposingText(CharSequence text, int newCursorPosition) { argument
338 mIInputContext.setComposingText(text, newCursorPosition);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java31 import android.text.Layout;
160 CharSequence text = mItemData.getTitleForItemView(this);
168 text = mShortcutCaption;
171 setText(text);
185 // When there is an icon, make sure the text is at the bottom
197 // When there is no icon, make sure the text is centered vertically
245 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
246 super.onTextChanged(text, start, before, after);
248 // our layout params depend on the length of the text
254 * augment them to be appropriate to the current text siz
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.h71 TextLayoutCacheKey(const SkPaint* paint, const UChar* text, size_t start, size_t count,
77 * We need to copy the text when we insert the key into the cache itself.
78 * We don't need to copy the text when we are only comparing keys.
90 const UChar* text; // if text is NULL, use textCopy member in class:android::TextLayoutCacheKey
103 inline const UChar* getText() const { return text ? text : textCopy.string(); }
184 * Cache of text layout information.
202 void operator()(TextLayoutCacheKey& text, sp<TextLayoutCacheValue>& desc);
204 sp<TextLayoutCacheValue> getValue(SkPaint* paint, const jchar* text, jin
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DSmsManager.java22 import android.text.TextUtils;
40 * Manages SMS operations such as sending data, text, and pdu SMS messages.
48 * Send a text based SMS.
53 * @param text the body of the message to send
71 * @throws IllegalArgumentException if destinationAddress or text are empty
74 String destinationAddress, String scAddress, String text,
80 if (TextUtils.isEmpty(text)) {
87 iccISms.sendText(destinationAddress, scAddress, text, sentIntent, deliveryIntent);
95 * Divide a message text into several fragments, none bigger than
98 * @param text th
73 sendTextMessage( String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
102 divideMessage(String text) argument
[all...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DVisualDiffUtils.java32 * diff.text
37 * diff.text
46 parts = diff.text.split("\n", -1);
88 if (diff.text.endsWith("\n") || isLastDiff) {
129 if (diff.text.endsWith("\n") || isLastDiff) {
164 if (diff.text.endsWith("\n") || forceOutputLine) {
167 line += begSpan + diff.text.replace(" ", "&nbsp;&nbsp;")
172 line += begSpan + diff.text.replace(" ", "&nbsp;&nbsp;") + endSpan;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V30.java350 protected String maybeUnescapeText(final String text) { argument
351 return unescapeText(text);
354 public static String unescapeText(final String text) { argument
356 final int length = text.length();
358 char ch = text.charAt(i);
360 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/base/core/java/android/widget/
H A DSwitch.java28 import android.text.Layout;
29 import android.text.StaticLayout;
30 import android.text.TextPaint;
31 import android.text.TextUtils;
44 * or simply tap to toggle as if it were a checkbox. The {@link #setText(CharSequence) text}
45 * property controls the text displayed in the label for the switch, whereas the
46 * {@link #setTextOff(CharSequence) off} and {@link #setTextOn(CharSequence) on} text
47 * controls the text on the thumb. Similarly, the
49 * setTypeface() methods control the typeface and style of label text, whereas the
169 * Sets the switch text colo
384 makeLayout(CharSequence text) argument
[all...]
H A DArrayAdapter.java41 * of your objects to determine what text will be displayed for the item in the list.
368 TextView text;
379 text = (TextView) view;
382 text = (TextView) view.findViewById(mFieldId);
392 text.setText((CharSequence)item);
394 text.setText(item.toString());
H A DTextView.java47 import android.text.BoringLayout;
48 import android.text.DynamicLayout;
49 import android.text.Editable;
50 import android.text.GetChars;
51 import android.text.GraphicsOperations;
52 import android.text.InputFilter;
53 import android.text.InputType;
54 import android.text.Layout;
55 import android.text.ParcelableSpan;
56 import android.text
2811 append(CharSequence text) argument
2820 append(CharSequence text, int start, int end) argument
2894 CharSequence text; field in class:TextView.SavedState
3136 setText(CharSequence text) argument
3149 setTextKeepState(CharSequence text) argument
3161 setText(CharSequence text, BufferType type) argument
3169 setText(CharSequence text, BufferType type, boolean notifyBefore, int oldlen) argument
3327 setText(char[] text, int start, int len) argument
3455 setTextKeepState(CharSequence text, BufferType type) argument
4122 chooseSize(PopupWindow pop, CharSequence text, TextView tv) argument
5798 setExtractedText(ExtractedText text) argument
5862 onCommitCompletion(CompletionInfo text) argument
7547 onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) argument
7594 sendBeforeTextChanged(CharSequence text, int start, int before, int after) argument
7629 sendOnTextChanged(CharSequence text, int start, int before, int after) argument
7650 sendAfterTextChanged(Editable text) argument
9177 getTextThumbnailBuilder(CharSequence text) argument
9629 SpannableStringBuilder text = new SpannableStringBuilder(); field in class:TextView.SuggestionsPopupWindow.SuggestionInfo
10005 removeSuggestionSpans(CharSequence text) argument
11464 replaceText_internal(int start, int end, CharSequence text) argument
[all...]
H A DAlphabetIndexer.java65 private java.text.Collator mCollator;
96 mCollator = java.text.Collator.getInstance();
97 mCollator.setStrength(java.text.Collator.PRIMARY);
/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/core/java/android/text/
H A DDynamicLayout.java17 package android.text;
20 import android.text.style.UpdateLayout;
21 import android.text.style.WrapTogetherSpan;
26 * DynamicLayout is a text layout that updates itself as the text is edited.
27 * <p>This is used by widgets to control text layout. You should not need
39 * Make a layout for the specified text that will be updated as
40 * the text is changed.
52 * Make a layout for the transformed text (password transformation
54 * that will be updated as the base text i
[all...]
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;
38 * A base class that manages text layou
113 Layout(CharSequence text, TextPaint paint, int width, Alignment align, float spacingMult, float spacingAdd) argument
135 Layout(CharSequence text, TextPaint paint, int width, Alignment align, TextDirectionHeuristic textDir, float spacingMult, float spacingAdd) argument
165 replaceWith(CharSequence text, TextPaint paint, int width, Alignment align, float spacingmult, float spacingadd) argument
1484 measurePara(TextPaint paint, TextPaint workPaint, CharSequence text, int start, int end) argument
1602 nextTab(CharSequence text, int start, int end, float h, Object[] tabs) argument
1660 getParagraphSpans(Spanned text, int start, int end, Class<T> type) argument
[all...]
/frameworks/base/libs/rs/
H A DrsScriptC_LibGL.cpp277 const char *text = (const char *)a->getPtr(); local
279 rsc->mStateFont.renderText(text, allocSize, x, y);
282 void rsrDrawText(Context *rsc, Script *sc, const char *text, int x, int y) { argument
283 size_t textLen = strlen(text);
284 rsc->mStateFont.renderText(text, textLen, x, y);
306 const char *text = (const char *)a->getPtr(); local
309 rsc->mStateFont.measureText(text, textLen, &metrics);
313 void rsrMeasureText(Context *rsc, Script *sc, const char *text, argument
315 size_t textLen = strlen(text);
317 rsc->mStateFont.measureText(text, textLe
[all...]
/frameworks/base/media/libstagefright/timedtext/
H A DTimedTextPlayer.cpp94 LOGE("Incorrect text track index: %d", index);
99 if (index < mTextTrackVector.size()) { // start an in-band text
108 } else { // start an out-of-band text
109 OutOfBandText text = local
112 mOutOfBandSource = text.source;
113 TimedTextParser::FileType fileType = text.type;
156 // send an empty text to clear the screen
233 notifyListener(MEDIA_TIMED_TEXT); //empty text to clear the screen
266 //send the text now
313 OutOfBandText text; local
[all...]
H A DTimedTextParser.cpp53 // scan the text file to get start/stop time and the
54 // offset of each piece of text content
196 AString *text, int64_t *startTimeUs, int64_t *endTimeUs,
200 text->clear();
252 text->append(str, info.textLen);
195 getText( AString *text, int64_t *startTimeUs, int64_t *endTimeUs, const MediaSource::ReadOptions *options) argument
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java23 import android.text.TextUtils.TruncateAt;
145 CharSequence text = null;
147 text = adapter.getPageTitle(currentItem - 1);
149 mPrevText.setText(text);
153 text = null;
155 text = adapter.getPageTitle(currentItem + 1);
157 mNextText.setText(text);
306 // Only update the text here if we're not dragging or settling.
/frameworks/compile/linkloader/include/impl/
H A DELFObject.hxx126 ELFSectionProgBitsTy *text) {
141 Inst_t *inst = (Inst_t *)&(*text)[rel->getOffset()];
194 void *stub = text->getStubLayout()->allocateStub(ext_func);
256 ELFSectionProgBitsTy *text) {
270 Inst_t *inst = (Inst_t *)&(*text)[rel->getOffset()];
307 ELFSectionProgBitsTy *text) {
321 Inst_t *inst = (Inst_t *)&(*text)[rel->getOffset()];
352 ELFSectionProgBitsTy *text) {
365 Inst_t *inst = (Inst_t *)&(*text)[rel->getOffset()];
123 relocateARM(void *(*find_sym)(void *context, char const *name), void *context, ELFSectionRelTableTy *reltab, ELFSectionProgBitsTy *text) argument
253 relocateX86_64(void *(*find_sym)(void *context, char const *name), void *context, ELFSectionRelTableTy *reltab, ELFSectionProgBitsTy *text) argument
304 relocateX86_32(void *(*find_sym)(void *context, char const *name), void *context, ELFSectionRelTableTy *reltab, ELFSectionProgBitsTy *text) argument
349 relocateMIPS(void *(*find_sym)(void *context, char const *name), void *context, ELFSectionRelTableTy *reltab, ELFSectionProgBitsTy *text) argument
/frameworks/base/core/java/android/text/method/
H A DTextKeyListener.java17 package android.text.method;
25 import android.text.*;
29 import android.text.InputType;
34 * This is the key listener for typing normal text. It delegates to
99 * specified position in the specified text, with the specified rules.
102 * @param cs the text in which an insertion is being made.
103 * @param off the offset into that text where the insertion is being made.
153 * just clears the text but not the input state.
155 * @param e the buffer whose text and state are to be cleared.
288 boolean text
[all...]
H A DTouch.java17 package android.text.method;
19 import android.text.Layout;
20 import android.text.Layout.Alignment;
21 import android.text.NoCopySpan;
22 import android.text.Spannable;
34 * the text that will be visible after scrolling to the specified
178 * @param widget The text view.
179 * @param buffer The text buffer.
187 * @param widget The text view.
188 * @param buffer The text buffe
[all...]
/frameworks/ex/common/java/com/android/common/contacts/
H A DDataUsageStatUpdater.java29 import android.text.TextUtils;
30 import android.text.util.Rfc822Token;
31 import android.text.util.Rfc822Tokenizer;
85 for (CharSequence text : texts) {
86 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(text.toString().trim());

Completed in 839 milliseconds

1234567891011>>