Searched defs:text (Results 226 - 237 of 237) sorted by relevance

12345678910

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboardView.java97 * @param text the sequence of characters to be displayed.
99 void onText(CharSequence text); argument
851 if (key.text != null) {
852 mKeyboardActionListener.onText(key.text);
1081 public void onText(CharSequence text) {
1082 mKeyboardActionListener.onText(text);
H A DTextCandidatesViewManager.java33 import android.text.TextUtils;
34 import android.text.TextPaint;
35 import android.text.SpannableString;
36 import android.text.Spanned;
37 import android.text.style.ImageSpan;
38 import android.text.style.DynamicDrawableSpan;
318 TextView text = (TextView)v;
319 switch (text.getId()) {
369 TextView text = (TextView)v;
370 int wordcount = text
1382 measureText(CharSequence text, int start, int end) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java61 import android.text.Spannable;
62 import android.text.SpannableStringBuilder;
63 import android.text.TextUtils;
64 import android.text.format.Time;
65 import android.text.method.LinkMovementMethod;
66 import android.text.method.MovementMethod;
67 import android.text.style.ForegroundColorSpan;
68 import android.text.util.Rfc822Token;
1705 List<CharSequence> text = event.getText();
1707 addFieldToAccessibilityEvent(text, mTitl
1724 addFieldToAccessibilityEvent(List<CharSequence> text, TextView tv, ExpandableTextView etv) argument
2008 setTextCommon(View view, int id, CharSequence text) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/app/
H A DCameraAppUI.java178 * @param text The text to show.
180 void setProgressText(CharSequence text); argument
874 // Sets instruction text in the cling.
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DMmsUtils.java41 import android.text.TextUtils;
42 import android.text.util.Rfc822Token;
43 import android.text.util.Rfc822Tokenizer;
150 // amount of space to leave in a MMS for text and overhead.
223 "<text src=\"%s\" region=\"Text\" />" +
380 final String srcName = String.format("text.%06d.txt", index);
381 final String text = message.getMessageText();
382 totalLength += addTextPart(context, pb, text, srcName);
430 final String text, final String srcName) {
433 // Set Charset if it's a text medi
429 addTextPart(final Context context, final PduBody pb, final String text, final String srcName) argument
883 insertSmsMessage(final Context context, final Uri uri, final int subId, final String dest, final String text, final long timestamp, final int status, final int type, final long threadId) argument
[all...]
/packages/apps/TV/src/com/android/tv/
H A DMainActivity.java49 import android.text.TextUtils;
1258 String text;
1260 text = getResources().getQuantityString(R.plurals.msg_channel_added,
1263 text = getString(R.string.msg_no_channel_added);
1265 Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT).show();
1477 * Says {@code text} when accessibility is turned on.
1479 private void sendAccessibilityText(String text) { argument
1485 event.getText().add(text);
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DComposeActivity.java56 import android.text.Editable;
57 import android.text.Html;
58 import android.text.SpanWatcher;
59 import android.text.SpannableString;
60 import android.text.Spanned;
61 import android.text.TextUtils;
62 import android.text.TextWatcher;
63 import android.text.util.Rfc822Token;
64 import android.text.util.Rfc822Tokenizer;
181 * Expected to be html formatted text
3593 onRespondInline(String text) argument
3609 appendToBody(CharSequence text, boolean withSignature) argument
3625 setBody(CharSequence text, boolean withSignature) argument
[all...]
/packages/services/Telephony/src/com/android/phone/
H A DPhoneInterfaceManager.java72 import android.text.TextUtils;
1931 * Returns the CDMA ERI text,
2053 String number, int port, String text, PendingIntent sentIntent) {
2062 smsManager.sendTextMessageWithSelfPermissions(number, null, text,
2065 byte[] data = text.getBytes(StandardCharsets.UTF_8);
2052 sendVisualVoicemailSmsForSubscriber(String callingPackage, int subId, String number, int port, String text, PendingIntent sentIntent) argument
/packages/apps/Launcher3/src/com/android/launcher3/
H A DWorkspace.java1629 public void announceForAccessibility(CharSequence text) { argument
1632 super.announceForAccessibility(text);
/packages/providers/ContactsProvider/tests/assets/upgradeTest/
H A Dcontacts2_1108.sql18 CREATE TABLE stream_items (_id INTEGER PRIMARY KEY AUTOINCREMENT, raw_contact_id INTEGER NOT NULL, res_package TEXT, icon TEXT, label TEXT, text TEXT, timestamp INTEGER NOT NULL, comments TEXT, stream_item_sync1 TEXT, stream_item_sync2 TEXT, stream_item_sync3 TEXT, stream_item_sync4 TEXT, FOREIGN KEY(raw_contact_id) REFERENCES raw_contacts(_id));
145 CREATE VIEW view_stream_items AS SELECT stream_items._id, contacts._id AS contact_id, contacts.lookup AS contact_lookup, accounts.account_name, accounts.account_type, accounts.data_set, stream_items.raw_contact_id as raw_contact_id, raw_contacts.sourceid as raw_contact_source_id, stream_items.res_package, stream_items.icon, stream_items.label, stream_items.text, stream_items.timestamp, stream_items.comments, stream_items.stream_item_sync1, stream_items.stream_item_sync2, stream_items.stream_item_sync3, stream_items.stream_item_sync4 FROM stream_items JOIN raw_contacts ON (stream_items.raw_contact_id=raw_contacts._id) JOIN accounts ON (raw_contacts.account_id=accounts._id) JOIN contacts ON (raw_contacts.contact_id=contacts._id);
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 512 milliseconds

12345678910