Lines Matching defs:cr

47     public abstract int addDefaultBookmarks(Context context, ContentResolver cr, int offset);  in addDefaultBookmarks()
53 …public abstract int addDistributionBookmarks(ContentResolver cr, Distribution distribution, int of… in addDistributionBookmarks()
60 public abstract int getCount(ContentResolver cr, String database); in getCount()
66 public abstract Cursor filter(ContentResolver cr, CharSequence constraint, in filter()
75 public abstract Cursor getTopSites(ContentResolver cr, int suggestedRangeLimit, int limit); in getTopSites()
79 public abstract void updateVisitedHistory(ContentResolver cr, String uri); in updateVisitedHistory()
81 public abstract void updateHistoryTitle(ContentResolver cr, String uri, String title); in updateHistoryTitle()
86 public abstract Cursor getAllVisitedHistory(ContentResolver cr); in getAllVisitedHistory()
91 public abstract Cursor getRecentHistory(ContentResolver cr, int limit); in getRecentHistory()
93 @Nullable public abstract Cursor getHistoryForURL(ContentResolver cr, String uri); in getHistoryForURL()
95 public abstract long getPrePathLastVisitedTimeMilliseconds(ContentResolver cr, String prePath); in getPrePathLastVisitedTimeMilliseconds()
97 public abstract void expireHistory(ContentResolver cr, ExpirePriority priority); in expireHistory()
99 public abstract void removeHistoryEntry(ContentResolver cr, String url); in removeHistoryEntry()
101 public abstract void clearHistory(ContentResolver cr, boolean clearSearchHistory); in clearHistory()
104 public abstract String getUrlForKeyword(ContentResolver cr, String keyword); in getUrlForKeyword()
106 public abstract boolean isBookmark(ContentResolver cr, String uri); in isBookmark()
107 public abstract boolean addBookmark(ContentResolver cr, String title, String uri); in addBookmark()
108 public abstract Uri addBookmarkFolder(ContentResolver cr, String title, long parentId); in addBookmarkFolder()
109 @Nullable public abstract Cursor getBookmarkForUrl(ContentResolver cr, String url); in getBookmarkForUrl()
110 … @Nullable public abstract Cursor getBookmarksForPartialUrl(ContentResolver cr, String partialUrl); in getBookmarksForPartialUrl()
111 @Nullable public abstract Cursor getBookmarkById(ContentResolver cr, long id); in getBookmarkById()
112 @Nullable public abstract Cursor getBookmarkByGuid(ContentResolver cr, String guid); in getBookmarkByGuid()
113 @Nullable public abstract Cursor getAllBookmarkFolders(ContentResolver cr); in getAllBookmarkFolders()
114 public abstract void removeBookmarksWithURL(ContentResolver cr, String uri); in removeBookmarksWithURL()
115 public abstract void removeBookmarkWithId(ContentResolver cr, long id); in removeBookmarkWithId()
116 public abstract void registerBookmarkObserver(ContentResolver cr, ContentObserver observer); in registerBookmarkObserver()
117 …public abstract void updateBookmark(ContentResolver cr, long id, String uri, String title, String … in updateBookmark()
118 …public abstract void updateBookmark(ContentResolver cr, long id, String uri, String title, String … in updateBookmark()
119 public abstract boolean hasBookmarkWithGuid(ContentResolver cr, String guid); in hasBookmarkWithGuid()
126 @Nullable public abstract Cursor getBookmarksInFolder(ContentResolver cr, long folderId); in getBookmarksInFolder()
128 public abstract int getBookmarkCountForFolder(ContentResolver cr, long folderId); in getBookmarkCountForFolder()
137 …public abstract LoadFaviconResult getFaviconForUrl(Context context, ContentResolver cr, String fav… in getFaviconForUrl()
142 public abstract String getFaviconURLFromPageURL(ContentResolver cr, String uri); in getFaviconURLFromPageURL()
144 public abstract byte[] getThumbnailForUrl(ContentResolver cr, String uri); in getThumbnailForUrl()
145 …public abstract void updateThumbnailForUrl(ContentResolver cr, String uri, BitmapDrawable thumbnai… in updateThumbnailForUrl()
154 @Nullable public abstract Cursor getThumbnailsForUrls(ContentResolver cr, in getThumbnailsForUrls()
157 public abstract void removeThumbnails(ContentResolver cr); in removeThumbnails()
160 public abstract void updateHistoryInBatch(ContentResolver cr, in updateHistoryInBatch()
164 public abstract void updateBookmarkInBatch(ContentResolver cr, in updateBookmarkInBatch()
170 public abstract void pinSite(ContentResolver cr, String url, String title, int position); in pinSite()
171 public abstract void unpinSite(ContentResolver cr, int position); in unpinSite()
175 public abstract void pinSiteForAS(ContentResolver cr, String url, String title); in pinSiteForAS()
176 public abstract void unpinSiteForAS(ContentResolver cr, String url); in unpinSiteForAS()
178 public abstract boolean isPinnedForAS(ContentResolver cr, String url); in isPinnedForAS()
200 public abstract void blockActivityStreamSite(ContentResolver cr, String url); in blockActivityStreamSite()