HomeSort by relevance Sort by last modified time
    Searched full:favicon (Results 1 - 25 of 68) sorted by null

1 2 3

  /cts/tests/assets/webkit/
test_favicon.html 18 <title>test favicon</title>
19 <link rel="icon" type="image/png" href="favicon.png">
22 <h3>hello favicon!</h3><br>
  /external/webkit/LayoutTests/http/tests/appcache/resources/
non-html.manifest 7 /favicon.ico
  /packages/apps/Browser/res/values/
all_search_engines.xml 29 - Favicon URL
42 <item>http://uk.search.yahoo.com/favicon.ico</item>
50 <item>http://search.yahoo.co.jp/favicon.ico</item>
58 <item>http://www.rambler.ru/favicon.ico</item>
66 <item>http://br.search.yahoo.com/favicon.ico</item>
98 <item>http://uk.ask.com/favicon.ico</item>
106 <item>http://nate.search.empas.com/favicon.ico</item>
114 <item>http://busca.uol.com.br/favicon.ico</item>
122 <item>http://www.baidu.com/favicon.ico</item>
130 <item>http://ch.search.yahoo.com/favicon.ico</item
    [all...]
  /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) {
  /packages/apps/Browser/src/com/android/browser/
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...]
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);
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...]
CombinedBookmarkHistoryActivity.java 134 // Do this every time we launch the activity in case a new favicon was
139 Browser.BookmarkColumns.FAVICON + " is NULL",
TitleBar.java 98 mFavicon = (ImageView) findViewById(R.id.favicon);
251 * Set a new Bitmap for the Favicon.
  /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);
  /packages/apps/Browser/tools/
all_search_engines.template.xml 29 - Favicon URL
  /external/proguard/docs/
index.html 11 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
  /build/tools/droiddoc/templates/
head_tag.cs 3 <link rel="shortcut icon" type="image/x-icon" href="<?cs var:toroot ?>favicon.ico" />
  /build/tools/droiddoc/templates-pdk/
head_tag.cs 3 <link rel="shortcut icon" type="image/x-icon" href="<?cs var:toroot ?>assets-pdk/favicon.ico" />
  /packages/apps/Browser/res/layout/
add_new_bookmark.xml 28 <ImageView android:id="@+id/favicon"
history_item.xml 28 <ImageView android:id="@+id/favicon"
tab_view.xml 26 <ImageView android:id="@+id/favicon"
title_bar.xml 51 <ImageView android:id="@+id/favicon"
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewClientTest.java 319 public void onPageStarted(WebView view, String url, Bitmap favicon) {
320 super.onPageStarted(view, url, favicon);
  /frameworks/base/core/java/android/provider/
Browser.java 73 BookmarkColumns.FAVICON, BookmarkColumns.THUMBNAIL,
148 * Stores a Bitmap extra in an {@link Intent} representing the favicon of a
150 * Browser, use this to access the favicon.
600 public static final String FAVICON = "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);
  /external/webkit/WebKit/gtk/tests/
testwebview.c 49 if (g_str_equal(path, "/favicon.ico")) {

Completed in 696 milliseconds

1 2 3