/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyTouchEvent.java | 31 protected String getTypeLabel() {
|
MonkeyTrackballEvent.java | 30 protected String getTypeLabel() {
|
MonkeyMotionEvent.java | 154 msg.append(getTypeLabel()).append(" ("); 198 protected abstract String getTypeLabel();
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
Queries.java | 45 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) { 46 return Phone.getTypeLabel(res, type, label); 65 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) { 66 return Email.getTypeLabel(res, type, label); 105 public abstract CharSequence getTypeLabel(Resources res, int type, CharSequence label);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_CommonDataKinds_EmailTest.java | 47 assertEquals(label, Email.getTypeLabel(mResources, type, "")); 53 assertEquals(label, Email.getTypeLabel(mResources, Email.TYPE_CUSTOM, label));
|
ContactsContract_CommonDataKinds_SipAddressTest.java | 46 assertEquals(label, SipAddress.getTypeLabel(mResources, type, "")); 52 assertEquals(label, SipAddress.getTypeLabel(mResources, SipAddress.TYPE_CUSTOM, label));
|
ContactsContract_CommonDataKinds_StructuredPostalTest.java | 46 assertEquals(label, StructuredPostal.getTypeLabel(mResources, type, "")); 52 assertEquals(label, StructuredPostal.getTypeLabel(mResources,
|
ContactsContract_CommonDataKinds_OrganizationTest.java | 49 assertEquals(label, Organization.getTypeLabel(mResources, type, "")); 55 assertEquals(label, Organization.getTypeLabel(mResources, Im.TYPE_CUSTOM, label));
|
ContactsContract_CommonDataKinds_PhoneTest.java | 63 assertEquals(label, Phone.getTypeLabel(mResources, type, "")); 69 assertEquals(label, Phone.getTypeLabel(mResources, Phone.TYPE_CUSTOM, label));
|
ContactsContract_CommonDataKinds_RelationTest.java | 57 assertEquals(label, Relation.getTypeLabel(mResources, type, "")); 63 assertEquals(label, Relation.getTypeLabel(mResources, Relation.TYPE_CUSTOM, label));
|
ContactsContract_CommonDataKinds_ImTest.java | 74 assertEquals(label, Im.getTypeLabel(mResources, type, "")); 80 assertEquals(label, Im.getTypeLabel(mResources, Im.TYPE_CUSTOM, label));
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/compat/ |
EventCompat.java | 38 public static CharSequence getTypeLabel(Resources res, int type, CharSequence label) { 40 return Event.getTypeLabel(res, type, label); 48 * {@link Event#getTypeLabel(Resources, int, CharSequence)}
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
List3.java | 66 String text = (String) Phone.getTypeLabel(getResources(), type, label);
|
List7.java | 91 String numberType = (String) Phone.getTypeLabel(getResources(), type, label);
|
/development/samples/ContactManager/src/com/example/android/contactmanager/ |
ContactAdder.java | 114 adapter.add(ContactsContract.CommonDataKinds.Phone.getTypeLabel( 127 adapter.add(ContactsContract.CommonDataKinds.Email.getTypeLabel( 346 public CharSequence getTypeLabel() { 381 secondAccountLine.setText(data.getTypeLabel());
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
LegacyPhoneNumberListAdapter.java | 109 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
|
LegacyPostalAddressListAdapter.java | 110 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
|
EmailAddressListAdapter.java | 151 label = Email.getTypeLabel(getContext().getResources(), type, customLabel);
|
PostalAddressListAdapter.java | 142 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
|
/packages/apps/Dialer/src/com/android/dialer/filterednumber/ |
NumbersAdapter.java | 123 return ContactsContract.CommonDataKinds.Phone.getTypeLabel(
|
/packages/apps/EmergencyInfo/src/com/android/emergency/ |
EmergencyContactManager.java | 57 phoneType = ContactsContract.CommonDataKinds.Phone.getTypeLabel(
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
RawContactReadOnlyEditorView.java | 180 phoneType = Phone.getTypeLabel( 202 emailType = Email.getTypeLabel(
|
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/ |
CallLogAdapterTest.java | 476 assertLabel(mViewHolder, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME)); 508 assertLabel(mViewHolder, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME)); 522 assertLabel(mViewHolder, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_WORK)); 820 private CharSequence getTypeLabel(int phoneType) { 821 return Phone.getTypeLabel(getContext().getResources(), phoneType, ""); [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
VCardResourceEntry.java | 175 Phone.getTypeLabel(resources, phone.getType(), phone.getLabel()).toString(), 186 Phone.getTypeLabel(resources, email.getType(),
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
CallLogInteraction.java | 84 return Phone.getTypeLabel(context.getResources(), getCachedNumberType(),
|