Searched refs:image_ (Results 1 - 25 of 100) sorted by relevance

1234

/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
H A Dpacket_manipulator_unittest.cc31 EncodedImage image_; member in class:webrtc::test::PacketManipulatorTest
36 image_._buffer = packet_data_;
37 image_._length = kPacketDataLength;
38 image_._size = kPacketDataLength;
67 EXPECT_EQ(expected_packet_data_length, static_cast<int>(image_._length));
79 int nbr_packets_dropped = manipulator.ManipulatePackets(&image_);
81 packet_data_, image_);
86 image_._length = data_length;
88 int nbr_packets_dropped = manipulator.ManipulatePackets(&image_);
91 packet_data_, image_);
[all...]
/external/chromium_org/content/browser/web_contents/aura/
H A Dimage_window_delegate.cc26 image_ = image;
27 if (!window_size_.IsEmpty() && !image_.IsEmpty())
28 size_mismatch_ = window_size_ != image_.AsImageSkia().size();
42 if (!image_.IsEmpty())
43 size_mismatch_ = window_size_ != image_.AsImageSkia().size();
68 if (image_.IsEmpty()) {
73 canvas->DrawImageInt(image_.AsImageSkia(), 0, 0);
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dmouse_cursor.cc22 : image_(image),
24 assert(0 <= hotspot_.x() && hotspot_.x() <= image_->size().width());
25 assert(0 <= hotspot_.y() && hotspot_.y() <= image_->size().height());
H A Dmouse_cursor.h33 void set_image(DesktopFrame* image) { image_.reset(image); }
34 const DesktopFrame* image() const { return image_.get(); }
40 scoped_ptr<DesktopFrame> image_; member in class:webrtc::MouseCursor
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dvdso_support.h80 bool IsPresent() const { return image_.IsPresent(); }
83 SymbolIterator begin() const { return image_.begin(); }
84 SymbolIterator end() const { return image_.end(); }
110 // image_ represents VDSO ELF image in memory.
111 // image_.ehdr_ == NULL implies there is no VDSO.
112 ElfMemImage image_; member in class:base::VDSOSupport
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dvdso_support.h80 bool IsPresent() const { return image_.IsPresent(); }
83 SymbolIterator begin() const { return image_.begin(); }
84 SymbolIterator end() const { return image_.end(); }
110 // image_ represents VDSO ELF image in memory.
111 // image_.ehdr_ == NULL implies there is no VDSO.
112 ElfMemImage image_; member in class:base::VDSOSupport
/external/chromium_org/athena/system/
H A Dbackground_controller.cc27 image_ = image;
38 canvas->DrawImageInt(image_,
41 image_.width(),
42 image_.height(),
51 gfx::ImageSkia image_; member in class:athena::BackgroundView
/external/chromium_org/ui/message_center/views/
H A Dproportional_image_view.cc14 : image_(image), max_size_(max_size) {}
35 gfx::Size image_size(image_.size());
38 canvas->DrawImageInt(image_, draw_bounds.x(), draw_bounds.y());
45 image_,
57 GetContentsBounds().size(), image_.size());
/external/chromium_org/ui/app_list/views/
H A Dcached_label.cc19 if (image_.size() == size() && !needs_repaint_)
33 image_ = gfx::ImageSkia(canvas.ExtractImageRep());
40 canvas->DrawImageInt(image_, 0, 0);
H A Dcached_label.h39 gfx::ImageSkia image_; member in class:app_list::CachedLabel
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dthumbnail_loader.js162 this.image_ = new Image();
163 this.image_.onload = function() {
166 opt_onSuccess(this.image_, this.transform_);
168 this.image_.onerror = function() {
180 if (this.image_.src) {
192 this.image_,
215 this.image_.onload = function() {};
216 this.image_.onerror = function() {};
226 return !!(this.image_ && this.image_
[all...]
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dicon_label_bubble_view.cc25 image_(new views::ImageView()),
29 image_->SetImage(
33 // Disable separate hit testing for |image_|. This prevents views treating
34 // |image_| as a separate mouse hover region from |this|.
35 image_->set_interactive(false);
36 AddChildView(image_);
78 image_->SetImage(image_skia);
87 image_->SetBounds(GetBubbleOuterPadding(!is_extension_icon_), 0,
88 image_->GetPreferredSize().width(), height());
126 const int image_width = image_
[all...]
/external/chromium_org/media/tools/player_x11/
H A Dx11_video_renderer.cc74 image_(NULL),
80 if (image_)
81 XDestroyImage(image_);
88 if (!image_)
97 if (image_->width != coded_width || image_->height != coded_height) {
98 XDestroyImage(image_);
99 image_ = CreateImage(display_, coded_width, coded_height);
109 DCHECK(image_->data);
117 (uint8*)image_
[all...]
/external/chromium_org/media/cast/test/
H A Dlinux_output_window.cc100 image_ = XShmCreateImage(
103 IPC_PRIVATE, (image_->bytes_per_line * image_->height), IPC_CREAT | 0777);
104 shminfo_.shmaddr = image_->data = (char*)shmat(shminfo_.shmid, 0, 0);
105 if (image_->data == reinterpret_cast<char*>(-1)) {
121 CHECK_LE(video_frame->coded_size().width(), image_->width);
122 CHECK_LE(video_frame->coded_size().height(), image_->height);
129 reinterpret_cast<uint8_t*>(image_->data),
130 image_->bytes_per_line,
138 image_,
[all...]
/external/chromium_org/ui/views/controls/
H A Dimage_view.cc48 image_ = img;
64 return image_;
82 image_size_ : gfx::Size(image_.width(), image_.height()));
102 return gfx::Size(image_.width() + insets.width(),
103 image_.height() + insets.height());
112 return image_.BackedBySameObjectAs(img) &&
216 if (image_.isNull())
223 if (image_bounds.size() != gfx::Size(image_.width(), image_
[all...]
/external/chromium_org/ash/desktop_background/
H A Dwallpaper_resizer.h35 const gfx::ImageSkia& image() const { return image_; }
48 // Copies |resized_bitmap| to |image_| and notifies observers after Resize()
57 gfx::ImageSkia image_; member in class:ash::WallpaperResizer
59 // Unique identifier corresponding to the original (i.e. pre-resize) |image_|.
/external/chromium_org/chrome/browser/
H A Dicon_loader.cc47 if (delegate_->OnImageLoaded(this, image_.get(), group_))
48 ignore_result(image_.release()); // Can't ignore return value.
H A Dimage_holder.h48 gfx::Image low_dpi_image() { return gfx::Image(image_); }
58 gfx::ImageSkia image_; member in class:chrome::ImageHolder
/external/chromium_org/components/user_manager/user_image/
H A Duser_image.h40 const gfx::ImageSkia& image() const { return image_; }
62 gfx::ImageSkia image_; member in class:user_manager::UserImage
/external/chromium_org/ash/system/chromeos/
H A Dtray_tracing.cc34 image_ = new FixedSizedImageView(0, kTrayPopupItemHeight);
35 image_->SetImage(
37 AddChildView(image_);
55 views::ImageView* image_; member in class:ash::tray::DefaultTracingView
/external/chromium_org/ash/system/tray/
H A Dtray_bar_button_with_title.cc65 image_(new TrayBarButton(kBarImagesActive, kBarImagesDisabled)),
68 AddChildView(image_);
84 image_->Update(control_on);
98 image_->SetBoundsRect(bar_image_rect);
100 // The image_ has some empty space below the bar image, move the title
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/
H A Dimage_decoration.h30 base::scoped_nsobject<NSImage> image_; member in class:ImageDecoration
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dgtkvideorenderer.cc79 image_.reset(new uint8[width * height * 4]);
91 image_.get(),
109 image_.get(),
133 image_.reset(new uint8[width * height * 4]);
H A Dgtkvideorenderer.h59 rtc::scoped_ptr<uint8[]> image_; member in class:cricket::GtkVideoRenderer
/external/chromium_org/base/files/
H A Dmemory_mapped_file_win.cc13 MemoryMappedFile::MemoryMappedFile() : data_(NULL), length_(0), image_(false) {
17 image_ = true;
28 int flags = image_ ? SEC_IMAGE | PAGE_READONLY : PAGE_READONLY;

Completed in 2581 milliseconds

1234