HomeSort by relevance Sort by last modified time
    Searched defs:height_ (Results 1 - 3 of 3) 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
  /external/skia/src/images/
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 41 milliseconds