Searched refs:bottom_ (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/ui/gfx/geometry/
H A Dinsets_base.h19 Type bottom() const { return bottom_; }
28 Type height() const { return top_ + bottom_; }
36 bottom_ = bottom;
42 bottom_ == insets.bottom_ && right_ == insets.right_;
52 bottom_ += insets.bottom_;
57 return Class(-top_, -left_, -bottom_, -right_);
64 bottom_(bottom),
74 Type bottom_; member in class:gfx::InsetsBase
[all...]
/external/chromium_org/cc/resources/
H A Dlayer_quad.cc27 bottom_ = Edge(quad.p3(), quad.p4());
33 bottom_.scale(sign);
43 bottom_(bottom) {}
48 right_.Intersect(bottom_),
49 bottom_.Intersect(left_));
62 flattened[9] = bottom_.x();
63 flattened[10] = bottom_.y();
64 flattened[11] = bottom_.z();
H A Dlayer_quad.h81 Edge bottom() const { return bottom_; }
89 bottom_.move_z(dy);
107 Edge bottom_; member in class:cc::LayerQuad
H A Dpicture_layer_tiling.h215 operator bool() const { return tile_j_ <= bottom_; }
232 int bottom_; member in class:cc::PictureLayerTiling::CoverageIterator
H A Dpicture_layer_tiling.cc321 bottom_(-1) {
337 bottom_(-1) {
358 bottom_ = tiling_->tiling_data_.TileYIndexFromSrcCoord(
371 if (tile_j_ > bottom_)
381 if (tile_j_ > bottom_) {
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.cc31 bottom_ = std::min(bottom(), rect.bottom());
36 bottom_ = 0;
44 bottom_ += dy;
H A Ddesktop_geometry.h99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
104 int32_t bottom() const { return bottom_; }
106 int32_t height() const { return bottom_ - top_; }
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; }
115 right_ == other.right_ && bottom_ == other.bottom_;
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
139 int32_t bottom_; member in class:webrtc::DesktopRect
/external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
H A Dfirst_run_actor.cc20 bottom_(kNoneValue),
36 bottom_ = bottom;
51 if (bottom_ != kNoneValue)
52 result->SetInteger("bottom", bottom_);
H A Dfirst_run_actor.h63 int bottom_; member in class:chromeos::FirstRunActor::StepPosition
/external/chromium_org/v8/src/heap/
H A Dmark-compact.h143 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) {}
152 top_ = bottom_ = 0;
156 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
158 inline bool IsEmpty() { return top_ == bottom_; }
204 bottom_ = ((bottom_ - 1) & mask_);
205 array_[bottom_] = object;
210 int bottom() { return bottom_; }
218 // empty when top_ == bottom_. It is full when top_ + 1 == bottom
221 int bottom_; member in class:v8::internal::MarkingDeque
[all...]
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp217 WindowRectangle (int left_, int bottom_, int width_, int height_) argument
219 , bottom (bottom_)
/external/chromium_org/ui/aura/
H A Dwindow_tree_host_x11.cc115 TouchEventCalibrate() : left_(0), right_(0), top_(0), bottom_(0) {
130 if (!base::StringToInt(parts[3], &bottom_))
152 if (!left_ && !right_ && !top_ && !bottom_)
175 if (top_ || bottom_) {
187 y < resolution_y - top_ + bottom_ * kGraceAreaFraction)
190 y = (y * resolution_y) / (resolution_y - (bottom_ + top_));
227 int bottom_; member in class:aura::internal::TouchEventCalibrate
/external/chromium_org/cc/base/
H A Dtiling_data.cc307 : BaseIterator(tiling_data), left_(-1), right_(-1), bottom_(-1) {
322 bottom_ = tiling_data_->LastBorderTileYIndexFromSrcCoord(rect.bottom() - 1);
328 bottom_ = tiling_data_->TileYIndexFromSrcCoord(rect.bottom() - 1);
347 if (index_y_ > bottom_)
H A Dtiling_data.h102 int bottom_; member in class:cc::TilingData::Iterator

Completed in 356 milliseconds