HomeSort by relevance Sort by last modified time
    Searched refs:TITLE (Results 101 - 125 of 347) sorted by null

1 2 3 45 6 7 8 91011>>

  /developers/build/prebuilts/gradle/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
LongListActivity.java 53 mItems.add(new AppItem(null, 0, SampleAppConstants.TITLE, null)); // for title
LongListRecyclerViewAdapter.java 60 case SampleAppConstants.TITLE:
61 // Programmatically set the text of the title here.
  /developers/samples/android/wearable/wear/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
LongListActivity.java 53 mItems.add(new AppItem(null, 0, SampleAppConstants.TITLE, null)); // for title
LongListRecyclerViewAdapter.java 60 case SampleAppConstants.TITLE:
61 // Programmatically set the text of the title here.
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicRetriever.java 33 * resolver). After that, it's ready to retrieve a random song, with its title and URI, upon
78 // retrieve the indices of the columns where the ID, title, etc. of the song are
80 int titleColumn = cur.getColumnIndex(MediaStore.Audio.Media.TITLE);
85 Log.i(TAG, "Title column index: " + String.valueOf(titleColumn));
90 Log.i(TAG, "ID: " + cur.getString(idColumn) + " Title: " + cur.getString(titleColumn));
115 String title; field in class:MusicRetriever.Item
119 public Item(long id, String artist, String title, String album, long duration) {
122 this.title = title;
136 return title;
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 28 public HTMLDocument (final String title, final String encoding)
47 if (title != null)
50 //getAttributes ().set (Attribute.TITLE, title);
52 final IElement titleElement = IElement.Factory.create (Tag.TITLE).setText (title, false);
56 m_title = title;
  /frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
MediaStoreSaver.java 42 String title,
50 return insertImage(contentResolver, streamWriter, title, description);
56 String title,
60 values.put(Images.Media.TITLE, title);
61 values.put(Images.Media.DISPLAY_NAME, title);
  /frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
MediaStoreSaver.java 42 String title,
50 return insertImage(contentResolver, streamWriter, title, description);
56 String title,
60 values.put(Images.Media.TITLE, title);
61 values.put(Images.Media.DISPLAY_NAME, title);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventActivity.java 155 info.eventTitle = intent.getStringExtra(Events.TITLE);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMetaData.java 77 this.groupName = cursor.getString(GroupMetaDataLoader.TITLE);
  /packages/apps/DevCamera/src/com/android/devcamera/
MediaSaver.java 141 values.put(MediaStore.Images.Media.TITLE, file.getName());
  /packages/apps/Launcher2/src/com/android/launcher2/
ShortcutInfo.java 67 title = info.title.toString();
81 title = info.title.toString();
125 String titleStr = title != null ? title.toString() : null;
126 values.put(LauncherSettings.BaseLauncherColumns.TITLE, titleStr);
152 return "ShortcutInfo(title=" + title.toString() + "intent=" + intent + "id=" + this.id
162 Log.d(tag, " title=\"" + info.title + " icon=" + info.mIco
    [all...]
UninstallShortcutReceiver.java 105 LauncherSettings.Favorites.TITLE + "=?", new String[] { name }, null);
  /packages/apps/Launcher3/src/com/android/launcher3/
ShortcutInfo.java 97 title = info.title;
107 title = Utilities.trim(info.title);
124 writer.put(LauncherSettings.BaseLauncherColumns.TITLE, title)
168 title = shortcutInfo.getShortLabel();
  /packages/apps/LegacyCamera/src/com/android/camera/
Storage.java 52 public static Uri addImage(ContentResolver resolver, String title, long date,
55 String path = generateFilepath(title);
72 values.put(ImageColumns.TITLE, title);
73 values.put(ImageColumns.DISPLAY_NAME, title + ".jpg");
101 public static String generateFilepath(String title) {
102 return DIRECTORY + '/' + title + ".jpg";
  /packages/apps/Settings/tests/robotests/src/com/android/settings/search/
SettingsSearchIndexablesProviderTest.java 65 assertThat(cursor.getString(1)).isEqualTo(FakeSettingsFragment.TITLE);
  /cts/tests/tests/view/src/android/view/cts/
WindowManager_LayoutParamsTest.java 46 private static final String TITLE = "params title";
47 private static final String PARAMS_TITLE = "params title";
86 mLayoutParams.setTitle(TITLE);
189 String title = ""; local
193 assertEquals(title, mLayoutParams.getTitle());
195 title = "Android Test Title";
196 mLayoutParams.setTitle(title);
197 assertEquals(title, mLayoutParams.getTitle())
    [all...]
  /external/icu/icu4c/source/test/perf/perldriver/
Output.pm 182 my $title = $options{ "title" };
213 <TITLE>$title</TITLE>
240 print HTML "<H1>$title</H1>\n";
  /external/icu/icu4j/perf-tests/perldriver/
Output.pm 180 my $title = $options{ "title" };
211 <TITLE>$title</TITLE>
238 print HTML "<H1>$title</H1>\n";
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
SearchFragment.java 5 import static com.example.android.leanback.CardPresenter.TITLE;
76 diff.putString(TITLE, newItem.getTitle());
287 "change title",
SearchSupportFragment.java 8 import static com.example.android.leanback.CardPresenter.TITLE;
79 diff.putString(TITLE, newItem.getTitle());
290 "change title",
  /packages/apps/Contacts/tests/src/com/android/contacts/
GroupsDaoIntegrationTests.java 203 private void assertGroupHasTitle(Uri groupUri, String title) {
205 new String[] { ContactsContract.Groups.TITLE },
209 assertTrue("Group does not have title \"" + title + "\"",
211 title.equals(cursor.getString(0)));
217 private void assertGroupWithTitleExists(String title) {
219 ContactsContract.Groups.TITLE + "=? AND " +
221 new String[] { title, "0" }, null, null);
223 assertTrue("No group exists with title \"" + title + "\"", cursor.getCount() > 0)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/metricregression/
DetectRegression.java 74 private static final String TITLE = "Metric Regressions";
174 table.addTitle(TITLE).addLine(TABLE_HEADER).addDoubleLineSeparator();
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_Playlists_MembersTest.java 60 Members.TITLE,
90 Members.TITLE,
226 assertEquals(Audio1.TITLE, c.getString(c.getColumnIndex(Members.TITLE)));
270 assertEquals(Audio2.TITLE, c.getString(c.getColumnIndex(Members.TITLE)));
  /system/bt/profile/avrcp/
device.cc 890 builder->AddAttributeEntry(Attribute::TITLE, item_requested.folder.name);
893 if (attr == Attribute::TITLE) {
894 builder->AddAttributeEntry(Attribute::TITLE,
1004 auto title = local
1040 auto title = song.attributes.find(Attribute::TITLE) != song.attributes.end() local
    [all...]

Completed in 1159 milliseconds

1 2 3 45 6 7 8 91011>>