/packages/apps/Launcher3/src/com/android/launcher3/ |
UninstallShortcutReceiver.java | 97 LauncherSettings.Favorites.TITLE + "=?", new String[] { name }, null);
|
ShortcutInfo.java | 77 title = info.title.toString(); 93 title = info.title.toString(); 153 String titleStr = title != null ? title.toString() : null; 154 values.put(LauncherSettings.BaseLauncherColumns.TITLE, titleStr); 180 return "ShortcutInfo(title=" + title.toString() + "intent=" + intent + "id=" + this.id 190 Log.d(tag, " title=\"" + info.title + " icon=" + info.mIco [all...] |
/packages/providers/PartnerBookmarksProvider/tests/src/com/android/providers/partnerbookmarks/ |
PartnerBookmarksProviderTest.java | 56 String title = cursor.getString( local 57 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.TITLE)); 60 assertFalse("title should never be empty", title.isEmpty());
|
/packages/apps/Browser/src/com/android/browser/ |
AddBookmarkPage.java | 348 values.put(BrowserContract.Bookmarks.TITLE, 404 mTitle.setText(info.title); 463 BrowserContract.Bookmarks.TITLE, 578 BrowserContract.Bookmarks.TITLE))); 608 String title = null; local 633 title = mMap.getString(BrowserContract.Bookmarks.TITLE); 639 mTitle = (EditText) findViewById(R.id.title); 640 mTitle.setText(title); 760 String title = bundle.getString(BrowserContract.Bookmarks.TITLE) local 844 String title = mTitle.getText().toString().trim(); local 1056 String title; field in class:AddBookmarkPage.EditBookmarkInfo [all...] |
Bookmarks.java | 75 values.put(BrowserContract.Bookmarks.TITLE, name); 102 ContentResolver cr, String url, String title) { 109 BrowserContract.Bookmarks.TITLE + " = ?", 110 new String[] { url, title },
|
/external/chromium_org/chrome/browser/history/android/ |
android_history_types.h | 36 TITLE, 74 // The title of page. 75 void set_title(const string16& title) { 76 set_value_explicitly(TITLE); 77 title_ = title; 79 const string16& title() const { function in class:history::HistoryAndBookmarkRow
|
bookmark_model_sql_handler.cc | 25 HistoryAndBookmarkRow::BOOKMARK, HistoryAndBookmarkRow::TITLE }; 34 const string16& title) { 40 bookmark_model->AddURL(mobile_node, 0, title, url); 44 const string16& title, 51 bookmark_model->AddURL(parent, 0, title, url); 68 const string16&title) { 76 bookmark_model->SetTitle(*i, title); 114 i->url, url_row.title(), row.parent_id())); 120 i->url, url_row.title())); 129 } else if (row.is_value_set_explicitly(HistoryAndBookmarkRow::TITLE)) { [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
MediaMetadataTest.java | 39 DATE, GENRE, TITLE, 111 Log.v(TAG, "Title : "+ value); 112 assertEquals(TAG, meta_data_file[fileIndex][meta.TITLE.ordinal()], value);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
GLTraceCollectorDialog.java | 42 private static final String TITLE = "OpenGL ES Trace"; 78 setTitle(TITLE);
|
/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/ |
PartnerBookmarksProvider.java | 112 map.put(PartnerBookmarksContract.Bookmarks.TITLE, 113 PartnerBookmarksContract.Bookmarks.TITLE); 169 PartnerBookmarksContract.Bookmarks.TITLE + 243 values.put(PartnerBookmarksContract.Bookmarks.TITLE, 264 PartnerBookmarksContract.Bookmarks.TITLE);
|
/packages/apps/Browser/src/com/android/browser/provider/ |
BrowserProvider2.java | 92 public static final String TITLE = "title"; 130 bookmarkOrHistoryColumn(Combined.TITLE), 138 + " OR history.title LIKE ? OR bookmarks.title LIKE ?"; 256 map.put(Bookmarks.TITLE, Bookmarks.TITLE); 306 map.put(History.TITLE, History.TITLE); 333 map.put(Combined.TITLE, bookmarkOrHistoryColumn(Combined.TITLE)) [all...] |
/frameworks/base/core/java/android/provider/ |
Browser.java | 84 BookmarkColumns.TITLE, // 5 151 * Open an activity to save a bookmark. Launch with a title 155 * @param title Title for the bookmark. Can be null or empty string. 159 String title, 162 i.putExtra("title", title); 206 * @param chooserDialogTitle The title of the dialog that allows the user 343 values.put(History.TITLE, url); 605 * The user visible title of the bookmark or history item [all...] |
/packages/apps/Music/src/com/android/music/ |
AudioPreview.java | 135 int titleIdx = cursor.getColumnIndex(MediaStore.Audio.Media.TITLE); 145 String title = cursor.getString(titleIdx); 146 mTextLine1.setText(title); 171 // try to get title and artist from the media content provider 173 MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.ARTIST}, 187 MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.ARTIST},
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarAlarmManager.java | 329 + Instances.TITLE + "," + Instances.ALL_DAY + "," + Reminders.METHOD + "," 354 + " ORDER BY myAlarmTime," + Instances.BEGIN + "," + Instances.TITLE; 433 int titleIndex = cursor.getColumnIndex(Events.TITLE); 434 String title = cursor.getString(titleIndex); local 436 " alarm exists for id: " + eventId + " " + title);
|
/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;
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
EditEventActivity.java | 155 info.eventTitle = intent.getStringExtra(Events.TITLE);
|
/packages/apps/Camera/src/com/android/camera/ |
Storage.java | 79 public static Uri addImage(ContentResolver resolver, String title, 83 String path = generateFilepath(title); 85 return addImage(resolver, title, date, location, orientation, 90 public static Uri addImage(ContentResolver resolver, String title, 95 values.put(ImageColumns.TITLE, title); 96 values.put(ImageColumns.DISPLAY_NAME, title + ".jpg"); 133 public static String generateFilepath(String title) { 134 return DIRECTORY + '/' + title + ".jpg";
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
ShortcutInfo.java | 66 title = info.title.toString(); 80 title = info.title.toString(); 120 String titleStr = title != null ? title.toString() : null; 121 values.put(LauncherSettings.BaseLauncherColumns.TITLE, titleStr); 147 return "ShortcutInfo(title=" + title.toString() + "intent=" + intent + "id=" + this.id 157 Log.d(tag, " title=\"" + info.title + " icon=" + info.mIco [all...] |
UninstallShortcutReceiver.java | 105 LauncherSettings.Favorites.TITLE + "=?", new String[] { name }, null);
|
/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";
|
/cts/tests/tests/view/src/android/view/cts/ |
WindowManager_LayoutParamsTest.java | 35 private static final String TITLE = "params title"; 36 private static final String PARAMS_TITLE = "params title"; 74 mLayoutParams.setTitle(TITLE); 172 String title = ""; local 176 assertEquals(title, mLayoutParams.getTitle()); 178 title = "Android Test Title"; 179 mLayoutParams.setTitle(title); 180 assertEquals(title, mLayoutParams.getTitle()) [all...] |
/external/chromium_org/third_party/icu/source/test/perf/perldriver/ |
Output.pm | 178 my $title = $options{ "title" }; 209 <TITLE>$title</TITLE> 236 print HTML "<H1>$title</H1>\n";
|
/external/icu4c/test/perf/perldriver/ |
Output.pm | 178 my $title = $options{ "title" }; 209 <TITLE>$title</TITLE> 236 print HTML "<H1>$title</H1>\n";
|
/frameworks/base/media/java/android/media/ |
RingtoneManager.java | 157 * Given to the ringtone picker as a {@link CharSequence}. The title to 161 public static final String EXTRA_RINGTONE_TITLE = "android.intent.extra.ringtone.TITLE"; 181 MediaStore.Audio.Media._ID, MediaStore.Audio.Media.TITLE, 187 MediaStore.Audio.Media._ID, MediaStore.Audio.Media.TITLE, 200 * title.
|