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

1234567891011>>

/frameworks/base/core/java/android/widget/
H A DNumberPicker.java24 import android.text.InputFilter;
25 import android.text.InputType;
26 import android.text.Spanned;
27 import android.text.method.NumberKeyListener;
161 /* When focus is lost check that the text field
176 /* The text view may still have focus so clear it's focus which will
273 // Allow text entry rather than strictly numeric entry.
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java22 import android.text.TextUtils;
/frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
H A DLineVerifierElem.java20 import android.text.TextUtils;
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A DDot_p_opt.s29 .section .text
H A Dscale_sig_opt.s27 .section .text
/frameworks/base/opengl/libagl/
H A Diterators.S19 .text
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DAccountUnlockScreen.java32 import android.text.Editable;
33 import android.text.InputFilter;
34 import android.text.LoginFilter;
35 import android.text.TextWatcher;
H A DIconUtilities.java36 import android.text.Layout.Alignment;
37 import android.text.StaticLayout;
38 import android.text.TextPaint;
/frameworks/base/services/java/com/android/server/
H A DTwilightCalculator.java19 import android.text.format.DateUtils;
/frameworks/base/tools/aidl/
H A Daidl_language.h60 // XXX missing comments/copy text here
116 // strips off the leading whitespace, the "import" text
119 char* parse_import_statement(const char* text);
H A Daidl.cpp119 parse_import_statement(const char* text) argument
124 while (isspace(*text)) {
125 text++;
127 while (!isspace(*text)) {
128 text++;
130 while (isspace(*text)) {
131 text++;
133 end = text;
137 len = end-text;
140 memcpy(rv, text, le
[all...]
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java51 /** Flag value: Content is human-readable UTF-8 text (can be combined with IS_GZIPPED). */
84 /** Create a new Entry with plain text contents. */
85 public Entry(String tag, long millis, String text) { argument
87 if (text == null) throw new NullPointerException("text == null");
91 mData = text.getBytes();
161 * @return the uncompressed text contents of the entry, null if the entry is not text.
235 * Stores human-readable text. The data may be discarded eventually (or even
/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java17 package android.text.method;
23 import android.text.*;
24 import android.text.method.TextKeyListener.Capitalize;
151 // or the text no longer matches, so move the selection over
H A DQwertyKeyListener.java17 package android.text.method;
19 import android.text.*;
20 import android.text.method.TextKeyListener.Capitalize;
377 * AutoText-style replacement on a region of text and want to let
381 * @param content the Editable text where the replacement was made
384 * @param original the text to be restored if the user presses DEL
487 public Replaced(char[] text) { argument
488 mText = text;
/frameworks/base/core/java/android/util/
H A DCalendarUtils.java26 import android.text.TextUtils;
27 import android.text.format.DateUtils;
28 import android.text.format.Time;
/frameworks/base/core/java/com/android/internal/widget/
H A DDigitalClock.java29 import android.text.format.DateFormat;
36 import java.text.DateFormatSymbols;
218 mFormat = android.text.format.DateFormat.is24HourFormat(getContext())
/frameworks/base/core/tests/coretests/src/android/text/
H A DSpannedTest.java17 package android.text;
22 import android.text.*;
23 import android.text.style.*;
/frameworks/base/core/tests/coretests/src/android/view/
H A DListContextMenu.java134 String text = ((TextView) info.targetView).getText().toString();
135 if (text.contains("[0]")) {
138 } else if (text.contains("[1]")) {
/frameworks/base/libs/usb/tests/AccessoryChat/src/com/android/accessorychat/
H A DAccessoryChat.java178 String text = new String(buffer, 0, ret);
179 Log.d(TAG, "chat: " + text);
180 m.obj = text;
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java19 import android.text.*;
20 import android.text.style.*;
310 * Forces the text line to be the specified height, shrinking/stretching
312 * will make the text unreadable.
322 public void chooseHeight(CharSequence text, int start, int end, argument
326 chooseHeight(text, start, end, spanstartv, v, fm, null);
329 public void chooseHeight(CharSequence text, int start, int end, argument
/frameworks/base/services/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp172 jstring text = env->NewStringUTF(notification->text); local
175 if (requestor_id && text && extras) {
179 notification->default_response, requestor_id, text,
188 if (text)
189 env->DeleteLocalRef(text);
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteQuery.cpp196 uint8_t const * text = (uint8_t const *)sqlite3_column_text(statement, i); local
202 uint8_t const * text = (uint8_t const *)sqlite3_column_text16(statement, i);
208 LOGE("Failed allocating %u bytes for text/blob at %d,%d", size,
213 window->copyIn(offset, text, size);
/frameworks/base/core/java/android/content/
H A DSyncAdapterType.java19 import android.text.TextUtils;
/frameworks/base/core/java/android/content/pm/
H A DLabeledIntent.java22 import android.text.TextUtils;
58 * @param nonLocalizedLabel Concrete text to use for the label.
90 * @param nonLocalizedLabel Concrete text to use for the label.
109 * Return any resource identifier that has been given for the label text.
116 * Return any concrete text that has been given for the label text.
/frameworks/base/core/java/android/pim/vcard/
H A DVCardSourceDetector.java18 import android.text.TextUtils;

Completed in 373 milliseconds

1234567891011>>