HomeSort by relevance Sort by last modified time
    Searched refs:images_ (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/gtk/
nine_box.cc 66 images_[0] = top_left ? &rb.GetNativeImageNamed(top_left) : NULL;
67 images_[1] = top ? &rb.GetNativeImageNamed(top) : NULL;
68 images_[2] = top_right ? &rb.GetNativeImageNamed(top_right) : NULL;
69 images_[3] = left ? &rb.GetNativeImageNamed(left) : NULL;
70 images_[4] = center ? &rb.GetNativeImageNamed(center) : NULL;
71 images_[5] = right ? &rb.GetNativeImageNamed(right) : NULL;
72 images_[6] = bottom_left ? &rb.GetNativeImageNamed(bottom_left) : NULL;
73 images_[7] = bottom ? &rb.GetNativeImageNamed(bottom) : NULL;
74 images_[8] = bottom_right ? &rb.GetNativeImageNamed(bottom_right) : NULL;
87 images_[0] = new gfx::Image(gdk_pixbuf_new_subpixbuf
    [all...]
nine_box.h 50 gfx::Image* images_[9]; member in class:NineBox
  /external/chromium/chrome/browser/ui/gtk/
nine_box.cc 55 images_[0] = top_left ? rb.GetPixbufNamed(top_left) : NULL;
56 images_[1] = top ? rb.GetPixbufNamed(top) : NULL;
57 images_[2] = top_right ? rb.GetPixbufNamed(top_right) : NULL;
58 images_[3] = left ? rb.GetPixbufNamed(left) : NULL;
59 images_[4] = center ? rb.GetPixbufNamed(center) : NULL;
60 images_[5] = right ? rb.GetPixbufNamed(right) : NULL;
61 images_[6] = bottom_left ? rb.GetPixbufNamed(bottom_left) : NULL;
62 images_[7] = bottom ? rb.GetPixbufNamed(bottom) : NULL;
63 images_[8] = bottom_right ? rb.GetPixbufNamed(bottom_right) : NULL;
76 images_[0] = gdk_pixbuf_new_subpixbuf(pixbuf, 0, 0, left_margin, top_margin)
    [all...]
nine_box.h 46 // Change all pixels that are white in |images_| to have 0 opacity.
57 GdkPixbuf* images_[9]; member in class:NineBox
  /external/chromium_org/ui/views/
painter.cc 127 gfx::ImageSkia images_[9]; member in class:views::__anon16943::ImagePainter
136 images_[i] = *rb.GetImageSkiaNamed(image_ids[i]);
144 // Extract subsets of the original image to match the |images_| format.
152 images_[i + j * 3] = gfx::ImageSkiaOperations::ExtractSubset(image,
162 return images_[0].isNull();
167 images_[0].width() + images_[1].width() + images_[2].width(),
168 images_[0].height() + images_[3].height() + images_[6].height())
    [all...]
painter.h 103 const gfx::ImageSkia* images_[3]; member in class:views::HorizontalPainter
  /external/chromium_org/chrome/browser/ui/cocoa/
nine_part_button_cell.h 22 base::scoped_nsobject<NSMutableArray> images_; variable
  /external/chromium/chrome/browser/history/
top_sites_cache.cc 24 images_ = images;
30 Images& img = images_[GetCanonicalURL(url)];
36 return &images_[GetCanonicalURL(url)];
42 images_.find(GetCanonicalURL(url));
43 if (found != images_.end()) {
53 images_.find(GetCanonicalURL(url));
54 if (found != images_.end()) {
76 for (URLToImagesMap::iterator i = images_.begin(); i != images_.end(); ) {
82 images_.erase(i)
    [all...]
top_sites_cache.h 32 const URLToImagesMap& images() const { return images_; }
101 URLToImagesMap images_; member in class:history::TopSitesCache
  /external/chromium_org/ui/base/resource/
resource_bundle_gtk.cc 82 if (images_.count(key))
83 return images_[key];
107 if (images_.count(key))
108 return images_[key];
110 images_[key] = image;
111 return images_[key];
resource_bundle.cc 315 if (images_.count(resource_id))
316 return images_[resource_id];
353 if (images_.count(resource_id))
354 return images_[resource_id];
356 images_[resource_id] = image;
357 return images_[resource_id];
509 images_.clear();
  /external/chromium_org/ui/views/bubble/
bubble_border.cc 142 images_ = GetBorderImages(shadow);
155 const int min = 2 * images_->border_thickness;
156 const int min_with_arrow_width = min + images_->top_arrow.width();
157 const int min_with_arrow_thickness = images_->border_thickness +
158 std::max(images_->arrow_thickness + images_->border_interior_thickness,
159 images_->border_thickness);
174 images_->arrow_interior_thickness + kStroke - images_->arrow_thickness;
207 return images_->border_thickness - images_->border_interior_thickness
    [all...]
  /external/chromium_org/ui/views/controls/button/
image_button.cc 37 return images_[state];
41 images_[state] = image ? *image : gfx::ImageSkia();
77 if (!images_[STATE_NORMAL].isNull()) {
78 size = gfx::Size(images_[STATE_NORMAL].width(),
79 images_[STATE_NORMAL].height());
112 if (!images_[STATE_HOVERED].isNull() && hover_animation_->is_animating()) {
113 img = gfx::ImageSkiaOperations::CreateBlendedImage(images_[STATE_NORMAL],
114 images_[STATE_HOVERED], hover_animation_->GetCurrentValue());
116 img = images_[state_];
119 return !img.isNull() ? img : images_[STATE_NORMAL]
    [all...]
checkbox.cc 111 images_[checked_index][focused_index][for_state].isNull())
112 return images_[checked_index][focused_index][STATE_NORMAL];
113 return images_[checked_index][focused_index][for_state];
122 images_[checked_index][focused_index][for_state] = image;
checkbox.h 61 gfx::ImageSkia images_[2][2][STATE_COUNT]; member in class:views::Checkbox
image_button.h 76 gfx::ImageSkia images_[STATE_COUNT]; member in class:views::ImageButton
132 // The parent class's images_ member is used for the current images,
  /external/chromium_org/chrome/browser/history/
top_sites_cache.cc 24 images_ = images;
28 return &images_[GetCanonicalURL(url)];
35 images_.find(GetCanonicalURL(url));
36 if (found != images_.end()) {
49 images_.find(GetCanonicalURL(url));
50 if (found != images_.end()) {
top_sites_cache.h 28 const URLToImagesMap& images() const { return images_; }
90 URLToImagesMap images_; member in class:history::TopSitesCache
  /external/chromium_org/ui/views/controls/
slider.cc 160 images_[i] = rb.GetImageNamed(bar_active_images_[i]).ToImageSkia();
164 images_[i] = rb.GetImageNamed(bar_disabled_images_[i]).ToImageSkia();
166 bar_height_ = images_[LEFT]->height();
199 int middle = std::max(full, images_[LEFT]->width());
203 canvas->DrawImageInt(*images_[LEFT], 0, 0);
204 canvas->DrawImageInt(*images_[RIGHT],
205 bar_width - images_[RIGHT]->width(),
207 canvas->TileImageInt(*images_[CENTER_LEFT],
208 images_[LEFT]->width(),
210 middle - images_[LEFT]->width()
    [all...]
slider.h 122 const gfx::ImageSkia* images_[4]; member in class:views::Slider
  /external/chromium_org/ui/views/controls/scrollbar/
bitmap_scroll_bar.h 81 gfx::ImageSkia* images_[PART_COUNT][CustomButton::STATE_COUNT]; member in class:views::BitmapScrollBar
bitmap_scroll_bar.cc 138 return scroll_bar_->images_[BitmapScrollBar::THUMB_START_CAP][GetState()];
143 return scroll_bar_->images_[BitmapScrollBar::THUMB_END_CAP][GetState()];
149 return scroll_bar_->images_[BitmapScrollBar::THUMB_MIDDLE][GetState()];
155 return scroll_bar_->images_[BitmapScrollBar::THUMB_GRIPPY]
205 images_[part][state] = image_skia;
293 canvas->TileImageInt(*images_[THUMB_TRACK][GetThumbTrackState()],
  /external/chromium_org/ppapi/proxy/
ppb_image_data_proxy.cc 139 ImageDataCacheEntry images_[kCacheSize]; member in class:ppapi::proxy::__anon11880::ImageDataInstanceCache
151 if (!images_[i].usable)
153 if (images_[i].image->type() != type)
155 const PP_ImageDataDesc& desc = images_[i].image->desc();
158 scoped_refptr<ImageData> ret(images_[i].image);
159 images_[i] = ImageDataCacheEntry();
171 images_[next_insertion_point_] = ImageDataCacheEntry(image_data);
177 if (images_[i].image.get() == image_data) {
178 images_[i].usable = true;
199 if (images_[i].image.get())
    [all...]
  /external/chromium_org/chrome/browser/resources/image_loader/
image_loader_client.js 213 this.images_ = [];
251 this.images_.sort(function(a, b) {
255 while (this.images_.length > 0 &&
257 var entry = this.images_.pop();
273 if (this.images_[key])
284 this.images_[key] = {lastLoadTimestamp: Date.now(),
300 if (!(key in this.images_))
303 var entry = this.images_[key];
329 if (!(key in this.images_))
332 var entry = this.images_[key]
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
constrained_window_views.cc 189 return images_[part_id];
200 images_[i] = rb.GetImageSkiaNamed(id);
206 static gfx::ImageSkia* images_[FRAME_PART_IMAGE_COUNT]; member in class:XPWindowResources
220 return images_[part_id];
231 images_[i] = rb.GetImageSkiaNamed(id);
237 static gfx::ImageSkia* images_[FRAME_PART_IMAGE_COUNT]; member in class:VistaWindowResources
242 gfx::ImageSkia* XPWindowResources::images_[]; member in class:XPWindowResources
243 gfx::ImageSkia* VistaWindowResources::images_[]; member in class:VistaWindowResources

Completed in 424 milliseconds

1 2