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

1 2 3 4

  /frameworks/base/core/java/android/provider/
OpenableColumns.java 31 public static final String DISPLAY_NAME = "_display_name";
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 36 Contacts.DISPLAY_NAME, // 1
58 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
60 + Contacts.DISPLAY_NAME + " != '' ))";
63 null, Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactManager.java 89 ContactsContract.Data.DISPLAY_NAME
107 ContactsContract.Contacts.DISPLAY_NAME
112 String sortOrder = ContactsContract.Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC";
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 38 Contacts.TIMES_CONTACTED + " DESC, " + Contacts.DISPLAY_NAME;
44 Contacts.DISPLAY_NAME, // 1
  /cts/tests/src/android/provider/cts/
MediaStoreAudioTestHelper.java 105 public static final String DISPLAY_NAME = "Jam -Michael Jackson";
123 values.put(Media.DISPLAY_NAME, DISPLAY_NAME);
180 public static final String DISPLAY_NAME = "Jam(Live)-Michael Jackson";
199 values.put(Media.DISPLAY_NAME, DISPLAY_NAME);
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DataTest.java 71 .with(StructuredName.DISPLAY_NAME, "test name")
95 .with(StructuredName.DISPLAY_NAME, "test name")
ContactsContract_RawContactsTest.java 69 .with(StructuredName.DISPLAY_NAME, "test name")
93 .with(StructuredName.DISPLAY_NAME, "test name")
MediaStore_Video_MediaTest.java 80 values.put(Media.DISPLAY_NAME, "testvideo");
115 assertEquals("testvideo.3gp", c.getString(c.getColumnIndex(Media.DISPLAY_NAME)));
141 values.put(Media.DISPLAY_NAME, "testvideo1");
169 assertEquals("testvideo1", c.getString(c.getColumnIndex(Media.DISPLAY_NAME)));
MediaStore_Audio_MediaTest.java 101 // the column DISPLAY_NAME will be ignored when inserting
110 assertEquals(Audio1.FILE_NAME, c.getString(c.getColumnIndex(Media.DISPLAY_NAME)));
145 // the column DISPLAY_NAME will not be ignored when updating
157 assertEquals(Audio2.DISPLAY_NAME, c.getString(c.getColumnIndex(Media.DISPLAY_NAME)));
MediaStore_Audio_Playlists_MembersTest.java 48 Members.DISPLAY_NAME,
77 Members.DISPLAY_NAME,
169 assertEquals(Audio1.FILE_NAME, c.getString(c.getColumnIndex(Members.DISPLAY_NAME)));
217 assertEquals(Audio2.FILE_NAME, c.getString(c.getColumnIndex(Members.DISPLAY_NAME)));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List7.java 38 ContactsContract.Contacts.DISPLAY_NAME,
68 new String[] { ContactsContract.Contacts.DISPLAY_NAME }, // Map the NAME column in the
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 39 Contacts.TIMES_CONTACTED + " DESC, " + Contacts.DISPLAY_NAME;
45 Contacts.DISPLAY_NAME, // 1
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessorSdk3_4.java 58 new String[]{People.DISPLAY_NAME}, null, null, null);
ContactAccessorSdk5.java 64 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessageReceiver.java 50 // Contacts.Phones.DISPLAY_NAME
54 projection = new String[] { ContactsContract.PhoneLookup.DISPLAY_NAME };
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VCardTestUtilsTests.java 65 // DISPLAY_NAME is missing.
85 .put(StructuredName.DISPLAY_NAME, "[<{Unescaped:Asciis}>]");
VCardExporterTests.java 67 .put(StructuredName.DISPLAY_NAME, "DISPLAY NAME");
105 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplayName1");
114 .put(StructuredName.DISPLAY_NAME, "AppropriateDisplayName")
128 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplayName2")
165 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplay1");
174 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplay2")
184 .put(StructuredName.DISPLAY_NAME, "AppropriateDisplayName")
193 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplay3")
235 .put(StructuredName.DISPLAY_NAME, "AppropriateDisplayName")
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceContact.java 116 Phone.DISPLAY_NAME,
125 Phone.LAST_TIME_CONTACTED + " DESC, " + Phone.DISPLAY_NAME + " ASC");
131 final int nameColumn = cursor.getColumnIndexOrThrow(Phone.DISPLAY_NAME);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java 179 values.put(Contacts.DISPLAY_NAME, "Meghan Knox");
200 values.put(Contacts.DISPLAY_NAME, "Hot Tamale");
235 values.put(PhoneLookup.DISPLAY_NAME, "Hot Tamale");
264 assertStoredValue(lookupUri1, PhoneLookup.DISPLAY_NAME, "Hot Tamale");
271 assertStoredValue(lookupUri2, PhoneLookup.DISPLAY_NAME, "Hot Tamale");
284 assertStoredValue(lookupUri2, PhoneLookup.DISPLAY_NAME, "Hot Tamale");
312 values.put(Contacts.DISPLAY_NAME, "Meghan Knox");
329 values.put(Contacts.DISPLAY_NAME, "Hot Tamale");
353 values.put(Contacts.DISPLAY_NAME, "Hot Tamale");
385 values.put(Contacts.DISPLAY_NAME, "Alice Nextore")
    [all...]
LegacyContactsProviderTest.java 134 assertStoredValue(personUri, People.DISPLAY_NAME, "John Doe");
159 values.put(People.DISPLAY_NAME, "Google");
167 values.put(People.DISPLAY_NAME, "Acme");
175 values.putNull(People.DISPLAY_NAME);
203 values.put(People.DISPLAY_NAME, "12345");
216 values.put(People.DISPLAY_NAME, "67890");
224 values.putNull(People.DISPLAY_NAME);
275 values.put(People.DISPLAY_NAME, "foo@acme.com");
288 values.put(People.DISPLAY_NAME, "bar@acme.com");
296 values.putNull(People.DISPLAY_NAME);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
SplitAggregateView.java 61 StructuredName.DISPLAY_NAME, Nickname.NAME, Email.DATA, Phone.NUMBER
68 int DISPLAY_NAME = 4;
191 info.name = cursor.getString(SplitQuery.DISPLAY_NAME);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsDictionary.java 32 Contacts.DISPLAY_NAME,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 89 "name_raw_contact." + RawContactsColumns.DISPLAY_NAME
90 + " AS " + Contacts.DISPLAY_NAME,
101 public static final int DISPLAY_NAME = 1;
391 suggestion.text1 = c.getString(SearchSuggestionQuery.DISPLAY_NAME);
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsAdapter.java 59 Phone.DISPLAY_NAME, // 5
63 + Contacts.DISPLAY_NAME + "," + Phone.TYPE;
  /external/skia/src/animator/
SkDisplayType.cpp 398 #define DISPLAY_NAME(_name, _type) {_name, _type, false, true }
402 #define DISPLAY_NAME(_name, _type) {_name, _type }
436 DISPLAY_NAME("bounds", SkType_Bounds),
452 DISPLAY_NAME("event", SkType_Event),
501 DISPLAY_NAME("random", SkType_Random),

Completed in 673 milliseconds

1 2 3 4