HomeSort by relevance Sort by last modified time
    Searched refs:favicon (Results 1 - 24 of 24) sorted by null

  /frameworks/base/core/java/android/webkit/
WebHistoryItem.java 38 // The favicon for this item.
124 * Return the favicon of this history item or null if no favicon was found.
125 * @return A Bitmap containing the favicon for this history item or null.
164 * Set the favicon.
165 * @param icon A Bitmap containing the favicon for this history item.
212 Bitmap favicon, byte[] data) {
216 mFavicon = favicon;
WebViewClient.java 52 * @param favicon The favicon for this page if it already exists in the
55 public void onPageStarted(WebView view, String url, Bitmap favicon) {
BrowserFrame.java 356 private void loadStarted(String url, Bitmap favicon, int loadType,
365 mCallbackProxy.onPageStarted(url, favicon);
776 * @param icon A Bitmap representing a page's favicon.
    [all...]
CallbackProxy.java     [all...]
  /packages/apps/Browser/src/com/android/browser/
ActiveTabsPage.java 151 ImageView favicon = local
152 (ImageView) convertView.findViewById(R.id.favicon);
160 favicon.setImageBitmap(icon);
162 favicon.setImageResource(R.drawable.app_web_browser_sm);
AddNewBookmark.java 36 * Instantiate a bookmark item, including a default favicon.
48 mImageView = (ImageView) findViewById(R.id.favicon);
BookmarkItem.java 39 * Instantiate a bookmark item, including a default favicon.
50 mImageView = (ImageView) findViewById(R.id.favicon);
84 * Set the favicon for this item.
BrowserBookmarksAdapter.java 101 * Return a hashmap with one row's Title, Url, and favicon.
103 * @return Bundle Stores title, url of row position, favicon, and id
119 map.putParcelable(Browser.BookmarkColumns.FAVICON,
248 * Update the bookmark's favicon. This is a convenience method for updating
249 * a bookmark favicon for the originalUrl and url of the passed in WebView.
253 * @param favicon The favicon bitmap to write to the db.
256 final String originalUrl, final String url, final Bitmap favicon) {
268 favicon.compress(Bitmap.CompressFormat.PNG, 100, os);
269 values.put(Browser.BookmarkColumns.FAVICON,
    [all...]
BrowserBookmarksPage.java 493 Bitmap favicon = getFavicon(position); local
494 if (favicon == null) {
508 // filtering the favicon.
516 // Create a rectangle that is slightly wider than the favicon
517 final float iconSize = 16 * density; // 16x16 favicon
531 // Draw a white rounded rectangle behind the favicon
534 // Draw the favicon in the same rectangle as the rounded
536 // (results in a 16x16 favicon).
538 canvas.drawBitmap(favicon, null, r, p);
703 * Return the favicon of the currently highlighted row
    [all...]
Tab.java 460 public void onPageStarted(WebView view, String url, Bitmap favicon) {
496 // update the bookmark database for favicon
497 if (favicon != null) {
499 .getContentResolver(), null, url, favicon);
511 mActivity.onPageStarted(view, url, favicon);
    [all...]
TitleBar.java 98 mFavicon = (ImageView) findViewById(R.id.favicon);
251 * Set a new Bitmap for the Favicon.
BrowserActivity.java     [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebViewClient.java 51 public void onPageStarted(WebView view, String url, Bitmap favicon) {
52 mWrappedClient.onPageStarted(view, url, favicon);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewClientTest.java 317 public void onPageStarted(WebView view, String url, Bitmap favicon) {
318 super.onPageStarted(view, url, favicon);
  /external/webkit/WebKit/android/jni/
WebHistory.cpp 287 // Try to get the favicon from the history item. For some pages like Grand
290 jobject favicon = NULL; local
300 favicon = webcoreImageToJavaBitmap(env, icon);
305 originalUrlStr, titleStr, favicon, array);
309 if (favicon)
310 env->DeleteLocalRef(favicon);
WebCoreFrameBridge.cpp 548 // If this is the main frame and we already have a favicon in the database,
550 jobject favicon = NULL; local
554 favicon = webcoreImageToJavaBitmap(env, icon);
559 env->CallVoidMethod(mJavaFrame->frame(env).get(), mJavaFrame->mLoadStarted, urlStr, favicon,
563 if (favicon)
564 env->DeleteLocalRef(favicon);
    [all...]
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 211 public void onPageStarted(WebView view, String url, Bitmap favicon) {
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 222 public void onPageStarted(WebView view, String url, Bitmap favicon) {
TestShellActivity.java 501 public void onPageStarted(WebView view, String url, Bitmap favicon) {
504 super.onPageStarted(view, url, favicon);
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 161 milliseconds