OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitmap_b
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/chrome/browser/sync/test/integration/
bookmarks_helper.cc
146
// Checks if the favicon data in |bitmap_a| and |
bitmap_b
| are equivalent.
148
bool FaviconBitmapsMatch(const SkBitmap& bitmap_a, const SkBitmap&
bitmap_b
) {
149
if (bitmap_a.getSize() == 0U &&
bitmap_b
.getSize() == 0U)
151
if ((bitmap_a.getSize() !=
bitmap_b
.getSize()) ||
152
(bitmap_a.width() !=
bitmap_b
.width()) ||
153
(bitmap_a.height() !=
bitmap_b
.height())) {
156
<<
bitmap_b
.getSize() << " (" <<
bitmap_b
.width() << "x"
157
<<
bitmap_b
.height() << ")";
161
SkAutoLockPixels bitmap_lock_b(
bitmap_b
);
296
SkBitmap
bitmap_b
= image_b.AsImageSkia().GetRepresentation(
local
[
all
...]
Completed in 606 milliseconds