HomeSort by relevance Sort by last modified time
    Searched refs:max_y (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/ui/gfx/geometry/
rect_conversions.cc 19 float max_y = rect.bottom(); local
21 int height = rect.height() == 0 ? 0 : std::max(ToCeiledInt(max_y) - min_y, 0);
29 float max_y = rect.bottom(); local
31 int height = std::max(ToFlooredInt(max_y) - min_y, 0);
44 int max_y = ToRoundedInt(float_max_y); local
51 DCHECK(std::abs(max_y - float_max_y) < 0.01f);
53 return Rect(min_x, min_y, max_x - min_x, max_y - min_y);
65 int max_y = ToRoundedInt(float_max_y);
71 (std::abs(max_y - float_max_y) < distance);
box_f.cc 37 float max_y = std::max(bottom(), max.y()); local
42 height_ = max_y - min_y;
  /external/chromium_org/ui/views/controls/
slider_unittest.cc 139 int max_y() { function in class:views::SliderTest
271 ClickAt(0, max_y());
294 event_generator()->GestureTapAt(gfx::Point(max_x(), max_y()));
299 event_generator()->GestureTapAt(gfx::Point(0.75 * max_x(), 0.75 * max_y()));
308 gfx::Point(0.5 * max_x(), 0.5 * max_y()),
317 gfx::Point(0.5 * max_x(), 0.5 * max_y()),
318 gfx::Point(max_x(), max_y()),
326 gfx::Point(0.25 * max_x(), 0.25 * max_y()),
327 gfx::Point(0.75 * max_x(), 0.75 * max_y()),
351 gfx::Point(0.25 * max_x(), 0.25 * max_y()),
    [all...]
scroll_view.cc 483 const int max_y = std::min(contents_max_y, local
487 // and the height is (max_y - y) to take into account the clipping of
490 if (vis_rect.Contains(gfx::Rect(x, y, max_x - x, max_y - y)))
498 // lower/right corner. This is calculated by taking max_x or max_y
503 (vis_rect.y() > y) ? y : std::max(0, max_y -
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
polygon.c 265 VGfloat min_x, min_y, max_x, max_y; local
272 max_y = bounds[1] + bounds[3];
276 min_x, min_y, max_x, max_y);
300 renderer_polygon_fill(ctx->renderer, min_x, min_y, max_x, max_y);
310 VGfloat max_y = polyarray->max_y; local
319 min_x, min_y, max_x, max_y);
349 renderer_polygon_fill(ctx->renderer, min_x, min_y, max_x, max_y);
polygon.h 70 VGfloat min_y, max_y; member in struct:polygon_array
renderer.h 136 VGfloat max_x, VGfloat max_y);
  /external/mesa3d/src/gallium/state_trackers/vega/
polygon.c 265 VGfloat min_x, min_y, max_x, max_y; local
272 max_y = bounds[1] + bounds[3];
276 min_x, min_y, max_x, max_y);
300 renderer_polygon_fill(ctx->renderer, min_x, min_y, max_x, max_y);
310 VGfloat max_y = polyarray->max_y; local
319 min_x, min_y, max_x, max_y);
349 renderer_polygon_fill(ctx->renderer, min_x, min_y, max_x, max_y);
polygon.h 70 VGfloat min_y, max_y; member in struct:polygon_array
renderer.h 136 VGfloat max_x, VGfloat max_y);
  /external/chromium_org/ash/touch/
touch_transformer_controller.cc 42 double min_y, max_y; local
50 &min_y, &max_y)) {
57 if (max_x == 0.0 || max_y == 0.0 || width == 0.0 || height == 0.0)
61 // [0, max_y] -> touchscreen height = max_y + 1
63 max_y += 1.0;
65 double ratio = std::sqrt((width * height) / (max_x * max_y));
68 << ", Touchscreen width/height: " << max_x << "/" << max_y
  /external/chromium_org/ui/gfx/android/
scroller.h 57 float max_y,
scroller.cc 229 float max_y,
264 max_y_ = max_y;