Searched refs:height_ (Results 1 - 25 of 181) sorted by relevance

12345678

/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dsize.js27 this.height_ = height;
38 return this.height_;
48 this.height_ == other.height_;
/external/chromium_org/ui/gfx/geometry/
H A Dsize_base.h17 Type height() const { return height_; }
19 Type GetArea() const { return width_ * height_; }
28 set_height(height_ + height);
35 height_ = height < 0 ? 0 : height;
40 height_ = height_ <= other.height_ ? height_ : other.height_;
45 height_
[all...]
H A Dbox_f.h22 height_(0.f),
27 height_(height < 0 ? 0 : height),
33 height_(height < 0 ? 0 : height),
39 height_(height < 0 ? 0 : height),
52 set_size(width_ * x_scale, height_ * y_scale, depth_ * z_scale);
81 float height() const { return height_; }
82 void set_height(float height) { height_ = height < 0 ? 0 : height; }
93 height_ = height < 0 ? 0 : height;
115 // height_, depth_), even if the box is empty. Emptiness checks are handled in
121 float height_;
[all...]
H A Dbox_f.cc18 height_,
23 return (width_ == 0 && height_ == 0) ||
25 (height_ == 0 && depth_ == 0);
42 height_ = max_y - min_y;
/external/chromium_org/ash/system/tray/
H A Dfixed_sized_image_view.cc11 height_(height) {
22 height_ ? height_ : size.height());
H A Dfixed_sized_image_view.h26 int height_; member in class:ash::FixedSizedImageView
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
H A Dvie_external_render_filter.h25 : width_(0), height_(0), renderer_(renderer) {}
33 if (width != width_ || height_ != height) {
36 height_ = height;
48 unsigned int height_; member in class:webrtc::ExternalRendererEffectFilter
/external/chromium_org/third_party/webrtc/common_video/libyuv/
H A Dscaler_unittest.cc43 const int height_; member in class:webrtc::TestScaler
54 height_(288),
55 half_height_(height_ / 2),
56 size_y_(width_ * height_),
58 frame_length_(CalcBufferSize(kI420, width_, height_)) {
67 test_frame_.CreateEmptyFrame(width_, height_,
97 EXPECT_EQ(0, test_scaler_.Set(width_, height_,
107 width_, height_,
110 EXPECT_GT(width_ * height_, test_frame2.allocated_size(kYPlane));
126 width_, height_,
[all...]
H A Dlibyuv_unittest.cc89 const int height_; member in class:webrtc::TestLibYuv
99 height_(288),
100 size_y_(width_ * height_),
101 size_uv_(((width_ + 1 ) / 2) * ((height_ + 1) / 2)),
119 width_, height_,
146 EXPECT_EQ(0,res_i420_frame.CreateEmptyFrame(width_, height_, width_,
154 width_, height_,
165 scoped_ptr<uint8_t[]> res_rgb_buffer2(new uint8_t[width_ * height_ * 3]);
170 res_i420_frame.CreateEmptyFrame(width_, height_, stride_y,
175 height_,
[all...]
/external/chromium_org/third_party/webrtc/tools/converter/
H A Dconverter.h34 int height_; // Height of the video (respectively of the RGBA frames). member in class:webrtc::test::Converter
38 return width_*height_;
43 return ((width_+1)/2)*((height_)/2);
48 return ((width_+1)/2)*((height_)/2);
73 return width_*height_*4;
/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
H A Dcontent_metrics_test.cc23 ca__c.Initialize(width_,height_);
24 ca__sse.Initialize(width_,height_);
31 width_, height_,
/external/chromium_org/third_party/webrtc/test/
H A Dframe_generator.cc25 : angle_(0.0), width_(width), height_(height) {
32 static_cast<int>(height_),
49 size_t height_; member in class:webrtc::test::__anon16174::ChromaGenerator
56 : file_(file), width_(width), height_(height) {
61 kI420, static_cast<int>(width_), static_cast<int>(height_));
78 static_cast<int>(height_),
88 static_cast<int>(height_),
98 size_t height_; member in class:webrtc::test::__anon16174::YuvFileGenerator
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dview_resizer_pong.h14 CGFloat height_; variable
/external/chromium_org/third_party/libwebp/dec/
H A Dalphai.h29 int height_; member in struct:ALPHDecoder
/external/webp/src/dec/
H A Dalphai.h29 int height_; member in struct:ALPHDecoder
/external/chromium_org/chrome/browser/extensions/
H A Dextension_infobar_delegate.cc57 height_ = std::max(0, height);
58 height_ = std::min(2 * infobars::InfoBar::kDefaultBarTargetHeight, height_);
59 if (height_ == 0)
60 height_ = infobars::InfoBar::kDefaultBarTargetHeight;
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc30 : pp::Instance(instance), width_(0), height_(0) {
39 height_ = view.GetRect().height();
59 if (point.y() < height_ / segments) {
62 } else if (point.y() < (height_ / segments) * 2) {
80 int height_; member in class:MyInstance
/external/chromium_org/third_party/skia/src/images/
H A Dbmpdecoderhelper.cpp49 height_ = GetInt();
64 height_ = GetShort();
68 if (height_ < 0) {
69 height_ = -height_;
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
75 if (width_ * height_ > max_pixels) {
161 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) {
165 output_ = callback->SetSize(width_, height_);
[all...]
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp49 height_ = GetInt();
64 height_ = GetShort();
68 if (height_ < 0) {
69 height_ = -height_;
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
75 if (width_ * height_ > max_pixels) {
161 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) {
165 output_ = callback->SetSize(width_, height_);
[all...]
/external/chromium_org/ppapi/examples/scaling/
H A Dscaling.cc31 height_(0),
44 view_rect.height() == height_ &&
50 height_ = view_rect.height();
55 pixel_height_ = height_ * device_scale_;
85 stream << "DIP (" << width_ << ", " << height_ << "), device pixels=("
131 device_context_ = pp::Graphics2D(this, pp::Size(width_, height_), true);
139 int height = using_device_pixels_ ? pixel_height_ : height_;
204 int height_; member in class:MyInstance
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h53 DesktopSize() : width_(0), height_(0) {}
55 : width_(width), height_(height) {
59 int32_t height() const { return height_; }
61 bool is_empty() const { return width_ <= 0 || height_ <= 0; }
64 return width_ == other.width_ && height_ == other.height_;
69 height_ = height;
74 int32_t height_; member in class:webrtc::DesktopSize
H A Ddiffer.h37 int height() { return height_; }
69 int height_; member in class:webrtc::Differ
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Di420_video_source.h35 height_(0),
38 // This initializes raw_sz_, width_, height_ and allocates an img.
84 if (width != width_ || height != height_) {
89 height_ = height;
111 unsigned int height_; member in class:libvpx_test::I420VideoSource
/external/libvpx/libvpx/test/
H A Di420_video_source.h35 height_(0),
38 // This initializes raw_sz_, width_, height_ and allocates an img.
84 if (width != width_ || height != height_) {
89 height_ = height;
111 unsigned int height_; member in class:libvpx_test::I420VideoSource
/external/chromium_org/third_party/webrtc/test/mac/
H A Dvideo_renderer_mac.mm23 int height_;
41 height_ = height;
59 nextYOrigin_ += height_;
61 if (nextYOrigin_ + height_ > screenFrame.size.height) {
67 NSRect windowFrame = NSMakeRect(xOrigin, yOrigin, width_, height_);
73 NSRect viewFrame = NSMakeRect(0, 0, width_, height_);

Completed in 2430 milliseconds

12345678