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

1 2 3

  /frameworks/base/core/java/android/provider/
OpenableColumns.java 37 public static final String DISPLAY_NAME = "_display_name";
  /developers/build/prebuilts/gradle/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageContract.java 33 String DISPLAY_NAME = "display_name";
42 Columns.DISPLAY_NAME,
  /developers/samples/android/content/documentsUi/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageContract.java 33 String DISPLAY_NAME = "display_name";
42 Columns.DISPLAY_NAME,
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/anomaly/
AnomalyPreferenceTest.java 37 private static final String DISPLAY_NAME = "app";
53 .setDisplayName(DISPLAY_NAME)
62 assertThat(mAnomalyPreference.getTitle()).isEqualTo(DISPLAY_NAME);
AnomalyTest.java 37 private static String DISPLAY_NAME = "settings";
50 .setDisplayName(DISPLAY_NAME)
64 assertThat(mAnomaly.displayName).isEqualTo(DISPLAY_NAME);
AnomalyDialogFragmentTest.java 54 private static final String DISPLAY_NAME = "app";
79 .setDisplayName(DISPLAY_NAME)
85 .setDisplayName(DISPLAY_NAME)
91 .setDisplayName(DISPLAY_NAME)
98 .setDisplayName(DISPLAY_NAME)
AnomalyLoaderTest.java 52 private static final CharSequence DISPLAY_NAME = "Settings";
128 .setDisplayName(DISPLAY_NAME)
AnomalySummaryPreferenceControllerTest.java 51 private static final String DISPLAY_NAME = "appName";
146 .setDisplayName(DISPLAY_NAME)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
ProjectionService.java 45 private final String DISPLAY_NAME = "CtsVerifier Virtual Display";
85 mDisplay = manager.createVirtualDisplay(DISPLAY_NAME, width, height, density,
  /packages/apps/Contacts/src/com/android/contacts/
ContactTileLoaderFactory.java 34 public final static int DISPLAY_NAME = 1;
55 Contacts.DISPLAY_NAME, // .................................1
85 private static final String STARRED_ORDER = Contacts.DISPLAY_NAME+" COLLATE NOCASE ASC";
SplitAggregateView.java 58 Data.IS_PRIMARY, StructuredName.DISPLAY_NAME, Nickname.NAME, Email.DATA,
67 int DISPLAY_NAME = 5;
195 info.name = cursor.getString(SplitQuery.DISPLAY_NAME);
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/common/
Projections.java 29 public static final int DISPLAY_NAME = 4;
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/directories/
DirectoriesCursorLoader.java 44 ContactsContract.Directory.DISPLAY_NAME,
50 private static final int DISPLAY_NAME = 1;
85 cursor.getString(DISPLAY_NAME),
  /packages/apps/Contacts/src/com/android/contacts/vcard/
CancelActivity.java 40 /* package */ final static String DISPLAY_NAME = "display_name";
78 mDisplayName = uri.getQueryParameter(DISPLAY_NAME);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batterytip/
BatteryTipDialogFragmentTest.java 59 private static final String DISPLAY_NAME = "app";
79 ShadowUtils.setApplicationLabel(PACKAGE_NAME, DISPLAY_NAME);
189 ShadowUtils.setApplicationLabel(PACKAGE_NAME, DISPLAY_NAME);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreAudioTestHelper.java 107 public static final String DISPLAY_NAME = "Jam -Michael Jackson";
125 values.put(Media.DISPLAY_NAME, DISPLAY_NAME);
185 public static final String DISPLAY_NAME = "Jam(Live)-Michael Jackson";
204 values.put(Media.DISPLAY_NAME, DISPLAY_NAME);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DummyGalProvider.java 47 public static final String DISPLAY_NAME = "dummy-gal";
143 } else if (column.equals(Directory.DISPLAY_NAME)) {
144 row[i] = DISPLAY_NAME;
159 * information in the display_name column as json.
196 projection = new String[]{Contacts.DISPLAY_NAME};
204 if (Contacts.DISPLAY_NAME.equals(column)) {
  /packages/apps/Contacts/src/com/android/contacts/list/
DirectoryListLoader.java 52 Directory.DISPLAY_NAME,
59 public static final int DISPLAY_NAME = 3;
77 Directory.DISPLAY_NAME,
179 String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME);
MultiSelectEmailAddressesListAdapter.java 69 public static final int DISPLAY_NAME = 7;
123 return ((Cursor) getItem(position)).getString(EmailQuery.DISPLAY_NAME);
163 EmailQuery.DISPLAY_NAME);
189 view.showDisplayName(cursor, EmailQuery.DISPLAY_NAME, getContactNameDisplayOrder());
MultiSelectPhoneNumbersListAdapter.java 69 public static final int DISPLAY_NAME = 7;
123 return ((Cursor) getItem(position)).getString(PhoneQuery.DISPLAY_NAME);
163 PhoneQuery.DISPLAY_NAME);
189 view.showDisplayName(cursor, PhoneQuery.DISPLAY_NAME, getContactNameDisplayOrder());
  /packages/apps/Dialer/java/com/android/contacts/common/list/
DirectoryListLoader.java 43 Directory._ID, DIRECTORY_TYPE, Directory.DISPLAY_NAME, Directory.PHOTO_SUPPORT,
155 String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME);
200 Directory.DISPLAY_NAME,
207 public static final int DISPLAY_NAME = 3;
  /packages/apps/Dialer/java/com/android/dialer/oem/
CequintCallerIdManager.java 65 private static final String DISPLAY_NAME = "cid_pDisplayName";
179 String displayName = getString(cursor, cursor.getColumnIndex(DISPLAY_NAME));
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batterytip/tips/
RestrictAppTipTest.java 54 private static final String DISPLAY_NAME = "app";
79 doReturn(DISPLAY_NAME).when(mApplicationInfo).loadLabel(mPackageManager);
  /frameworks/base/core/java/android/app/
ActivityView.java 56 private static final String DISPLAY_NAME = "ActivityViewVirtualDisplay";
333 DISPLAY_NAME + "@" + System.identityHashCode(this),
  /frameworks/base/services/core/java/com/android/server/vr/
Vr2dDisplay.java 43 private final static String DISPLAY_NAME = "VR 2D Display";
300 DISPLAY_NAME, mVirtualDisplayWidth, mVirtualDisplayHeight, mVirtualDisplayDpi,

Completed in 428 milliseconds

1 2 3