Home
last modified time | relevance | path

Searched refs:LABEL (Results 1 – 25 of 61) sorted by relevance

123

/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimerDAO.java62 private static final String LABEL = "timer_label_"; field in TimerDAO
95 final String label = prefs.getString(LABEL + id, null); in getTimers()
127 editor.putString(LABEL + id, timer.getLabel()); in addTimer()
152 editor.putString(LABEL + id, timer.getLabel()); in updateTimer()
183 editor.remove(LABEL + id); in removeTimer()
/packages/apps/Dialer/src/com/android/dialer/calllog/
DPhoneQuery.java42 PhoneLookup.LABEL,
59 PhoneLookup.LABEL,
81 public static final int LABEL = 3; field in PhoneQuery
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DLegacyApiSupport.java387 sPeopleProjectionMap.put(People.LABEL, People.LABEL); in sPeopleProjectionMap.put() argument
414 sOrganizationProjectionMap.put(android.provider.Contacts.Organizations.LABEL, in sOrganizationProjectionMap.put() argument
415 android.provider.Contacts.Organizations.LABEL); in sOrganizationProjectionMap.put()
426 sContactMethodProjectionMap.put(ContactMethods.LABEL, ContactMethods.LABEL); in sContactMethodProjectionMap.put() argument
440 sPhoneProjectionMap.put(android.provider.Contacts.Phones.LABEL, in sPhoneProjectionMap.put() argument
441 android.provider.Contacts.Phones.LABEL); in sPhoneProjectionMap.put()
591 "phone." + Phone.LABEL in createViews()
592 + " AS " + People.LABEL + ", " + in createViews()
618 Organization.LABEL in createViews()
619 + " AS " + android.provider.Contacts.Organizations.LABEL + ", " + in createViews()
[all …]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DLegacyContactsProviderTest.java331 values.put(Organizations.LABEL, "Club"); in testOrganizationsInsert()
345 Organizations.LABEL); in testOrganizationsInsert()
364 values.put(Organizations.LABEL, "Club"); in testOrganizationsUpdate()
374 values.put(Organizations.LABEL, "Society"); in testOrganizationsUpdate()
392 values.put(Phones.LABEL, "Directory"); in testPhonesInsert()
416 values.put(People.LABEL, "Directory"); in testPhonesInsert()
423 Phones.TYPE_CUSTOM, Phones.TYPE_OTHER, Phones.LABEL); in testPhonesInsert()
434 values.put(Phones.LABEL, "Directory"); in testPhonesUpdate()
443 values.putNull(Phones.LABEL); in testPhonesUpdate()
464 values.put(Phones.LABEL, "Directory"); in testPhonesFilterQuery()
[all …]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
DGoogleAccountType.java98 .setCustomColumn(Phone.LABEL)); in addDataKindPhone()
116 Email.LABEL)); in addDataKindEmail()
147 .setCustomColumn(Relation.LABEL)); in addDataKindRelation()
173 .setCustomColumn(Event.LABEL)); in addDataKindEvent()
DSamsungAccountType.java144 .setCustomColumn(Phone.LABEL)); in addDataKindPhone()
162 Email.LABEL)); in addDataKindEmail()
193 .setCustomColumn(Relation.LABEL)); in addDataKindRelation()
219 .setCustomColumn(Event.LABEL)); in addDataKindEvent()
DBaseAccountType.java274 buildPhoneType(Phone.TYPE_CUSTOM).setSecondary(true).setCustomColumn(Phone.LABEL)); in addDataKindPhone()
307 buildEmailType(Email.TYPE_CUSTOM).setSecondary(true).setCustomColumn(Email.LABEL)); in addDataKindEmail()
326 .setCustomColumn(StructuredPostal.LABEL)); in addDataKindStructuredPostal()
513 return Phone.LABEL; in getLabelColumn()
1087 return build(Phone.TYPE_CUSTOM, true).setCustomColumn(Phone.LABEL); in buildEditTypeForTypeTag()
1120 .setSecondary(true).setCustomColumn(Email.LABEL); in buildEditTypeForTypeTag()
1186 .setSecondary(true).setCustomColumn(Email.LABEL); in buildEditTypeForTypeTag()
1426 .setSecondary(true).setCustomColumn(Event.LABEL); in buildEditTypeForTypeTag()
1483 .setCustomColumn(Relation.LABEL); in buildEditTypeForTypeTag()
/packages/apps/DeskClock/src/com/android/deskclock/provider/
DClockProvider.java69 sAlarmsWithInstancesProjection.put(ALARMS_TABLE_NAME + "." + AlarmsColumns.LABEL,
70 ALARMS_TABLE_NAME + "." + AlarmsColumns.LABEL);
90 sAlarmsWithInstancesProjection.put(INSTANCES_TABLE_NAME + "." + InstancesColumns.LABEL,
91 INSTANCES_TABLE_NAME + "." + InstancesColumns.LABEL);
DClockDatabaseHelper.java80 ClockContract.AlarmsColumns.LABEL + " TEXT NOT NULL, " + in createAlarmsTable()
95 ClockContract.InstancesColumns.LABEL + " TEXT NOT NULL, " + in createInstanceTable()
123 ClockContract.AlarmsColumns.LABEL + cs + in onCreate()
DAlarm.java59 LABEL,
71 ClockDatabaseHelper.ALARMS_TABLE_NAME + "." + LABEL,
82 ClockDatabaseHelper.INSTANCES_TABLE_NAME + "." + ClockContract.InstancesColumns.LABEL,
123 values.put(LABEL, alarm.label); in createContentValues()
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
DContactsUtils.java61 colLabel = cursor.getColumnIndex(Phone.LABEL); in getDisplayLabel()
64 colLabel = cursor.getColumnIndex(Email.LABEL); in getDisplayLabel()
67 colLabel = cursor.getColumnIndex(StructuredPostal.LABEL); in getDisplayLabel()
70 colLabel = cursor.getColumnIndex(Organization.LABEL); in getDisplayLabel()
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/
DDataItemTests.java162 mValues1.put(Event.LABEL, customLabel1); in testDataItemCollapsing_event()
163 mValues2.put(Event.LABEL, customLabel1); in testDataItemCollapsing_event()
164 mValues3.put(Event.LABEL, customLabel2); in testDataItemCollapsing_event()
346 mValues1.put(Relation.LABEL, customRelation1); in testDataItemCollapsing_relation()
347 mValues2.put(Relation.LABEL, customRelation1); in testDataItemCollapsing_relation()
348 mValues3.put(Relation.LABEL, customRelation2); in testDataItemCollapsing_relation()
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
DCallerInfo.java58 PhoneLookup.LABEL,
73 PhoneLookup.LABEL,
253 columnIndex = cursor.getColumnIndex(PhoneLookup.LABEL); in getCallerInfo()
/packages/apps/Contacts/src/com/android/contacts/list/
DPostalAddressListAdapter.java44 StructuredPostal.LABEL, // 2
54 StructuredPostal.LABEL, // 2
DEmailAddressListAdapter.java45 Email.LABEL, // 2
55 Email.LABEL, // 2
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DFallbackSource.java200 Phone.LABEL)); in inflatePhone()
213 .setCustomColumn(Phone.LABEL)); in inflatePhone()
240 Email.LABEL)); in inflateEmail()
267 .setCustomColumn(StructuredPostal.LABEL)); in inflateStructuredPostal()
359 .setCustomColumn(Organization.LABEL)); in inflateOrganization()
509 return Phone.LABEL; in getLabelColumn()
DGoogleSource.java97 Phone.LABEL)); in inflatePhone()
117 Email.LABEL)); in inflateEmail()
/packages/apps/Messaging/src/com/android/messaging/util/
DContactUtil.java88 Phone.LABEL, // 5
106 PhoneLookup.LABEL, // 5
137 Email.LABEL, // 5
/packages/apps/Dialer/src/com/android/dialer/interactions/
DPhoneNumberInteraction.java267 Phone.LABEL, // 6
278 private static final int LABEL = 6; field in PhoneNumberInteraction
427 item.label = cursor.getString(LABEL); in onLoadComplete()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DNicknameDataItem.java38 return getContentValues().getAsString(Nickname.LABEL); in getLabel()
DSipAddressDataItem.java38 return getContentValues().getAsString(SipAddress.LABEL); in getLabel()
DWebsiteDataItem.java38 return getContentValues().getAsString(Website.LABEL); in getLabel()
DEmailDataItem.java46 return getContentValues().getAsString(Email.LABEL); in getLabel()
DOrganizationDataItem.java38 return getContentValues().getAsString(Organization.LABEL); in getLabel()
DStructuredPostalDataItem.java38 return getContentValues().getAsString(StructuredPostal.LABEL); in getLabel()

123