OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
152
* @param
touchIcon
Touch icon bitmap.
156
Context context, Bitmap
touchIcon
, Canvas canvas) {
158
Rect src = new Rect(0, 0,
touchIcon
.getWidth(),
touchIcon
.getHeight());
161
canvas.drawBitmap(
touchIcon
, src, iconBounds, paint);
Completed in 216 milliseconds