OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:best_bitmap
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/favicon/
favicon_util.cc
92
SkBitmap
best_bitmap
;
local
98
} else if (
best_bitmap
.isNull()) {
99
best_bitmap
= input_bitmap;
100
} else if (input_bitmap.width() >=
best_bitmap
.width() &&
101
input_bitmap.height() >=
best_bitmap
.height()) {
102
if (
best_bitmap
.width() < desired_size_in_pixel ||
103
best_bitmap
.height() < desired_size_in_pixel) {
104
best_bitmap
= input_bitmap;
109
best_bitmap
= input_bitmap;
114
if (desired_size_in_pixel %
best_bitmap
.width() == 0 &
[
all
...]
/external/chromium_org/ui/gfx/
icon_util.cc
77
SkBitmap
best_bitmap
= best->AsBitmap();
local
80
if (
best_bitmap
.config() != SkBitmap::kARGB_8888_Config)
83
best_bitmap
, skia::ImageOperations::RESIZE_LANCZOS3,
Completed in 106 milliseconds