/external/chromium_org/ui/gfx/ |
size_base.h | 16 Type width() const { return width_; } 19 Type GetArea() const { return width_ * height_; } 27 set_width(width_ + width); 32 width_ = width < 0 ? 0 : width; 39 width_ = width_ <= other.width_ ? width_ : other.width_; 44 width_ = width_ >= other.width_ ? width_ : other.width_ [all...] |
box_f.cc | 14 width_, 20 return (width_ == 0 && height_ == 0) || 21 (width_ == 0 && depth_ == 0) || 41 width_ = max_x - min_x;
|
box_f.h | 18 : width_(0.f), 23 : width_(width < 0 ? 0 : width), 29 width_(width < 0 ? 0 : width), 35 width_(width < 0 ? 0 : width), 49 set_size(width_ * x_scale, height_ * y_scale, depth_ * z_scale); 75 float width() const { return width_; } 76 void set_width(float width) { width_ = width < 0 ? 0 : width; } 89 width_ = width < 0 ? 0 : width; 99 float width_;
|
/external/chromium_org/ash/system/tray/ |
fixed_sized_image_view.cc | 11 : width_(width), 22 return gfx::Size(width_ ? width_ : size.width(),
|
fixed_sized_image_view.h | 26 int width_; member in class:ash::internal::FixedSizedImageView
|
tray_bar_button_with_title.h | 40 int width_; member in class:ash::internal::TrayBarButtonWithTitle
|
/external/chromium_org/third_party/skia/src/images/ |
bmpdecoderhelper.cpp | 48 width_ = GetInt(); 63 width_ = GetShort(); 72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) { 75 if (width_ * height_ > max_pixels) { 129 rowLen = width_ * 4; 132 rowLen = width_ * 3; 134 rowLen = width_ * 2; 136 rowLen = width_; 138 rowLen = width_ / 2 [all...] |
/external/skia/src/images/ |
bmpdecoderhelper.cpp | 48 width_ = GetInt(); 63 width_ = GetShort(); 72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) { 75 if (width_ * height_ > max_pixels) { 129 rowLen = width_ * 4; 132 rowLen = width_ * 3; 134 rowLen = width_ * 2; 136 rowLen = width_; 138 rowLen = width_ / 2 [all...] |
/external/chromium_org/chrome/browser/chromeos/power/ |
idle_action_warning_dialog_view.cc | 35 int width_; member in class:chromeos::__anon7021::FixedWidthLabel 42 width_(width) { 51 return gfx::Size(width_, GetHeightForWidth(width_));
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
errorcode.cc | 40 width_(width), 62 width_ == err.width_ && 89 } else if (width_ != err.width_) { 90 return width_ < err.width_;
|
/frameworks/base/media/mca/filterfw/native/core/ |
gl_frame.cpp | 40 width_(0), 58 if (width_ == 0 && height_ == 0) { 82 width_ = 0; 88 width_ = width; 197 target->Init(width_, height_); 205 } else if (frame && frame->width_ == width_ && frame->height_ == height_) { 215 return width_ * height_ * 4; 310 width_, 352 width_, [all...] |
/external/chromium_org/ppapi/examples/scaling/ |
scaling.cc | 30 width_(0), 43 if (view_rect.width() == width_ && 49 width_ = view_rect.width(); 54 pixel_width_ = width_ * device_scale_; 85 stream << "DIP (" << width_ << ", " << height_ << "), device pixels=(" 131 device_context_ = pp::Graphics2D(this, pp::Size(width_, height_), true); 138 int width = using_device_pixels_ ? pixel_width_ : width_; 203 int width_; member in class:MyInstance
|
/external/chromium_org/chrome/browser/ui/views/ |
validation_message_bubble_delegate.h | 42 int width_; member in class:ValidationMessageBubbleDelegate
|
/external/libvpx/libvpx/test/ |
i420_video_source.h | 34 width_(0), 38 // This initializes raw_sz_, width_, height_ and allocates an img. 84 if (width != width_ || height != height_) { 88 width_ = width; 110 unsigned int width_; member in class:libvpx_test::I420VideoSource
|
sixtap_predict_test.cc | 66 width_ = GET_PARAM(0); 74 int width_; member in class:__anon22936::SixtapPredictTest 149 for (int j = 0; j < width_; ++j) 151 << "i==" << (i * width_ + j); 176 for (int j = 0; j < width_; ++j) 178 << "i==" << (i * width_ + j);
|
video_source.h | 87 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) { 122 if (width != width_ || height != height_) { 126 width_ = width; 138 unsigned int width_; member in class:libvpx_test::DummyVideoSource
|
/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) { 102 width_ = 0; 115 return width_; 125 return width_ * height_; 141 CHECK(index < width_ * height_); 149 CHECK(index < width_ * height_); 156 return x + width_*y; 191 outputfile << width_ << ' ' << height_ << " 255 " << std::endl; 194 int num_pixels = width_*height_ [all...] |
/external/chromium_org/content/browser/renderer_host/ |
gtk_plugin_container.cc | 21 width_ = width; 67 requisition->width = container->width_; 71 int width_; member in class:content::__anon10109::GtkPluginContainer
|
/frameworks/base/media/mca/filterpacks/native/base/ |
geometry.h | 73 SlantedRect() : width_(0.0f), height_(0.0f) {} 80 float width() const { return width_; } 84 float width_; member in class:android::filterfw::SlantedRect
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
fakevideorenderer.h | 42 width_(0), 50 width_ = width; 63 frame->GetWidth() != static_cast<size_t>(width_) || 74 int width() const { return width_; } 133 int width_; member in class:cricket::FakeVideoRenderer
|
/external/chromium_org/chrome/browser/chromeos/login/ |
login_web_dialog.cc | 50 width_ = static_cast<int>(kDefaultWidthRatio * screen_bounds.width()); 67 width_ = width; 95 size->SetSize(width_, height_);
|
/external/chromium_org/ppapi/examples/mouse_cursor/ |
mouse_cursor.cc | 28 : pp::Instance(instance), width_(0), height_(0) { 36 width_ = view.GetRect().width(); 77 int width_; member in class:MyInstance
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
videotrackrenderers.cc | 32 : width_(0), 68 width_ = width; 86 it->renderer_->SetSize(width_, height_);
|
videotrackrenderers.h | 67 int width_; member in class:webrtc::VideoTrackRenderers
|
/external/chromium_org/content/renderer/pepper/ |
ppb_image_data_impl.cc | 32 width_(0), 62 width_ = width; 94 desc->size.width = width_; 96 desc->stride = width_ * 4; 131 : width_(0), 150 width_ = width; 152 uint32 buffer_size = width_ * height_ * 4; 193 mapped_canvas_.reset(dib_->GetPlatformCanvas(width_, height_));
|