HomeSort by relevance Sort by last modified time
    Searched refs:width_ (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/gfx/
size.h 25 Size() : width_(0), height_(0) {}
37 int width() const { return width_; }
40 int GetArea() const { return width_ * height_; }
48 set_width(width_ + width);
56 return width_ == s.width_ && height_ == s.height_;
65 return (width_ == 0) || (height_ == 0);
75 int width_; member in class:gfx::Size
size.cc 40 s.cx = width_;
46 return CGSizeMake(width_, height_);
55 width_ = width;
  /external/skia/src/images/
bmpdecoderhelper.cpp 55 width_ = GetInt();
70 width_ = GetShort();
79 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
82 if (width_ * height_ > max_pixels) {
136 rowLen = width_ * 4;
139 rowLen = width_ * 3;
141 rowLen = width_ * 2;
143 rowLen = width_;
145 rowLen = width_ / 2
    [all...]
bmpdecoderhelper.h 102 int width_; member in class:image_codec::BmpDecoderHelper

Completed in 82 milliseconds