/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/ex/chips/src/com/android/ex/chips/ |
Queries.java | 42 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) { 43 return Phone.getTypeLabel(res, type, label); 60 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) { 61 return Email.getTypeLabel(res, type, label); 98 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_OrganizationTest.java | 46 assertEquals(label, Organization.getTypeLabel(mResources, type, "")); 52 assertEquals(label, Organization.getTypeLabel(mResources, Im.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_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));
|
/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 | 106 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
|
LegacyPostalAddressListAdapter.java | 108 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
|
PostalAddressListAdapter.java | 135 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
|
EmailAddressListAdapter.java | 145 label = Email.getTypeLabel(getContext().getResources(), type, customLabel);
|
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/ |
CallLogFragmentTest.java | 228 assertLabel(views, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME)); 254 assertLabel(views, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME)); 267 assertLabel(views, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_WORK)); 349 private CharSequence getTypeLabel(int phoneType) { 350 return Phone.getTypeLabel(getActivity().getResources(), phoneType, "");
|
/frameworks/base/core/java/android/provider/ |
ContactsContract.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
RawContactReadOnlyEditorView.java | 210 phoneType = Phone.getTypeLabel( 228 emailType = Email.getTypeLabel(
|
/packages/apps/Dialer/src/com/android/dialer/ |
PhoneCallDetailsHelper.java | 109 numberFormattedLabel = Phone.getTypeLabel(mResources, details.numberType,
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
FallbackSource.java | 512 protected CharSequence getTypeLabel(Resources res, Integer type, CharSequence label) { 526 return getTypeLabel(context.getResources(), type, label); 532 return getTypeLabel(context.getResources(), type, label);
|
/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/ |
ContactDetailFragment.java | 460 StructuredPostal.getTypeLabel(getResources(), addressType, addressTypeLabel);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
ContactTileAdapter.java | 267 contact.phoneLabel = (String) Phone.getTypeLabel(mResources, phoneNumberType,
|