Home
last modified time | relevance | path

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

/external/chromium_org/ui/gfx/geometry/
Dinsets_base.h19 Type bottom() const { return bottom_; } in bottom()
28 Type height() const { return top_ + bottom_; } in height()
36 bottom_ = bottom; in Set()
42 bottom_ == insets.bottom_ && right_ == insets.right_;
52 bottom_ += insets.bottom_;
57 return Class(-top_, -left_, -bottom_, -right_);
64 bottom_(bottom), in InsetsBase()
74 Type bottom_; variable
/external/chromium_org/cc/resources/
Dlayer_quad.cc27 bottom_ = Edge(quad.p3(), quad.p4()); in LayerQuad()
33 bottom_.scale(sign); in LayerQuad()
43 bottom_(bottom) {} in LayerQuad()
48 right_.Intersect(bottom_), in ToQuadF()
49 bottom_.Intersect(left_)); in ToQuadF()
62 flattened[9] = bottom_.x(); in ToFloatArray()
63 flattened[10] = bottom_.y(); in ToFloatArray()
64 flattened[11] = bottom_.z(); in ToFloatArray()
Dlayer_quad.h81 Edge bottom() const { return bottom_; } in bottom()
89 bottom_.move_z(dy); in InflateY()
107 Edge bottom_; variable
Dpicture_layer_tiling.h192 operator bool() const { return tile_j_ <= bottom_; }
209 int bottom_; variable
Dpicture_layer_tiling.cc224 bottom_(-1) { in CoverageIterator()
240 bottom_(-1) { in CoverageIterator()
261 bottom_ = tiling_->tiling_data_.TileYIndexFromSrcCoord( in CoverageIterator()
274 if (tile_j_ > bottom_) in operator ++()
284 if (tile_j_ > bottom_) { in operator ++()
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
Ddesktop_geometry.h99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {} in DesktopRect()
104 int32_t bottom() const { return bottom_; } in bottom()
106 int32_t height() const { return bottom_ - top_; } in height()
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; } in is_empty()
115 right_ == other.right_ && bottom_ == other.bottom_; in equals()
133 : left_(left), top_(top), right_(right), bottom_(bottom) { in DesktopRect()
139 int32_t bottom_; variable
Ddesktop_geometry.cc31 bottom_ = std::min(bottom(), rect.bottom()); in IntersectWith()
36 bottom_ = 0; in IntersectWith()
44 bottom_ += dy; in Translate()
/external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
Dfirst_run_actor.cc20 bottom_(kNoneValue), in StepPosition()
36 bottom_ = bottom; in SetBottom()
51 if (bottom_ != kNoneValue) in AsValue()
52 result->SetInteger("bottom", bottom_); in AsValue()
Dfirst_run_actor.h63 int bottom_; variable
/external/chromium_org/v8/src/
Dmark-compact.h149 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { } in MarkingDeque()
156 top_ = bottom_ = 0; in Initialize()
160 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; } in IsFull()
162 inline bool IsEmpty() { return top_ == bottom_; } in IsEmpty()
208 bottom_ = ((bottom_ - 1) & mask_); in INLINE()
209 array_[bottom_] = object; in INLINE()
214 int bottom() { return bottom_; } in bottom()
225 int bottom_; variable
/external/chromium_org/ui/aura/
Dwindow_tree_host_x11.cc117 TouchEventCalibrate() : left_(0), right_(0), top_(0), bottom_(0) { in TouchEventCalibrate()
132 if (!base::StringToInt(parts[3], &bottom_)) in TouchEventCalibrate()
154 if (!left_ && !right_ && !top_ && !bottom_) in Calibrate()
177 if (top_ || bottom_) { in Calibrate()
189 y < resolution_y - top_ + bottom_ * kGraceAreaFraction) in Calibrate()
192 y = (y * resolution_y) / (resolution_y - (bottom_ + top_)); in Calibrate()
229 int bottom_; member in aura::internal::TouchEventCalibrate
/external/deqp/framework/referencerenderer/
DrrRenderState.hpp217 WindowRectangle (int left_, int bottom_, int width_, int height_) in WindowRectangle()
219 , bottom (bottom_) in WindowRectangle()
/external/chromium_org/cc/base/
Dtiling_data.cc319 : BaseIterator(tiling_data), left_(-1), right_(-1), bottom_(-1) { in Iterator()
333 bottom_ = tiling_data_->LastBorderTileYIndexFromSrcCoord(rect.bottom() - 1); in Iterator()
339 bottom_ = tiling_data_->TileYIndexFromSrcCoord(rect.bottom() - 1); in Iterator()
358 if (index_y_ > bottom_) in operator ++()
Dtiling_data.h102 int bottom_; variable