Searched refs:title (Results 1 - 25 of 277) sorted by relevance

1234567891011>>

/packages/apps/Browser/tests/src/com/android/browser/
H A DBrowserProviderTests.java91 String title = "\u30ae\u30e3\u30e9\u30ea\u30fc\u30fcGoogle\u691c\u7d22";
92 assertInsertQuery("http://www.example.com/sdaga", title, title);
96 String title = "\u30ae\u30e3\u30e9\u30ea\u30fc\u30fcGoogle\u691c\u7d22";
98 assertInsertQuery("http://www.example.com/sdaga", title, query);
103 String title = "\u30ae\u30e3\u30e9\u30ea\u30fc\u30fcGoogle\u691c\u7d22";
105 assertInsertQuery("http://www.example.com/sdaga", title, query);
112 private void assertInsertQuery(String url, String title, String query) { argument
113 addBookmark(url, title);
114 assertQueryReturns(url, title, quer
117 assertQueryReturns(String url, String title, String query) argument
146 addBookmark(String url, String title) argument
153 insertBookmark(String url, String title) argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksAdapterItem.java22 public CharSequence title; field in class:BrowserBookmarksAdapterItem
H A DSuggestionsAdapter.java63 "(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);
426 return new SuggestItem(getTitle(title, url), getUrl(title, ur
472 getTitle(String title, String url) argument
486 getUrl(String title, String url) argument
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolderInfo.java70 public void setTitle(CharSequence title) { argument
71 this.title = title;
73 listeners.get(i).onTitleChanged(title);
80 values.put(LauncherSettings.Favorites.TITLE, title.toString());
108 public void onTitleChanged(CharSequence title); argument
H A DShortcutInfo.java66 title = info.title.toString();
80 title = info.title.toString();
120 String titleStr = title != null ? title.toString() : null;
147 return "ShortcutInfo(title=" + title.toString() + "intent=" + intent + "id=" + this.id
157 Log.d(tag, " title=\"" + info.title
[all...]
/packages/apps/Mms/src/org/w3c/dom/smil/
H A DElementLayout.java27 public void setTitle(String title) argument
/packages/apps/Camera/src/com/android/camera/
H A DMediaSaver.java65 public void addImage(final byte[] data, String title, long date, Location loc, argument
70 r.title = title;
113 Uri uri = storeImage(r.data, r.title, r.date, r.loc, r.width, r.height,
132 private Uri storeImage(final byte[] data, String title, long date, argument
134 Uri uri = Storage.addImage(mContentResolver, title, date, loc,
142 String title; field in class:MediaSaver.SaveRequest
H A DStorage.java79 public static Uri addImage(ContentResolver resolver, String title, argument
83 String path = generateFilepath(title);
85 return addImage(resolver, title, date, location, orientation,
90 public static Uri addImage(ContentResolver resolver, String title, argument
95 values.put(ImageColumns.TITLE, title);
96 values.put(ImageColumns.DISPLAY_NAME, title + ".jpg");
133 public static String generateFilepath(String title) { argument
134 return DIRECTORY + '/' + title + ".jpg";
/packages/apps/VideoEditor/src/com/android/videoeditor/util/
H A DImageUtils.java238 * @param title The title
246 String title, String subTitle, int width, int height) {
260 Color.WHITE, title, subTitle, width, height);
266 Color.WHITE, title, subTitle, width, height);
272 Color.BLACK, title, subTitle, width, height);
278 Color.BLACK, title, subTitle, width, height);
297 * @param title The title
303 int textColor, String title, Strin
245 buildOverlayBitmap(Context context, Bitmap inputBitmap, int overlayType, String title, String subTitle, int width, int height) argument
302 drawCenterOverlay(Context context, Canvas canvas, int drawableId, int textColor, String title, String subTitle, int width, int height) argument
345 drawBottomOverlay(Context context, Canvas canvas, int drawableId, int textColor, String title, String subTitle, int width, int height) argument
388 buildOverlayPreview(Context context, Canvas canvas, int overlayType, String title, String subTitle, int startX, int startY, int width, int height) argument
422 drawOverlayPreview(Context context, Canvas canvas, int drawableId, int textColor, String title, String subTitle, int startX, int startY, int width, int height) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/
H A DGroupMetaData.java32 String title, boolean defaultGroup, boolean favorites) {
37 this.mTitle = title;
31 GroupMetaData(String accountName, String accountType, String dataSet, long groupId, String title, boolean defaultGroup, boolean favorites) argument
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupListItem.java32 String title, boolean isFirstGroupInAccount, int memberCount) {
37 mTitle = title;
31 GroupListItem(String accountName, String accountType, String dataSet, long groupId, String title, boolean isFirstGroupInAccount, int memberCount) argument
/packages/apps/Mms/src/com/android/mms/ui/
H A DLayoutSelectorAdapter.java45 protected static void addItem(List<IconListItem> data, String title, int resource) { argument
46 IconListItem temp = new IconListItem(title, resource);
/packages/apps/Nfc/src/com/android/nfc/
H A DTechListChooserActivity.java43 CharSequence title = getResources().getText(com.android.internal.R.string.chooseActivity);
44 super.onCreate(savedInstanceState, target, title, null, rList, false);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiConfigUiBase.java34 public void setTitle(CharSequence title); argument
/packages/providers/ApplicationsProvider/tests/src/com/android/providers/applications/
H A DMockPackageManager.java67 * @param title the user-friendly title of the application (this is what
75 public void addPackage(final String title, ComponentName componentName, int appEnabledSetting, argument
77 // Set the application's title.
81 return title;
97 public void addPackage(final String title, ComponentName componentName) { argument
98 addPackage(title, componentName, PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
/packages/apps/Calendar/tests/src/com/android/calendar/widget/
H A DCalendarAppWidgetServiceTest.java49 final String title = "Title"; field in class:CalendarAppWidgetServiceTest
105 // allDay, begin, end, title, location, eventId
106 cursor.addRow(getRow(0, now + ONE_HOUR, now + TWO_HOURS, title, location, 0));
116 eventInfo.title = title;
143 eventInfo.title = title + i;
145 cursor.addRow(getRow(0, now + ONE_HOUR, now + TWO_HOURS, title + i, location + i, 0));
165 eventInfo.title = title
176 getRow(int allDay, long begin, long end, String title, String location, long eventId) argument
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DProjectPickerAdapter.java139 String title;
142 title = mContext.getString(R.string.projects_new_project);
147 title = project.getName();
148 if (title == null) {
149 title = "";
152 thumbnail = getThumbnail(project.getPath(), iv, title, duration);
156 drawBottomOverlay(thumbnail, title, duration);
164 * Draws transparent black bottom overlay with movie title and duration on the bitmap.
166 public void drawBottomOverlay(Bitmap bitmap, String title, String duration) { argument
179 // Draw movie title a
195 getThumbnail(String projectPath, ImageView imageView, String title, String duration) argument
252 LoadPreviewBitmapTask(ProjectPickerAdapter contextAdapter, String projectPath, ImageView imageView, int width, int height, String title, String duration, LruCache<String, Bitmap> previewBitmapCache) argument
[all...]
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DImageList.java129 String title = cursor.getString(INDEX_TITLE);
131 if (title == null || title.length() == 0) {
132 title = dataPath;
135 contentUri(id), dataPath, mimeType, dateTaken, title,
H A DVideoList.java66 String title = cursor.getString(INDEX_TITLE);
68 if (title == null || title.length() == 0) {
69 title = dataPath;
73 mimeType, dateTaken, title);
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarSyncTestingBase.java233 public EventInfo(String title, String startDate, String endDate, argument
235 init(title, startDate, endDate, allDay, DEFAULT_TIMEZONE);
238 public EventInfo(String title, long startDate, long endDate, argument
240 mTitle = title;
249 public EventInfo(String title, long startDate, long endDate, argument
251 mTitle = title;
262 public EventInfo(String title, String startDate, String endDate, argument
264 init(title, startDate, endDate, allDay, timezone);
267 public void init(String title, String startDate, String endDate, argument
269 mTitle = title;
287 EventInfo(String title, String description, String startDate, String endDate, String rrule, boolean allDay) argument
293 EventInfo(String title, String description, String startDate, String endDate, String rrule, boolean allDay, String timezone) argument
298 init(String title, String description, String startDate, String endDate, String rrule, boolean allDay, String timezone) argument
330 EventInfo(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay) argument
336 init(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay, String timezone) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPopupList.java46 public String title; field in class:PopupList.Item
48 public Item(int id, String title) { argument
50 this.title = title;
53 public void setTitle(String title) { argument
54 this.title = title;
78 public void addItem(int id, String title) { argument
79 mItems.add(new Item(id, title));
202 text.setText(mItems.get(position).title);
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DLocationSettings.java229 TextView title = (TextView) view.findViewById(android.R.id.title);
230 if (title != null) {
231 title.setSingleLine(false);
232 title.setMaxLines(3);
251 TextView title = (TextView) view.findViewById(android.R.id.title);
252 if (title != null) {
253 title.setSingleLine(false);
254 title
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DStorage.java52 public static Uri addImage(ContentResolver resolver, String title, long date, argument
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) { argument
102 return DIRECTORY + '/' + title + ".jpg";
/packages/apps/Camera/src/com/android/camera/ui/
H A DAbstractSettingPopup.java39 mTitle = (TextView) findViewById(R.id.title);
/packages/apps/Gallery2/src/com/android/camera/ui/
H A DAbstractSettingPopup.java39 mTitle = (TextView) findViewById(R.id.title);

Completed in 586 milliseconds

1234567891011>>