HomeSort by relevance Sort by last modified time
    Searched full:display_name (Results 101 - 125 of 621) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/ui/shell_dialogs/
selected_file_info.h 33 base::FilePath::StringType display_name; member in struct:ui::SelectedFileInfo
  /frameworks/base/core/java/android/provider/
OpenableColumns.java 37 public static final String DISPLAY_NAME = "_display_name";
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryListLoader.java 52 Directory.DISPLAY_NAME,
59 public static final int DISPLAY_NAME = 3;
69 Directory.DISPLAY_NAME,
168 String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
EmailDataItem.java 38 return getContentValues().getAsString(Email.DISPLAY_NAME);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
PhoneQuery.java 27 PhoneLookup.DISPLAY_NAME,
  /external/chromium_org/chrome/browser/chromeos/login/users/
supervised_user_manager_impl.cc 184 const base::string16& display_name) {
185 const User* user = FindByDisplayName(display_name);
219 owner_->SaveUserDisplayName(local_user_id, display_name);
358 const base::string16& display_name) const {
363 ((*it)->display_name() == display_name)) {
384 const base::string16& display_name) {
387 base::UTF16ToASCII(display_name));
416 std::string display_name = prefs-> local
422 << display_name << "/" << user_id
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_MediaTest.java 90 // the column DISPLAY_NAME will be ignored when inserting
101 assertEquals(Audio1.FILE_NAME, c.getString(c.getColumnIndex(Media.DISPLAY_NAME)));
128 // the column DISPLAY_NAME will not be ignored when updating
143 assertEquals(Audio2.DISPLAY_NAME, c.getString(c.getColumnIndex(Media.DISPLAY_NAME)));
ContactsContract_DataTest.java 57 cv1.put(Contacts.DISPLAY_NAME, "Hot Tamale");
64 cv2.put(Contacts.DISPLAY_NAME, "Hot Tamale");
71 cv3.put(Contacts.DISPLAY_NAME, "Hot Tamale");
78 cv4.put(Contacts.DISPLAY_NAME, "Cold Tamago");
85 cv5.put(Contacts.DISPLAY_NAME, "John Doe");
92 cv6.put(Contacts.DISPLAY_NAME, "John Doe");
99 cv7.put(Contacts.DISPLAY_NAME, "Cold Tamago");
133 .with(CommonDataKinds.StructuredName.DISPLAY_NAME, "test name")
150 .with(CommonDataKinds.StructuredName.DISPLAY_NAME, "test name")
317 dupe.put(Contacts.DISPLAY_NAME, "John Doe")
    [all...]
ContactsContract_SearchSnippetsTest.java 53 cv1.put(Contacts.DISPLAY_NAME, "Hot Tamale");
57 cv2.put(Contacts.DISPLAY_NAME, "Cold Tamago");
61 cv3.put(Contacts.DISPLAY_NAME, "John Doe");
222 .with(StructuredName.DISPLAY_NAME, "Hot Tamale")
236 .with(StructuredName.DISPLAY_NAME, "Cold Tamago")
255 .with(StructuredName.DISPLAY_NAME, "John Doe")
  /developers/samples/android/content/LoaderCursor/src/com/example/android/content/loadercursor/
CursorLoaderListFragment.java 74 Contacts.DISPLAY_NAME, Contacts.CONTACT_STATUS
175 Contacts.DISPLAY_NAME,
196 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
198 + Contacts.DISPLAY_NAME + " != '' ))";
199 String order = Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC";
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 88 new String[] { Contacts.DISPLAY_NAME, Contacts.CONTACT_STATUS },
166 Contacts.DISPLAY_NAME,
188 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
190 + Contacts.DISPLAY_NAME + " != '' ))";
193 Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
LoaderRetained.java 93 new String[] { Contacts.DISPLAY_NAME, Contacts.CONTACT_STATUS },
171 Contacts.DISPLAY_NAME,
193 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
195 + Contacts.DISPLAY_NAME + " != '' ))";
198 Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo_unittest.py 80 self.assertNotEquals(info.display_name(), '')
160 self.assertNotEquals(info.display_name(), '')
163 self.assertNotEquals(info.display_name(), '')
166 self.assertNotEquals(info.display_name(), '')
169 self.assertNotEquals(info.display_name(), '')
  /external/chromium_org/win8/delegate_execute/
