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

1 2 3 4 5

  /external/chromium_org/ui/gfx/
size_base.h 17 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_ = height_ >= other.height_ ? height_ : other.height_
    [all...]
box_f.cc 15 height_,
20 return (width_ == 0 && height_ == 0) ||
22 (height_ == 0 && depth_ == 0);
42 height_ = max_y - min_y;
box_f.h 19 height_(0.f),
24 height_(height < 0 ? 0 : height),
30 height_(height < 0 ? 0 : height),
36 height_(height < 0 ? 0 : height),
49 set_size(width_ * x_scale, height_ * y_scale, depth_ * z_scale);
78 float height() const { return height_; }
79 void set_height(float height) { height_ = height < 0 ? 0 : height; }
90 height_ = height < 0 ? 0 : height;
100 float height_;
  /external/chromium_org/ash/system/tray/
fixed_sized_image_view.cc 12 height_(height) {
23 height_ ? height_ : size.height());
fixed_sized_image_view.h 27 int height_; member in class:ash::internal::FixedSizedImageView
  /external/chromium/chrome/browser/ui/cocoa/
view_resizer_pong.h 15 CGFloat height_; variable
  /external/chromium_org/chrome/browser/ui/cocoa/
view_resizer_pong.h 14 CGFloat height_; variable
  /external/chromium_org/ppapi/examples/mouse_cursor/
mouse_cursor.cc 28 : pp::Instance(instance), width_(0), height_(0) {
37 height_ = view.GetRect().height();
57 if (point.y() < height_ / segments) {
60 } else if (point.y() < (height_ / segments) * 2) {
78 int height_; member in class:MyInstance
  /external/chromium_org/third_party/skia/src/images/
bmpdecoderhelper.cpp 49 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/
bmpdecoderhelper.cpp 49 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...]
  /frameworks/base/media/mca/filterfw/native/core/
gl_frame.cpp 41 height_(0),
58 if (width_ == 0 && height_ == 0) {
83 height_ = 0;
89 height_ = height;
197 target->Init(width_, height_);
205 } else if (frame && frame->width_ == width_ && frame->height_ == height_) {
215 return width_ * height_ * 4;
311 height_,
353 height_,
    [all...]
  /external/chromium/chrome/browser/ui/gtk/download/
download_started_animation_gtk.cc 61 int height_; member in class:__anon5022::DownloadStartedAnimationGtk
90 height_ = gdk_pixbuf_get_height(kDownloadImage);
95 if (tab_contents_bounds_.height() < height_)
115 GdkBitmap* mask = gdk_pixmap_new(NULL, width_, height_, 1);
143 height_ - height_ * (1 - GetCurrentValue())));
  /external/chromium_org/ppapi/examples/scaling/
scaling.cc 31 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/chrome/browser/ui/views/
validation_message_bubble_delegate.h 43 int height_; member in class:ValidationMessageBubbleDelegate
  /external/libvpx/libvpx/test/
i420_video_source.h 35 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
video_source.h 87 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) {
122 if (width != width_ || height != height_) {
127 height_ = height;
139 unsigned int height_; member in class:libvpx_test::DummyVideoSource
  /external/chromium_org/content/browser/renderer_host/
gtk_plugin_container.cc 22 height_ = height;
68 requisition->height = container->height_;
72 int height_; member in class:content::__anon10109::GtkPluginContainer
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.h 73 SlantedRect() : width_(0.0f), height_(0.0f) {}
81 float height() const { return height_; }
85 float height_; member in class:android::filterfw::SlantedRect
  /external/chromium_org/chrome/browser/extensions/
extension_infobar_delegate.cc 69 height_ = std::max(0, height);
70 height_ = std::min(2 * default_height, height_);
71 if (height_ == 0)
72 height_ = default_height;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
fakevideorenderer.h 43 height_(0),
51 height_ = height;
64 frame->GetHeight() != static_cast<size_t>(height_)) {
75 int height() const { return height_; }
134 int height_; member in class:cricket::FakeVideoRenderer
  /external/ceres-solver/examples/
pgm_image.h 87 int height_, width_; member in class:ceres::examples::PGMImage
95 : height_(height), width_(width), data_(width*height, 0.0) {
101 height_ = 0;
120 return height_;
125 return width_ * height_;
141 CHECK(index < width_ * height_);
149 CHECK(index < width_ * height_);
191 outputfile << width_ << ' ' << height_ << " 255 " << std::endl;
194 int num_pixels = width_*height_;
246 !GetIgnoreComment(&inputfile, height_) ||
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/download/
download_started_animation_gtk.cc 70 int height_; member in class:__anon8528::DownloadStartedAnimationGtk
101 height_ = gdk_pixbuf_get_height(kDownloadImage);
106 if (web_contents_bounds_.height() < height_)
126 GdkBitmap* mask = gdk_pixmap_new(NULL, width_, height_, 1);
156 height_ - height_ * (1 - GetCurrentValue())));
  /external/chromium_org/chrome/browser/chromeos/login/
login_web_dialog.cc 51 height_ = static_cast<int>(kDefaultHeightRatio * screen_bounds.height());
68 height_ = height;
95 size->SetSize(width_, height_);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
videotrackrenderers.cc 33 height_(0),
69 height_ = height;
86 it->renderer_->SetSize(width_, height_);
videotrackrenderers.h 68 int height_; member in class:webrtc::VideoTrackRenderers

Completed in 2072 milliseconds

1 2 3 4 5