/external/bluetooth/glib/tests/bookmarks/ |
fail-14.xbel | 6 xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
fail-15.xbel | 6 xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
fail-16.xbel | 6 xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
fail-17.xbel | 6 xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
valid-01.xbel | 6 xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
valid-03.xbel | 6 xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
/packages/apps/Browser/res/xml/ |
bookmarks_searchable.xml | 27 android:searchSuggestPath="bookmarks"
|
bookmarkwidget.xml | 17 <!-- 4x4 Widget displaying the user's bookmarks as thumbnails. -->
|
/packages/apps/Browser/src/com/android/browser/widget/ |
BookmarkWidgetProvider.java | 27 * Widget that shows a preview of the user's bookmarks.
|
BookmarkWidgetService.java | 53 /** Force the bookmarks to be re-renderer. */ 122 // Class that contacts the service on the phone to render bookmarks. 274 // Default WHERE clause is all bookmarks. 299 // Look up all the bookmarks
|
/packages/apps/Browser/res/values/ |
strings.xml | 25 <!-- Name of tab containing bookmarks --> 26 <string name="tab_bookmarks">Bookmarks</string> 32 <string name="added_to_bookmarks">Added to bookmarks</string> 34 <string name="removed_from_bookmarks">Removed from bookmarks</string> 45 <!-- The name of the bookmarks and history search suggestion source. --> 143 <!-- Menu item on the bookmarks page, to edit an existing bookmark --> 151 <!-- Context menu item to remove a history item from bookmarks --> 152 <string name="remove_from_bookmarks">Remove from bookmarks</string> 158 <string name="bookmark_saved">Saved to bookmarks.</string> 173 <!-- Menu item in the page that displays all bookmarks. It brings up [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
DatabaseHelper.java | 103 db.execSQL("CREATE TABLE bookmarks (" + 112 db.execSQL("CREATE INDEX bookmarksIndex1 ON bookmarks (folder);"); 113 db.execSQL("CREATE INDEX bookmarksIndex2 ON bookmarks (shortcut);"); 115 // Populate bookmarks table with initial bookmarks 291 db.execSQL("UPDATE bookmarks SET folder = '@quicklaunch'"); 292 db.execSQL("UPDATE bookmarks SET title = ''"); 709 db.execSQL("DROP TABLE IF EXISTS bookmarks"); 806 * @param startingIndex The zero-based position at which bookmarks in this file should begin 817 XmlResourceParser parser = mContext.getResources().getXml(R.xml.bookmarks); [all...] |
/frameworks/base/core/java/android/provider/ |
Browser.java | 35 Uri.parse("content://browser/bookmarks"); 119 entries -- if the user wants more bookmarks than the cap, they 184 * Return a cursor pointing to a list of all the bookmarks. 211 * Return a Cursor with all history/bookmarks that are similar to url, 348 * reasonable size. Note: it does not prune bookmarks. If the 349 * user wants 1000 bookmarks, the user gets 1000 bookmarks. 413 * Delete all entries from the bookmarks/history table which are 414 * not bookmarks. Also set all visited bookmarks to unvisited [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
ProviderPermissionTest.java | 82 * Verify that read and write to browser bookmarks requires permissions. 92 * Verify that read and write to browser bookmarks requires permissions.
|
/packages/apps/QuickSearchBox/res/values/ |
config.xml | 32 <!-- The component name of the browser bookmarks and history source used in QSB -->
|
/external/bluetooth/glib/tests/ |
Makefile.am | 236 mkdir $(distdir)/bookmarks; \ 237 for f in $(srcdir)/bookmarks/* ; do \ 238 cp $$f $(distdir)/bookmarks; done
|
/packages/apps/Browser/src/com/android/browser/ |
BrowserHistoryPage.java | 101 // In AddBookmarkPage, where we save new bookmarks, we add 102 // three visits to newly created bookmarks, so that 103 // bookmarks that have not been visited will show up in the 222 // For a bookmark, provide the option to remove it from bookmarks 253 Bookmarks.removeFromBookmarks(this, getContentResolver(),
|
BrowserBookmarksPage.java | 59 * View showing the user's bookmarks in the browser. 158 // bookmarks. 160 Bookmarks.removeFromBookmarks(this, getContentResolver(), url, name); 258 // bookmarks. Otherwise default to grid mode. 565 inflater.inflate(R.menu.bookmarks, menu);
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
bookmarkfile.sgml | 5 parses files containing bookmarks 9 #GBookmarkFile lets you parse, edit or create files containing bookmarks 45 xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"> 47 <title>Desktop Bookmarks Spec</title>
|
/packages/apps/Browser/ |
AndroidManifest.xml | 48 <path-permission android:path="/bookmarks/search_suggest_query" 122 <activity android:name="CombinedBookmarkHistoryActivity" android:label="@string/bookmarks" 133 <activity android:name="BrowserBookmarksPage" android:label="@string/bookmarks" 187 <!--receiver android:name=".widget.BookmarkWidgetProvider" android:label="@string/bookmarks">
|
/packages/apps/Browser/tests/src/com/android/browser/ |
BrowserProviderTests.java | 54 assertTrue("No default bookmarks", c.getCount() > 0); 129 Uri suggestUri = Uri.parse("content://browser/bookmarks/search_suggest_query");
|
/development/pdk/docs/porting/ |
customization.jd | 14 <li><a href="#androidBrowserBookmarks">Customizing browser bookmarks</a></li> 140 <a name="androidBrowserBookmarks"></a><h3>Customizing browser bookmarks</h3> 142 <p>Browser bookmarks are stored as string resources in the Browser application: <code>//android/packages/apps/Browser/res/values/strings.xml</code>. Bookmarks are defined as simple value string arrays called "bookmarks". Each bookmark entry is stored as a pair of array values; the first represents the bookmark name and the second the bookmark URL. For example:</p> 144 <!-- Bookmarks --> 145 <string-array name="bookmarks"> 174 <p>Like and Android application resource, the platform will load alternate resources based on the platform configuration values. See <a href="http://developer.android.com/guide/topics/resources/resources-i18n.html">Resources and Internationalization</a> in the Android SDK for details. To configure bookmarks for a specific mobile network operator, place your customized bookmarks in a separate <code>strings.xml</code> file and place it under a Mobile Network Code (MNO) specific resource folder. For example, <code>Browser/res/values-mccXXX-mncYYY/strings.xml</code> where XXX and YYY represent the three-digit MCC and two to three digit MNC values.</p> 175 <p>Android loads any configuration-specific resources as override values for the default values, so it is only necessary to include the bookmarks string-array values in this file.</p> [all...] |
/external/bluetooth/glib/glib/ |
gbookmarkfile.h | 1 /* gbookmarkfile.h: parsing and building desktop bookmarks
|
/frameworks/base/services/java/com/android/server/ |
DemoDataSet.java | 137 return Settings.Bookmarks.add(mContentResolver, intent, null, null,
|
/external/webkit/WebKit/mac/ |
ChangeLog-2002-12-03 | 173 * Bookmarks.subproj/WebBookmarkGroup.h: New API. 174 * Bookmarks.subproj/WebBookmarkGroup.m: 182 * Bookmarks.subproj/WebBookmarkGroupPrivate.h: Internal methods for posting the notes. 183 * Bookmarks.subproj/WebBookmarkLeaf.m: 187 * Bookmarks.subproj/WebBookmarkList.m: 191 * Bookmarks.subproj/WebBookmarkProxy.m: 441 - fixed a problem I discovered in testing where multiple identical bookmarks confuse us 443 * Bookmarks.subproj/WebBookmarkList.m: [all...] |