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

<<11121314151617181920>>

/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java45 public List<Object> findAccessibilityNodeInfosByText(Object info, String text); argument
77 public void setText(Object info, CharSequence text); argument
104 public List<Object> findAccessibilityNodeInfosByText(Object info, String text) { argument
264 public void setText(Object info, CharSequence text) { argument
300 public List<Object> findAccessibilityNodeInfosByText(Object info, String text) { argument
301 return AccessibilityNodeInfoCompatIcs.findAccessibilityNodeInfosByText(info, text);
500 public void setText(Object info, CharSequence text) { argument
501 AccessibilityNodeInfoCompatIcs.setText(info, text);
695 * Finds {@link android.view.accessibility.AccessibilityNodeInfo}s by text. The match
704 * @param text Th
707 findAccessibilityNodeInfosByText(String text) argument
1103 setText(CharSequence text) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DSmsMessage.java50 /** User data text encoding code unit size */
274 * Divide a message text into several fragments, none bigger than
275 * the maximum SMS message text size.
277 * @param text text, must not be null.
279 * comprise the original msg text
283 public static ArrayList<String> fragmentText(String text) { argument
286 com.android.internal.telephony.cdma.SmsMessage.calculateLength(text, false) :
287 com.android.internal.telephony.gsm.SmsMessage.calculateLength(text, false);
322 int textLen = text
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java27 import android.text.TextUtils;
969 final char[] text, final int index, final int count,
976 // Paint.TextAlign indicates how the text is positioned relative to X.
981 float m = paintDelegate.measureText(text, index, count);
997 int upTo = mainFont.mFont.canDisplayUpTo(text, i, lastIndex);
1001 graphics.drawChars(text, i, lastIndex - i, (int)x, (int)y);
1006 graphics.drawChars(text, i, upTo - i, (int)x, (int)y);
1009 x += mainFont.mMetrics.charsWidth(text, i, upTo - i);
1029 int charCount = Character.isHighSurrogate(text[i]) ? 2 : 1;
1030 upTo = fontInfo.mFont.canDisplayUpTo(text,
968 native_drawText(int nativeCanvas, final char[] text, final int index, final int count, final float startX, final float startY, int flags, int paint) argument
1068 native_drawText(int nativeCanvas, String text, int start, int end, float x, float y, int flags, int paint) argument
1078 native_drawTextRun(int nativeCanvas, String text, int start, int end, int contextStart, int contextEnd, float x, float y, int flags, int paint) argument
1089 native_drawTextRun(int nativeCanvas, char[] text, int start, int count, int contextStart, int contextCount, float x, float y, int flags, int paint) argument
1096 native_drawPosText(int nativeCanvas, char[] text, int index, int count, float[] pos, int paint) argument
1106 native_drawPosText(int nativeCanvas, String text, float[] pos, int paint) argument
1115 native_drawTextOnPath(int nativeCanvas, char[] text, int index, int count, int path, float hOffset, float vOffset, int bidiFlags, int paint) argument
1127 native_drawTextOnPath(int nativeCanvas, String text, int path, float hOffset, float vOffset, int flags, int paint) argument
[all...]
/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DWebViewContextMenu.java90 public Copy(CharSequence text) { argument
91 mText = text;
105 public Share(String text) { argument
106 mUri = text;
119 send.setType("text/plain");
126 send.setType("text/plain");
137 private void copy(CharSequence text) { argument
140 clipboard.setPrimaryClip(ClipData.newPlainText(null, text));
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java51 if (command.equals("text")) {
67 * Convert the characters of string text into key event's and send to
70 * @param text is a string of characters you want to input to the device.
73 private void sendText(String text) { argument
75 StringBuffer buff = new StringBuffer(text);
140 System.err.println("usage: input [text|keyevent]");
141 System.err.println(" input text <string>");
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java20 import android.text.Editable;
21 import android.text.Selection;
22 import android.text.SpannableStringBuilder;
23 import android.text.Spanned;
24 import android.text.method.WordIterator;
25 import android.text.style.SpellCheckSpan;
26 import android.text.style.SuggestionSpan;
35 import java.text.BreakIterator;
72 // Parsers on chunck of text, cutting text int
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DISms.aidl100 * @param text the body of the message to send
118 void sendText(in String destAddr, in String scAddr, in String text,
122 * Send a multi-part text based SMS.
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
H A DFixVibrateSetting.java97 String text = getString(R.string.current_setting, ringer, notification);
98 mCurrentSetting.setText(text);
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DToastTest.java87 String text = "freq=" + readFile("/sys/class/leds/red/device/grpfreq")
89 mToast1 = Toast.makeText(ToastTest.this, text, Toast.LENGTH_SHORT);
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java32 import android.text.TextUtils;
59 * implementation should synthesize text as per the request parameters and
187 * Tells the service to synthesize speech from the given text. This method should
521 public SynthesisSpeechItem(String callingApp, Bundle params, String text) { argument
523 mText = text;
537 Log.wtf(TAG, "Got null text");
621 public SynthesisToFileSpeechItem(String callingApp, Bundle params, String text, argument
623 super(callingApp, params, text);
751 public int speak(String callingApp, String text, int queueMode, Bundle params) {
752 if (!checkNonNull(callingApp, text, param
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_GLES20Canvas.cpp488 static void renderText(OpenGLRenderer* renderer, const jchar* text, int count, argument
493 value = TextLayoutCache::getInstance().getValue(paint, text, 0, count, count, flags);
500 value->computeValues(paint, text, 0, count, count, flags);
510 if (TextLayout::prepareText(paint, text, count, flags, &workText, &workBytes, &buffer)) {
517 static void renderTextRun(OpenGLRenderer* renderer, const jchar* text, argument
523 value = TextLayoutCache::getInstance().getValue(paint, text, start, count, contextCount, flags);
530 value->computeValues(paint, text, start, count, contextCount, flags);
541 if (TextLayout::prepareRtlTextRun(text, start, count, contextCount, shaped)) {
547 renderer->drawText((const char*) (text + start), count << 1, count, x, y, paint);
553 OpenGLRenderer* renderer, jcharArray text, jin
552 android_view_GLES20Canvas_drawTextArray(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jcharArray text, jint index, jint count, jfloat x, jfloat y, jint flags, SkPaint* paint) argument
560 android_view_GLES20Canvas_drawText(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jstring text, jint start, jint end, jfloat x, jfloat y, jint flags, SkPaint* paint) argument
568 android_view_GLES20Canvas_drawTextRunArray(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jcharArray text, jint index, jint count, jint contextIndex, jint contextCount, jfloat x, jfloat y, jint dirFlags, SkPaint* paint) argument
578 android_view_GLES20Canvas_drawTextRun(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jstring text, jint start, jint end, jint contextStart, int contextEnd, jfloat x, jfloat y, jint dirFlags, SkPaint* paint) argument
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccount.java21 import android.text.TextUtils;
/frameworks/base/core/java/android/app/
H A DFragmentBreadCrumbs.java258 final TextView text = (TextView) item.findViewById(com.android.internal.R.id.title);
259 text.setText(bse.getBreadCrumbTitle());
260 text.setTag(bse);
265 text.setOnClickListener(mOnClickListener);
/frameworks/base/core/java/android/content/pm/
H A DPermissionGroupInfo.java21 import android.text.TextUtils;
H A DPermissionInfo.java21 import android.text.TextUtils;
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java25 import android.text.TextUtils;
28 * A provider of user defined words for input methods to use for predictive text input.
/frameworks/base/core/java/android/text/
H A DInputFilter.java17 package android.text;
28 * with the new text from the range <code>start &hellip; end</code>
33 * as this is what happens when you delete text. Also beware that
74 * This filter will constrain edits not to make the length of the text
/frameworks/base/core/java/android/text/style/
H A DSuggestionSpan.java17 package android.text.style;
25 import android.text.ParcelableSpan;
26 import android.text.TextPaint;
27 import android.text.TextUtils;
34 * Holds suggestion candidates for the text enclosed in this span.
36 * When such a span is edited in an EditText, double tapping on the text enclosed in this span will
37 * display a popup dialog listing suggestion replacement for that text. The user can then replace
38 * the original text by one of the suggestions.
41 * for the text.
54 * Sets this flag if the suggestions apply to a misspelled word/text
[all...]
/frameworks/base/core/java/android/util/
H A DCharsetUtils.java20 import android.text.TextUtils;
/frameworks/base/core/java/android/view/inputmethod/
H A DCorrectionInfo.java21 import android.text.TextUtils;
24 * Information about a single text correction that an editor has reported to
33 * @param offset The offset in the edited text where the old and new text start.
34 * @param oldText The old text that has been replaced.
35 * @param newText The replacement text.
50 * Return the offset position of this correction in the text. Both the {@link #getOldText()} and
58 * Return the text that has actually been typed by the user, and which has been corrected.
65 * Return the new text that corrects what was typed by the user.
H A DInputBinding.java22 import android.text.TextUtils;
/frameworks/base/core/java/android/webkit/
H A DCacheLoader.java20 import android.text.TextUtils;
/frameworks/base/core/java/com/android/internal/widget/
H A DDialogTitle.java21 import android.text.Layout;
28 * the text to the available space.
/frameworks/base/core/tests/coretests/src/android/webkit/
H A DWebkitTest.java20 import android.text.format.DateFormat;
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridScrollListener.java49 mText = (TextView) findViewById(R.id.text);

Completed in 827 milliseconds

<<11121314151617181920>>