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

  /art/runtime/gc/accounting/
heap_bitmap.cc 27 ContinuousSpaceBitmap* new_bitmap) {
32 *it = new_bitmap;
36 LargeObjectBitmap* new_bitmap) {
40 *it = new_bitmap;
heap_bitmap.h 53 void ReplaceBitmap(ContinuousSpaceBitmap* old_bitmap, ContinuousSpaceBitmap* new_bitmap)
57 void ReplaceLargeObjectBitmap(LargeObjectBitmap* old_bitmap, LargeObjectBitmap* new_bitmap)
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_favicon_loader.cc 53 void AddFavicon(const GURL& image_url, const SkBitmap& new_bitmap);
140 const SkBitmap& new_bitmap) {
142 if (new_bitmap.height() > kMaxBitmapSize ||
143 new_bitmap.width() > kMaxBitmapSize)
145 if (new_bitmap.height() < ash::kShelfSize)
149 if (new_bitmap.height() > bitmap_.height())
153 bitmap_ = new_bitmap;
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer.cc 34 SkBitmap new_bitmap = orig_bitmap; local
48 orig_bitmap.extractSubset(&new_bitmap,
53 orig_bitmap.extractSubset(&new_bitmap,
57 new_bitmap = skia::ImageOperations::Resize(
82 new_bitmap = skia::ImageOperations::Resize(
89 *resized_bitmap_out = new_bitmap;
  /art/runtime/gc/space/
space.cc 121 accounting::ContinuousSpaceBitmap* new_bitmap = temp_bitmap_.release(); local
122 Runtime::Current()->GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap_.get(), new_bitmap);
124 mark_bitmap_.reset(new_bitmap);

Completed in 150 milliseconds