HomeSort by relevance Sort by last modified time
    Searched refs:TITLE (Results 126 - 150 of 236) sorted by null

1 2 3 4 56 7 8 910

  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailFragment.java 66 * The group title has been loaded
68 public void onGroupTitleUpdated(String title);
293 mGroupName = cursor.getString(GroupMetaDataLoader.TITLE);
305 private void updateTitle(String title) {
307 mGroupTitle.setText(title);
309 mListener.onGroupTitleUpdated(title);
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 196 // this picture. The title, dateTaken, location are attributes for the
200 public static Uri addImage(ContentResolver cr, String title, long dateTaken,
230 values.put(Images.Media.TITLE, title);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 74 ImageColumns.TITLE, // 1
  /packages/apps/Settings/src/com/android/settings/
SoundSettings.java 259 // Fetch the ringtone title from the media provider
262 new String[] { MediaStore.Audio.Media.TITLE }, null, null, null);
270 // Unknown title for the ringtone
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 210 values.put(Groups.TITLE, "title2");
LegacyContactsProviderTest.java 332 values.put(Organizations.TITLE, "Member");
365 values.put(Organizations.TITLE, "Member");
375 values.put(Organizations.TITLE, "Chair");
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintListDialog.java 81 super.setShellStyle(newShellStyle | SWT.TITLE | SWT.MODELESS | SWT.RESIZE);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 76 Groups.TITLE + "=?",
93 contentValues.put(Groups.TITLE, SAMPLE_GROUP_NAME);
    [all...]
  /frameworks/base/core/java/android/provider/
CalendarContract.java 58 * as event title, location, start time, end time, etc. The event can occur
    [all...]
ContactsContract.java     [all...]
  /packages/apps/Browser/src/com/android/browser/preferences/
WebsiteSettingsFragment.java 135 public void setTitle(String title) {
136 mTitle = title;
287 // (title, icon) for this origin from the bookmarks DB. We must do
322 // our origins, use it to set their title and favicon
324 new String[] { Bookmarks.URL, Bookmarks.TITLE, Bookmarks.FAVICON },
330 int titleIndex = c.getColumnIndex(Bookmarks.TITLE);
336 String title = c.getString(titleIndex); local
346 // We should only set the title if the bookmark is for the root
350 // then we risk displaying the title of that page which may or
355 site.setTitle(title);
456 final TextView title; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
LocalMediaData.java 83 public LocalMediaData (long contentId, String title, String mimeType,
88 mTitle = new String(title);
312 MediaStore.Images.ImageColumns.TITLE, // 1, string
338 public PhotoData(long id, String title, String mimeType,
342 super(id, title, mimeType, dateTakenInSeconds, dateModifiedInSeconds,
349 String title = c.getString(COL_TITLE); local
386 PhotoData result = new PhotoData(id, title, mimeType, dateTakenInSeconds,
602 MediaStore.Video.VideoColumns.TITLE, // 1, string
619 public VideoData(long id, String title, String mimeType,
623 super(id, title, mimeType, dateTakenInSeconds, dateModifiedInSeconds
630 String title = c.getString(COL_TITLE); local
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
FallbackSource.java 350 kind.actionBody = new SimpleInflater(Organization.TITLE);
364 kind.fieldList.add(new EditField(Organization.TITLE, R.string.ghostData_title,
ExchangeSource.java 260 kind.fieldList.add(new EditField(Organization.TITLE, R.string.ghostData_title,
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 176 * specified by its name (or "title"). All of the event fields (the
400 int titleColumn = cursor.getColumnIndex(Events.TITLE);
403 String title = cursor.getString(titleColumn); local
415 title, date);
508 public EventInfo(String title, String startDate, String endDate,
510 init(title, startDate, endDate, allDay, DEFAULT_TIMEZONE);
514 public EventInfo(String title, String startDate, String endDate,
516 init(title, startDate, endDate, allDay, timezone);
519 public void init(String title, String startDate, String endDate,
521 mTitle = title;
1374 String title = "colorTest"; local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 85 Events.TITLE + "," +
529 CalendarContract.Events.TITLE + " TEXT," +
597 + "title TEXT,"
666 "title TEXT," +
    [all...]
  /external/qemu/android/
hw-events.h 314 KEY_CODE(TITLE ,0x171) \
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 91 Combined.TITLE, // 2
236 mFragmentBreadCrumbs = (FragmentBreadCrumbs) mRoot.findViewById(android.R.id.title);
256 CharSequence title = ((TextView) view).getText();
257 mFragmentBreadCrumbs.setTitle(title, title);
397 String title = historyItem.getName(); local
409 url, title);
411 Browser.saveBookmark(activity, title, url);
SuggestionsAdapter.java 57 OmniboxSuggestions.TITLE,
63 "(url LIKE ? OR url LIKE ? OR url LIKE ? OR url LIKE ? OR title LIKE ?)";
165 tv1.setText(Html.fromHtml(item.title));
255 if (sitem.title != null) {
256 return sitem.title;
366 sb.append(item.type + ": " + item.title);
379 public String title; field in class:SuggestionsAdapter.SuggestItem
385 title = text;
423 String title = mCursor.getString(1); local
426 return new SuggestItem(getTitle(title, url), getUrl(title, url)
502 String title = mCursor.getString( local
561 final String title = SuggestionsAdapter.getSuggestionTitle(item); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 50 * 3) the title (unnecessary, but nice)
57 "begin ASC, end DESC, title ASC";
59 "startDay ASC, endDay DESC, title ASC";
67 Instances.TITLE, // 0
122 public CharSequence title; field in class:Event
161 e.title = title;
182 dest.title = title;
203 e.title = null
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekFragment.java 72 + Instances.START_MINUTE + "," + Instances.TITLE;
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetService.java 73 Instances.TITLE,
263 updateTextView(views, R.id.title, eventInfo.visibTitle, eventInfo.title);
272 views.setInt(R.id.title, "setTextColor", displayColor);
276 views.setInt(R.id.title, "setTextColor", mAllDayColor);
286 views.setInt(R.id.title, "setTextColor", mDeclinedColor);
297 views.setInt(R.id.title, "setTextColor", mStandardColor);
  /packages/apps/Camera2/src/com/android/camera/crop/
SaveImage.java 491 values.put(Images.Media.TITLE, file.getName());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
BaseAccountType.java 373 kind.actionBody = new SimpleInflater(Organization.TITLE);
379 kind.fieldList.add(new EditField(Organization.TITLE, R.string.ghostData_title,
    [all...]
ExchangeAccountType.java 278 kind.fieldList.add(new EditField(Organization.TITLE, R.string.ghostData_title,

Completed in 1229 milliseconds

1 2 3 4 56 7 8 910