HomeSort by relevance Sort by last modified time
    Searched refs:getTypeLabel (Results 1 - 25 of 37) sorted by null

1 2

  /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);
RecipientAlternatesAdapter.java 281 destinationType.setText(mQuery.getTypeLabel(context.getResources(),
  /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 103 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
LegacyPostalAddressListAdapter.java 105 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
PostalAddressListAdapter.java 132 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
EmailAddressListAdapter.java 142 label = Email.getTypeLabel(getContext().getResources(), type, customLabel);
PhoneNumberListAdapter.java 281 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
CallLogFragmentTest.java 228 assertNumberAndLabelAre(views, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME));
254 assertNumberAndLabelAre(views, TEST_FORMATTED_NUMBER, getTypeLabel(Phone.TYPE_HOME));
267 assertNumberAndLabelAre(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 211 phoneType = Phone.getTypeLabel(
229 emailType = Email.getTypeLabel(
  /packages/apps/Contacts/src/com/android/contacts/
PhoneCallDetailsHelper.java 100 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);

Completed in 215 milliseconds

1 2