Searched refs:DISPLAY_NAME (Results 1 - 25 of 34) sorted by relevance

12

/frameworks/base/core/java/android/provider/
H A DOpenableColumns.java37 public static final String DISPLAY_NAME = "_display_name"; field in interface:OpenableColumns
H A DMediaStore.java408 public static final String DISPLAY_NAME = "_display_name"; field in interface:MediaStore.MediaColumns
1967 public static final String DEFAULT_SORT_ORDER = MediaColumns.DISPLAY_NAME;
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java35 public static final String NAME = OpenableColumns.DISPLAY_NAME;
/frameworks/support/frameworks/support/samples/Support13Demos/src/com/example/android/supportv13/app/
H A DCursorFragment.java61 new String[] { Contacts.DISPLAY_NAME, Contacts.CONTACT_STATUS },
106 Contacts.DISPLAY_NAME,
128 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
130 + Contacts.DISPLAY_NAME + " != '' ))";
133 Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCursorSupport.java87 new String[] { People.DISPLAY_NAME },
151 People.DISPLAY_NAME,
168 String select = "((" + People.DISPLAY_NAME + " NOTNULL) AND ("
169 + People.DISPLAY_NAME + " != '' ))";
172 People.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
H A DLoaderRetainedSupport.java89 new String[] { People.DISPLAY_NAME },
142 People.DISPLAY_NAME,
159 String select = "((" + People.DISPLAY_NAME + " NOTNULL) AND ("
160 + People.DISPLAY_NAME + " != '' ))";
163 People.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
/frameworks/support/samples/Support13Demos/src/com/example/android/supportv13/app/
H A DCursorFragment.java61 new String[] { Contacts.DISPLAY_NAME, Contacts.CONTACT_STATUS },
106 Contacts.DISPLAY_NAME,
128 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
130 + Contacts.DISPLAY_NAME + " != '' ))";
133 Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCursorSupport.java87 new String[] { People.DISPLAY_NAME },
151 People.DISPLAY_NAME,
168 String select = "((" + People.DISPLAY_NAME + " NOTNULL) AND ("
169 + People.DISPLAY_NAME + " != '' ))";
172 People.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
H A DLoaderRetainedSupport.java89 new String[] { People.DISPLAY_NAME },
142 People.DISPLAY_NAME,
159 String select = "((" + People.DISPLAY_NAME + " NOTNULL) AND ("
160 + People.DISPLAY_NAME + " != '' ))";
163 People.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardBuilderTest.java39 values.put(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, "ने");
H A DVCardTestUtilsTests.java65 // DISPLAY_NAME is missing.
85 .put(StructuredName.DISPLAY_NAME, "[<{Unescaped:Asciis}>]");
H A DVCardExporterTests.java70 .put(StructuredName.DISPLAY_NAME, "DISPLAY NAME");
108 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplayName1");
117 .put(StructuredName.DISPLAY_NAME, "AppropriateDisplayName")
131 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplayName2")
168 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplay1");
177 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplay2")
187 .put(StructuredName.DISPLAY_NAME, "AppropriateDisplayName")
196 .put(StructuredName.DISPLAY_NAME, "DoNotEmitDisplay3")
238 .put(StructuredName.DISPLAY_NAME, "AppropriateDisplayName")
1181 .put(StructuredName.DISPLAY_NAME, "[<{Unescape
[all...]
H A DVCardImporterTests.java423 .put(StructuredName.DISPLAY_NAME, "Roid Ando");
435 .put(StructuredName.DISPLAY_NAME, "Roid Ando");
442 .put(StructuredName.DISPLAY_NAME, "Ando Roid");
453 .put(StructuredName.DISPLAY_NAME, "Ando Roid");
481 .put(StructuredName.DISPLAY_NAME, "A;B\\C\\;D:E\\\\");
488 .put(StructuredName.DISPLAY_NAME, "Normal Guy");
500 .put(StructuredName.DISPLAY_NAME, "Nice Guy");
517 .put(StructuredName.DISPLAY_NAME, "Smith");
618 .put(StructuredName.DISPLAY_NAME, "Joe Due");
690 .put(StructuredName.DISPLAY_NAME, "Omeg
[all...]
H A DVCardJapanizationTests.java142 .put(StructuredName.DISPLAY_NAME,
182 .put(StructuredName.DISPLAY_NAME,
201 .put(StructuredName.DISPLAY_NAME, "\uFF94\uFF8F\uFF80\uFF9E \uFF80\uFF9B\uFF73");
/frameworks/opt/chips/src/com/android/ex/chips/
H A DQueries.java32 Contacts.DISPLAY_NAME, // 0
52 Contacts.DISPLAY_NAME, // 0
H A DBaseRecipientAdapter.java125 Directory.DISPLAY_NAME, // 3
133 public static final int DISPLAY_NAME = 3; field in class:BaseRecipientAdapter.DirectoryListQuery
728 params.displayName = directoryCursor.getString(DirectoryListQuery.DISPLAY_NAME);
/frameworks/support/core-utils/tests/java/android/support/v4/content/
H A DFileProviderTest.java19 import static android.provider.OpenableColumns.DISPLAY_NAME;
182 assertEquals(TEST_FILE, cursor.getString(cursor.getColumnIndex(DISPLAY_NAME)));
195 SIZE, DISPLAY_NAME }, null, null, null);
206 DISPLAY_NAME, SIZE }, null, null, null);
223 SIZE, "foobar", DISPLAY_NAME }, null, null, null);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DUserInfoController.java165 ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME
171 ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DDisplaySourceService.java42 private static final String DISPLAY_NAME = "Accessory Display"; field in class:DisplaySourceService
207 DISPLAY_NAME, mWidth, mHeight, mDensityDpi, surface, 0);
/frameworks/support/core-utils/java/android/support/v4/content/
H A DFileProvider.java325 OpenableColumns.DISPLAY_NAME, OpenableColumns.SIZE };
409 * <li>{@link android.provider.OpenableColumns#DISPLAY_NAME}</li>
445 if (OpenableColumns.DISPLAY_NAME.equals(col)) {
446 cols[i] = OpenableColumns.DISPLAY_NAME;
/frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
H A DMediaStoreSaver.java61 values.put(Images.Media.DISPLAY_NAME, title);
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java115 Contacts.DISPLAY_NAME, // 0
148 public static final int DISPLAY_NAME = 3; field in class:BaseEmailAddressAdapter.DirectoryListQuery
383 partition.displayName = directoryCursor.getString(DirectoryListQuery.DISPLAY_NAME);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSubscriptionControllerTest.java63 SubscriptionManager.DISPLAY_NAME, SubscriptionManager.CARRIER_NAME,
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java148 column = MediaColumns.DISPLAY_NAME;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfo.java195 columnIndex = cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);

Completed in 587 milliseconds

12