command_execute_impl.cc 338 base::string16* display_name, INTERNET_SCHEME* scheme) {
342 ATLASSERT(display_name);
362 hr = GetUrlFromShellItem(shell_item, display_name);
374 if (!InternetCrackUrlW(display_name->c_str(), 0, 0, &components)) {
375 AtlTrace("Failed to crack url %ls\n", display_name->c_str());
385 base::string16 display_name = display_name_; local
393 if (display_name.find(installer::kChromeExe) != base::string16::npos)
394 display_name.clear();
405 display_name));
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_preferences_unittest.cc 207 EXPECT_EQ(in_expectation->second.display_name, actual.display_name);
224 void AddGalleryExpectation(MediaGalleryPrefId id, base::string16 display_name,
229 expected_galleries_[id].display_name = display_name;
241 base::string16 display_name,
247 AddGalleryExpectation(id, display_name, device_id, relative_path,
255 const base::string16& display_name,
262 device_id, display_name, relative_path, type,
268 const base::string16& display_name,
    [all...]
  /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,
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 60 OpenableColumns.DISPLAY_NAME,
65 if (OpenableColumns.DISPLAY_NAME.equals(projection[i])) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList2.java 38 Contacts.DISPLAY_NAME
115 new String[] { Contacts.DISPLAY_NAME }, // Name for group layouts
  /external/chromium_org/ash/strings/
ash_strings_ar.xtb 12 <translation id="6310121235600822547">?? ????? <ph name="DISPLAY_NAME"/> ??? <ph name="ROTATION"/></translation>
30 <translation id="3683428399328702079">?? ????? ???? ??? <ph name="DISPLAY_NAME"/> ??? <ph name="RESOLUTION"/></translation>
39 <translation id="6459472438155181876">????? ?????? ??? <ph name="DISPLAY_NAME"/></translation>
68 <translation id="1279938420744323401"><ph name="DISPLAY_NAME"/> (<ph name="ANNOTATION"/>)</translation>
154 <translation id="1882897271359938046">??? ??? <ph name="DISPLAY_NAME"/></translation>
176 <translation id="7561014039265304140"><ph name="DISPLAY_NAME"/> ??? ?????? ?? <ph name="SPECIFIED_RESOLUTION"/>. ?? ????? ????? ??? <ph name="FALLBACK_RESOLUTION"/></translation>
192 <translation id="2999742336789313416"><ph name="DISPLAY_NAME"/> ?? ???? ???? ?????? <ph name="DOMAIN"/></translation>
250 <translation id="3678715477168044796"><ph name="DISPLAY_NAME"/>: <ph name="ANNOTATION"/></translation>
ash_strings_bg.xtb 12 <translation id="6310121235600822547">?????????? ?<ph name="DISPLAY_NAME"/>? ?? <ph name="ROTATION"/></translation>
30 <translation id="3683428399328702079">?????????? ?????????????? ?????????? ?? ?<ph name="DISPLAY_NAME"/>? ?? <ph name="RESOLUTION"/></translation>
39 <translation id="6459472438155181876">??????? ?? ????????? ?? ?<ph name="DISPLAY_NAME"/>?</translation>
68 <translation id="1279938420744323401">?<ph name="DISPLAY_NAME"/>? (<ph name="ANNOTATION"/>)</translation>
154 <translation id="1882897271359938046">??????? ?? ?? ?<ph name="DISPLAY_NAME"/>?</translation>
176 <translation id="7561014039265304140">?<ph name="DISPLAY_NAME"/>? ?? ???????? ???????????? ?????????? ?? <ph name="SPECIFIED_RESOLUTION"/>. ?? ?? ????????? ?? <ph name="FALLBACK_RESOLUTION"/></translation>
193 <translation id="2999742336789313416">?<ph name="DISPLAY_NAME"/>? ? ?????????? ?????, ??????????? ?? <ph name="DOMAIN"/></translation>
254 <translation id="3678715477168044796"><ph name="DISPLAY_NAME"/>: <ph name="ANNOTATION"/></translation>
ash_strings_bn.xtb 12 <translation id="6310121235600822547"><ph name="DISPLAY_NAME"/> <ph name="ROTATION"/> ??????? ?????</translation>
30 <translation id="3683428399328702079"><ph name="DISPLAY_NAME"/> ?? ?????????? ??? ??? <ph name="RESOLUTION"/> ??? ?????</translation>
39 <translation id="6459472438155181876">??????? <ph name="DISPLAY_NAME"/> ?? ???????? ?????</translation>
68 <translation id="1279938420744323401"><ph name="DISPLAY_NAME"/> (<ph name="ANNOTATION"/>)</translation>
154 <translation id="1882897271359938046"><ph name="DISPLAY_NAME"/> ?? ???????????? ?????</translation>
176 <translation id="7561014039265304140"><ph name="DISPLAY_NAME"/>, <ph name="SPECIFIED_RESOLUTION"/> ?????? ??? ??? ????????? <ph name="FALLBACK_RESOLUTION"/> ? ????????? ?????</translation>
193 <translation id="2999742336789313416"><ph name="DISPLAY_NAME"/> ?? <ph name="DOMAIN"/> ?? ?????? ???????? ???? ???????? ????</translation>
253 <translation id="3678715477168044796"><ph name="DISPLAY_NAME"/>: <ph name="ANNOTATION"/></translation>
ash_strings_el.xtb 12 <translation id="6310121235600822547"><ph name="DISPLAY_NAME"/> ???????????? ?? <ph name="ROTATION"/></translation>
30 <translation id="3683428399328702079">? ??????? <ph name="DISPLAY_NAME"/> ?????? ?? <ph name="RESOLUTION"/></translation>
39 <translation id="6459472438155181876">???????? ?????? ?? <ph name="DISPLAY_NAME"/></translation>
68 <translation id="1279938420744323401"><ph name="DISPLAY_NAME"/> (<ph name="ANNOTATION"/>)</translation>
154 <translation id="1882897271359938046">???????????? ?? <ph name="DISPLAY_NAME"/></translation>
176 <translation id="7561014039265304140">?? <ph name="DISPLAY_NAME"/> ??? ??????????? ?? <ph name="SPECIFIED_RESOLUTION"/>. ? ??????? ?????? ?? <ph name="FALLBACK_RESOLUTION"/></translation>
192 <translation id="2999742336789313416">?? <ph name="DISPLAY_NAME"/> ????? ??? ??????? ???????? ???????? ??? ????????????? ?? <ph name="DOMAIN"/></translation>
253 <translation id="3678715477168044796"><ph name="DISPLAY_NAME"/>: <ph name="ANNOTATION"/></translation>
ash_strings_fa.xtb 12 <translation id="6310121235600822547"><ph name="DISPLAY_NAME"/> ?? <ph name="ROTATION"/> ??????? ??</translation>
30 <translation id="3683428399328702079">???? <ph name="DISPLAY_NAME"/> ?? <ph name="RESOLUTION"/> ????? ????</translation>
39 <translation id="6459472438155181876">????? ???? ?? <ph name="DISPLAY_NAME"/></translation>
67 <translation id="1279938420744323401"><ph name="DISPLAY_NAME"/> (<ph name="ANNOTATION"/>)</translation>
152 <translation id="1882897271359938046">?????? ?? <ph name="DISPLAY_NAME"/></translation>
174 <translation id="7561014039265304140"><ph name="DISPLAY_NAME"/>?? <ph name="SPECIFIED_RESOLUTION"/> ?? ???????? ???????. ???? ?? <ph name="FALLBACK_RESOLUTION"/> ????? ???</translation>
191 <translation id="2999742336789313416"><ph name="DISPLAY_NAME"/> ?? ???? ????? ?????????? ???? <ph name="DOMAIN"/> ???</translation>
252 <translation id="3678715477168044796"><ph name="DISPLAY_NAME"/>: <ph name="ANNOTATION"/></translation>
ash_strings_gu.xtb 12 <translation id="6310121235600822547"><ph name="DISPLAY_NAME"/> ?? <ph name="ROTATION"/> ?? ????????? ?????? ????</translation>
30 <translation id="3683428399328702079"><ph name="DISPLAY_NAME"/> ?? <ph name="RESOLUTION"/> ?? ???????? ?????? ????</translation>
39 <translation id="6459472438155181876">????????? <ph name="DISPLAY_NAME"/> ?? ??????? ??? ?????? ??</translation>
68 <translation id="1279938420744323401"><ph name="DISPLAY_NAME"/> (<ph name="ANNOTATION"/>)</translation>
154 <translation id="1882897271359938046"><ph name="DISPLAY_NAME"/> ?? ??????????? ?? ?????? ??</translation>
176 <translation id="7561014039265304140"><ph name="DISPLAY_NAME"/>, <ph name="SPECIFIED_RESOLUTION"/> ?? ?????? ????? ???. ?????????? <ph name="FALLBACK_RESOLUTION"/> ?? ??????? ????</translation>
193 <translation id="2999742336789313416"><ph name="DISPLAY_NAME"/> ? <ph name="DOMAIN"/> ?????? ??????? ????????? ???? ??</translation>
253 <translation id="3678715477168044796"><ph name="DISPLAY_NAME"/>: <ph name="ANNOTATION"/></translation>
ash_strings_hi.xtb 12 <translation id="6310121235600822547"><ph name="DISPLAY_NAME"/> ?? <ph name="ROTATION"/> ?? ?????? ???</translation>
30 <translation id="3683428399328702079"><ph name="DISPLAY_NAME"/> ??????????? ?? <ph name="RESOLUTION"/> ??? ??? ???? ???</translation>
39 <translation id="6459472438155181876"><ph name="DISPLAY_NAME"/> ?? ??????? ??????? ?? ??? ??</translation>
68 <translation id="1279938420744323401"><ph name="DISPLAY_NAME"/> (<ph name="ANNOTATION"/>)</translation>
154 <translation id="1882897271359938046"><ph name="DISPLAY_NAME"/> ?? ???? ?? ??? ??</translation>
176 <translation id="7561014039265304140"><ph name="DISPLAY_NAME"/> <ph name="SPECIFIED_RESOLUTION"/> ?? ?????? ???? ????. ??????????? ?? <ph name="FALLBACK_RESOLUTION"/> ??? ??? ???? ??? ??</translation>
193 <translation id="2999742336789313416"><ph name="DISPLAY_NAME"/>, <ph name="DOMAIN"/> ?? ?????? ???????? ?? ????????? ???? ??</translation>
253 <translation id="3678715477168044796"><ph name="DISPLAY_NAME"/>: <ph name="ANNOTATION"/></translation>

Completed in 383 milliseconds

1 2 3 45 6 7 8 91011>>