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

  /external/chromium/base/gfx/
size.h 25 Size() : width_(0), height_(0) {}
38 int height() const { return height_; }
40 int GetArea() const { return width_ * height_; }
49 set_height(height_ + height);
56 return width_ == s.width_ && height_ == s.height_;
65 return (width_ == 0) || (height_ == 0);
76 int height_; member in class:gfx::Size
size.cc 41 s.cy = height_;
46 return CGSizeMake(width_, height_);
63 height_ = height;
  /external/skia/src/images/
bmpdecoderhelper.cpp 56 height_ = GetInt();
71 height_ = GetShort();
75 if (height_ < 0) {
76 height_ = -height_;
79 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
82 if (width_ * height_ > max_pixels) {
168 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) {
172 output_ = callback->SetSize(width_, height_);
    [all...]
bmpdecoderhelper.h 103 int height_; member in class:image_codec::BmpDecoderHelper
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
minimize.h 327 for (size_t i = height_.size(); i <= (size_t)s; ++i)
328 height_.push_back(-1);
346 if (height_[arc.nextstate] + 1 > height_[s])
347 height_[s] = height_[arc.nextstate] + 1;
353 if (height_[s] == -1) height_[s] = 0;
354 StateId h = height_[s] + 1;
356 if (h > height_[parent]) height_[parent] = h
371 vector<StateId> height_; member in class:fst::AcyclicMinimizer::HeightVisitor
    [all...]

Completed in 58 milliseconds