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

  /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);
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...]
  /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...]
  /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 61 milliseconds