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

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
FieldContext.java 33 static final String LABEL = "label";
67 bundle.putString(LABEL, safeToString(info.label));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 680 "person", "company", "title", "isprimary", "type", "label",
688 static int LABEL = 5;
700 Organization.LABEL +
710 int LABEL = 8;
737 bindString(insert, OrganizationInsert.LABEL, c.getString(OrganizationsQuery.LABEL));
745 "person", "kind", "data", "aux_data", "type", "label", "isprimary",
753 static int LABEL = 5;
765 Email.LABEL + "," +
775 int LABEL = 7
    [all...]
LegacyApiSupport.java 382 sPeopleProjectionMap.put(People.LABEL, People.LABEL);
409 sOrganizationProjectionMap.put(android.provider.Contacts.Organizations.LABEL,
410 android.provider.Contacts.Organizations.LABEL);
421 sContactMethodProjectionMap.put(ContactMethods.LABEL, ContactMethods.LABEL);
435 sPhoneProjectionMap.put(android.provider.Contacts.Phones.LABEL,
436 android.provider.Contacts.Phones.LABEL);
586 "phone." + Phone.LABEL
587 + " AS " + People.LABEL + ", "
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete5.java 50 Contacts.People.LABEL,
AutoComplete4.java 107 Contacts.People.LABEL,
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VCardJapanizationTests.java 215 .put(StructuredPostal.LABEL, "\u304A\u3082\u3061\u304B\u3048\u308A");
224 // LABEL must be ignored in vCard 2.1. As for vCard 3.0, the current behavior is
264 .put(StructuredPostal.LABEL, "custom")
289 .put(StructuredPostal.LABEL, "custom")
308 .put(StructuredPostal.LABEL, "custom1")
315 .put(StructuredPostal.LABEL, "custom2")
VCardExporterTests.java 402 .put(Phone.LABEL, "Modem");
406 .put(Phone.LABEL, "MSG");
410 .put(Phone.LABEL, "BBS");
414 .put(Phone.LABEL, "VIDEO");
421 .put(Phone.LABEL, "_AUTO_CELL"); // The old indicator for the type mobile.
425 .put(Phone.LABEL, "\u643A\u5E2F"); // Mobile phone in Japanese Kanji
429 .put(Phone.LABEL, "invalid");
    [all...]
VCardImporterTests.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
LegacyContactsProviderTest.java 329 values.put(Organizations.LABEL, "Club");
343 Organizations.LABEL);
362 values.put(Organizations.LABEL, "Club");
372 values.put(Organizations.LABEL, "Society");
390 values.put(Phones.LABEL, "Directory");
413 values.put(People.LABEL, "Directory");
420 Phones.TYPE_CUSTOM, Phones.TYPE_OTHER, Phones.LABEL);
431 values.put(Phones.LABEL, "Directory");
440 values.putNull(Phones.LABEL);
458 values.put(Phones.LABEL, "Directory")
    [all...]
