Searched refs:text (Results 276 - 300 of 448) sorted by relevance

<<1112131415161718

/frameworks/base/core/java/android/pim/
H A DEventRecurrence.java19 import android.text.TextUtils;
20 import android.text.format.Time;
/frameworks/base/core/java/android/widget/
H A DToast.java55 * Show the view or text notification for a short period of time. This time
62 * Show the view or text notification for a long period of time. This time
221 * Make a standard toast that just contains a text view.
225 * @param text The text to show. Can be formatted text.
230 public static Toast makeText(Context context, CharSequence text, int duration) { argument
237 tv.setText(text);
246 * Make a standard toast that just contains a text view with the text fro
[all...]
H A DFastScroller.java394 String text = mSectionText = sections[sectionIndex].toString();
395 mDrawOverlay = (text.length() != 1 || text.charAt(0) != ' ') &&
/frameworks/base/core/java/com/android/internal/util/
H A DHanziToPinyin.java19 import android.text.TextUtils;
22 import java.text.Collator;
/frameworks/base/core/tests/coretests/src/android/view/
H A DViewGroupChildrenTest.java259 private TextView createView(String text) { argument
261 view.setText(text);
/frameworks/base/media/java/android/media/
H A DExifInterface.java20 import java.text.ParsePosition;
21 import java.text.SimpleDateFormat;
H A DMetadata.java144 * Helper class to hold a triple (time, duration, text). Can be used to
152 public TimedText(Date time, int duration, String text) { argument
155 mText = text;
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DPasswordUnlockScreen.java31 import android.text.method.DigitsKeyListener;
32 import android.text.method.TextKeyListener;
/frameworks/base/core/java/android/text/
H A DStaticLayout.java17 package android.text;
23 import android.text.style.LeadingMarginSpan;
24 import android.text.style.LineHeightSpan;
25 import android.text.style.MetricAffectingSpan;
26 import android.text.style.ReplacementSpan;
29 * StaticLayout is a Layout for text that will not be edited after it
30 * is laid out. Use {@link DynamicLayout} for text that may change.
31 * <p>This is used by widgets to control text layout. You should not need
74 * constructor wants the reference to the display text.
351 Log.e("text", s
947 getFit(TextPaint paint, TextPaint workPaint, CharSequence text, int start, int end, float wid) argument
969 out(CharSequence text, int start, int end, int above, int below, int top, int bottom, int v, float spacingmult, float spacingadd, LineHeightSpan[] chooseht, int[] choosehtv, Paint.FontMetricsInt fm, boolean tab, boolean needMultiply, int pstart, byte[] chdirs, int dir, boolean easy, boolean last, boolean includepad, boolean trackpad, float[] widths, int widstart, int widoff, TextUtils.TruncateAt ellipsize, float ellipsiswidth, float textwidth, TextPaint paint) argument
[all...]
H A DPackedObjectVector.java17 package android.text;
/frameworks/base/awt/org/apache/harmony/awt/gl/font/
H A DTextRunSegmentImpl.java32 //import java.text.Bidi;
42 * text run segment with constant text attributes and direction.
48 * of the glyph-based text run segment.
57 char text[]; field in class:TextRunSegmentImpl.TextSegmentInfo
70 char text[], int start, int end
74 this.text = text;
83 * This class represents a simple text segment backed by the glyph vector
103 LineMetrics lm = i.font.getLineMetrics(i.text,
67 TextSegmentInfo( byte level, Font font, FontRenderContext frc, char text[], int start, int end ) argument
[all...]
H A DTextMetricsCalculator.java34 * This class operates with an arbitrary text string which can include
36 * of the text metrics, such as ascent, descent, leading and advance. Actually,
37 * each text run segment contains logic which allows it to compute its own metrics and
38 * responsibility of this class is to combine metrics for all segments included in the text,
95 LineMetrics lm = firstFont.getLineMetrics(breaker.text, 0, 1, breaker.frc);
132 * Computes metrics for the text managed by the associated TextRunBreaker
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java28 import android.text.TextUtils;
258 * @param text The text to display in positive button.
262 public void setButton(int whichButton, CharSequence text, argument
272 mButtonPositiveText = text;
277 mButtonNegativeText = text;
282 mButtonNeutralText = text;
582 /* The contentPanel displays either a custom text message or
583 * a ListView. If it's text we should use the dark background
835 CheckedTextView text
[all...]
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java159 TextView text = (TextView) view;
160 text.setText(item.label);
165 text.setCompoundDrawablesWithIntrinsicBounds(item.icon, null, null, null);
/frameworks/base/libs/ui/
H A DEventRecurrence.cpp79 const char16_t* text; member in struct:android::LHSProc
164 while (p->text != NULL) {
166 if (0 == memcmp(p->text, str, len*sizeof(char16_t))) {
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java29 import android.text.format.Time;
450 public void characters(char text[], int start, int length) argument
453 builder.append(text, start, length);
/frameworks/base/awt/java/awt/
H A DFontMetrics.java28 import java.text.CharacterIterator;
95 * Gets the height of the text line in this Font.
97 * @return the height of the text line in this Font.
/frameworks/base/core/java/android/accounts/
H A DGrantCredentialsPermissionActivity.java29 import android.text.TextUtils;
/frameworks/base/core/java/android/preference/
H A DPreferenceGroup.java28 import android.text.TextUtils;
H A DPreferenceScreen.java25 import android.text.TextUtils;
H A DRingtonePreference.java25 import android.text.TextUtils;
/frameworks/base/core/java/android/provider/
H A DCallLog.java27 import android.text.TextUtils;
/frameworks/base/core/java/com/android/internal/http/
H A DHttpDateTime.java19 import android.text.format.Time;
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteDatabase.cpp153 const char *text = (const char*)sqlite3_column_text(statement, 0); local
154 if (strcmp(text, "ok") != 0) {
155 LOGE("integrity check failed for \"%s\": %s\n", integritySql, path8, text);
156 jniThrowException(env, "android/database/sqlite/SQLiteDatabaseCorruptException", text);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewPerformanceTest.java26 import android.text.SpannedString;

Completed in 443 milliseconds

<<1112131415161718