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

  /packages/apps/Browser/src/com/android/browser/
BookmarkUtils.java 60 static Bitmap createIcon(Context context, Bitmap touchIcon, Bitmap favicon,
66 return createIcon(context, touchIcon, favicon, type, iconDimension, iconDensity);
81 private static Bitmap createIcon(Context context, Bitmap touchIcon,
88 if (touchIcon != null) {
89 drawTouchIconToCanvas(touchIcon, canvas, iconBounds);
115 Bitmap touchIcon, Bitmap favicon) {
120 i.putExtra(Intent.EXTRA_SHORTCUT_ICON, createIcon(context, touchIcon, favicon,
159 private static void drawTouchIconToCanvas(Bitmap touchIcon, Canvas canvas, Rect iconBounds) {
160 Rect src = new Rect(0, 0, touchIcon.getWidth(), touchIcon.getHeight())
    [all...]
BrowserBookmarksPage.java 456 Bitmap touchIcon = getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_TOUCH_ICON);
458 return BookmarkUtils.createAddToHomeIntent(context, url, title, touchIcon, favicon);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
BookmarkUtils.java 135 * @param touchIcon Touch icon bitmap.
139 Context context, Bitmap touchIcon, Canvas canvas) {
141 Rect src = new Rect(0, 0, touchIcon.getWidth(), touchIcon.getHeight());
144 canvas.drawBitmap(touchIcon, src, iconBounds, paint);

Completed in 90 milliseconds