ContactsProvider2Test.java 175 values.putNull(Phone.LABEL);
201 values.putNull(Phone.LABEL);
235 values.putNull(PhoneLookup.LABEL);
308 values.putNull(Email.LABEL);
330 values.putNull(Email.LABEL);
354 values.putNull(Email.LABEL);
545 values.putNull(Phone.LABEL);
556 values.putNull(Phone.LABEL);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
PhoneDisambigDialog.java 162 values.put(Phone.LABEL, item.label);
178 final String label; field in class:PhoneDisambigDialog.PhoneItem
180 public PhoneItem(long id, String phoneNumber, String accountType, int type, String label) {
185 this.label = label;
220 String label = phonesCursor.getString(phonesCursor.getColumnIndex(Phone.LABEL)); local
222 phoneList.add(new PhoneItem(id, phone, accountType, type, label));
ContactsUtils.java 61 // Try finding the type and label for this mimetype
67 // Reset to phone mimetype so we generate a label for SMS case
70 colLabel = cursor.getColumnIndex(Phone.LABEL);
73 colLabel = cursor.getColumnIndex(Email.LABEL);
76 colLabel = cursor.getColumnIndex(StructuredPostal.LABEL);
79 colLabel = cursor.getColumnIndex(Organization.LABEL);
85 final CharSequence label = cursor.getString(colLabel); local
87 return getDisplayLabel(context, mimeType, type, label);
91 CharSequence label) {
114 // Can't return display label for given mimetype
    [all...]
CallDetailActivity.java 86 PhoneLookup.LABEL,
231 entry.label = callLabel;
287 public String label = null; field in class:CallDetailActivity.ViewEntry
338 boolean labelEmpty = TextUtils.isEmpty(entry.label) || numberEmpty;
344 TextView label = (TextView) convertView.findViewById(R.id.label); local
346 label.setVisibility(View.GONE);
348 label.setText(entry.label);
349 label.setVisibility(View.VISIBLE)
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceContact.java 114 // TODO: handle type != 0,1,2, and use LABEL
115 Phone.LABEL,
130 final int labelColumn = cursor.getColumnIndexOrThrow(Phone.LABEL);
157 + " label=" + labelAtCursor
185 String label = labelAtCursor.toLowerCase(); local
186 if (label.contains("home") || label.contains("house")) {
189 else if (label.contains("mobile") || label.contains("cell")) {
192 else if (label.contains("work") || label.contains("office"))
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/
elfos.h 112 /* This is how to store into the string LABEL
113 the symbol_ref name of an internal numbered label where
114 PREFIX is the class of label and NUM is the number within the class.
121 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
124 sprintf (LABEL, "*.%s%u", PREFIX, (unsigned) (NUM)); \
128 /* Output the label which precedes a jumptable. Note that for all svr4
  /packages/apps/Contacts/src/com/android/contacts/model/
GoogleSource.java 101 Phone.LABEL));
121 Email.LABEL));
FallbackSource.java 200 Phone.LABEL));
213 .setCustomColumn(Phone.LABEL));
240 Email.LABEL));
267 .setCustomColumn(StructuredPostal.LABEL));
359 .setCustomColumn(Organization.LABEL));
509 return Phone.LABEL;
512 protected CharSequence getTypeLabel(Resources res, Integer type, CharSequence label) {
517 return res.getString(labelRes, label == null ? "" : label);
525 final String label = cursor.getString(cursor.getColumnIndex(getLabelColumn())) local
531 final String label = values.getAsString(getLabelColumn()); local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsTest.java 340 Phones.NUMBER_KEY, Phones.LABEL, Phones.ISPRIMARY};
385 value.put(Phones.LABEL, customeLabel);
419 Organizations.ISPRIMARY, Organizations.TYPE, Organizations.LABEL,
469 value.put(Organizations.LABEL, customOrganizationsLabel);
598 ContactMethods.LABEL, ContactMethods.ISPRIMARY};
651 value.put(ContactMethods.LABEL, customLabel);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 80 /* Split up the phoneLabel into number type and label name */
153 // Look for the label/type combo
154 columnIndex = cursor.getColumnIndex(PhoneLookup.LABEL);
344 * Mark this CallerInfo as a voicemail call. The voicemail label
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsAdapter.java 58 Phone.LABEL, // 4
90 String label = cursor.getString(RecipientsAdapter.LABEL_INDEX); local
91 CharSequence displayLabel = Phone.getDisplayLabel(mContext, type, label);
122 out.setSpan(new Annotation("label", displayLabel.toString()), 0, len,
135 TextView label = (TextView) view.findViewById(R.id.label); local
139 // When there's no label, getDisplayLabel() returns a CharSequence of length==1 containing
140 // a unicode non-breaking space. Need to check for that and consider that as "no label".
143 label.setVisibility(View.GONE);
145 label.setText(labelText)
    [all...]
  /frameworks/base/core/java/android/provider/
Contacts.java     [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardBuilder.java 634 final String label = contentValues.getAsString(Phone.LABEL); local
650 appendTelLine(type, label, phoneNumber, isPrimary);
723 final String label = contentValues.getAsString(Email.LABEL); local
803 final String label = currentContentValues.getAsString(StructuredPostal.LABEL); local
815 final String label = contentValues.getAsString(StructuredPostal.LABEL); local
987 final String label = contentValues.getAsString(Im.LABEL); local
    [all...]
VCardUtils.java 107 * when not, which should be set to label.
115 String label = null; local
154 label = typeString;
177 return label;
184 public static boolean isMobilePhoneLabel(final String label) {
187 // To support mobile type at that time, this custom label had been used.
188 return (android.provider.Contacts.ContactMethodsColumns.MOBILE_EMAIL_TYPE_NAME.equals(label)
189 || sMobilePhoneLabelSet.contains(label));
192 public static boolean isValidInV21ButUnknownToContactsPhoteType(final String label) {
193 return sPhoneTypesUnknownToContactsSet.contains(label);
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/
arm.h 131 /* The label of the current constant pool. */
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupport_wrapTiger.c 956 #ifdef LABEL
957 #undef LABEL

Completed in 735 milliseconds

1 2