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

1 2 3 4 5 6 7 8

  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller_private.h 48 - (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY
56 maxY:(CGFloat)maxY
65 // call it with the appropriate |maxY| which depends on whether or not the
69 maxY:(CGFloat)maxY
81 maxY:(CGFloat)maxY
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller_private.h 57 - (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY
65 maxY:(CGFloat)maxY
74 // call it with the appropriate |maxY| which depends on whether or not the
78 maxY:(CGFloat)maxY
90 maxY:(CGFloat)maxY
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
IntRect.cpp 57 && y() < other.maxY() && other.y() < maxY();
63 && y() <= other.y() && maxY() >= other.maxY();
71 int b = min(maxY(), other.maxY());
100 int b = max(maxY(), other.maxY());
121 int bottom = max(maxY(), other.maxY());
    [all...]
LayoutRect.cpp 54 && y() < other.maxY() && other.y() < maxY();
60 && y() <= other.y() && maxY() >= other.maxY();
66 LayoutPoint newMaxPoint(min(maxX(), other.maxX()), min(maxY(), other.maxY()));
89 LayoutPoint newMaxPoint(max(maxX(), other.maxX()), max(maxY(), other.maxY()));
106 LayoutPoint newMaxPoint(max(maxX(), other.maxX()), max(maxY(), other.maxY()));
    [all...]
FloatRect.cpp 65 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
73 && y() < other.maxY() && other.y() < maxY();
79 && y() <= other.y() && maxY() >= other.maxY();
86 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
94 float b = min(maxY(), other.maxY());
125 float maxY = max(this->maxY(), other.maxY())
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Vector2D.h 27 void limit(float maxX, float maxY);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.cpp 113 if (y2 < bounds.y() || y1 >= bounds.maxY())
125 } else if (y1 > bounds.maxY() - bounds.ry()) {
126 float yi = y1 - (bounds.maxY() - bounds.ry());
145 if (y1 < bounds.y() || y2 > bounds.maxY())
153 bool y2InterceptsCorner = y2 > bounds.maxY() - bounds.ry();
161 float yi = y2 - (bounds.maxY() - bounds.ry());
168 float yi = y2 - (bounds.maxY() - bounds.ry());
192 float maxY = minY + minIntervalHeight;
194 if (maxY > bounds.maxY())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingConstraints.cpp 43 offset.setHeight(viewportRect.maxY() - m_viewportRectAtLastLayout.maxY());
73 float bottomLimit = viewportRect.maxY() - m_bottomOffset;
74 float bottomDelta = std::min<float>(0, bottomLimit - m_absoluteStickyBoxRect.maxY());
85 float availableSpace = std::max<float>(0, m_absoluteContainingBlockRect.maxY() - m_absoluteStickyBoxRect.maxY());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderOverflow.h 93 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY());
97 m_layoutOverflow.setHeight(maxY - m_layoutOverflow.y());
103 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY());
107 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
RenderRegionSet.cpp 59 LayoutUnit logicalHeightWithOverflow = (isHorizontal ? layoutRect.maxY() : layoutRect.maxX()) - logicalTopOffset;
  /cts/tests/tests/graphics/src/android/graphics/cts/
DiscretePathEffectTest.java 77 int maxY = 0;
84 maxY = Math.max(maxY, y);
96 assertTrue(maxY - minY > 0);
98 assertTrue(maxY - minY <= 1 + 2 * DEVIATION);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
RagdollPreset.java 65 private float maxX, minX, maxY, minY, maxZ, minZ;
70 public JointPreset(float maxX, float minX, float maxY, float minY, float maxZ, float minZ) {
73 this.maxY = maxY;
82 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
  /frameworks/support/v4/java/android/support/v4/widget/
ScrollerCompat.java 44 int minX, int maxX, int minY, int maxY);
46 int minX, int maxX, int minY, int maxY, int overX, int overY);
100 int minX, int maxX, int minY, int maxY) {
101 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
106 int minX, int maxX, int minY, int maxY, int overX, int overY) {
107 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
187 int minX, int maxX, int minY, int maxY) {
189 minX, maxX, minY, maxY);
194 int minX, int maxX, int minY, int maxY, int overX, int overY) {
196 minX, maxX, minY, maxY, overX, overY)
    [all...]
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer.java 106 int maxY = mShapeY + mShapeH;
109 maxY = Math.max(mShapeY + mShapeH, maxY);
110 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
Bouncer1.java 76 int maxY = mShapeY + mShapeH;
79 maxY = Math.max(mShapeY + mShapeH, maxY);
80 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
Bouncer2.java 77 int maxY = mShapeY + mShapeH;
80 maxY = Math.max(mShapeY + mShapeH, maxY);
81 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
Bouncer3.java 77 int maxY = mShapeY + mShapeH;
80 maxY = Math.max(mShapeY + mShapeH, maxY);
81 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClientRect.h 47 float bottom() const { return m_rect.maxY(); }
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_shaderproc.h 40 const unsigned maxY = s.fBitmap->height() - 1;
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
SkBitmapProcState_matrix.h 61 const unsigned maxY = s.fBitmap->height() - 1;
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1;
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1;
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1;
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1;
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AABoxCollisionVolume.java 107 final float maxY;
113 maxY = Math.max(getMaxY(), other.getMaxY());
118 maxY = other.getMaxY();
122 final float verticalDelta = maxY - minY;
CollisionVolume.java 83 final float maxY = getMaxY();
84 value = flip.parentHeight - maxY;
  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 40 const unsigned maxY = s.fBitmap->height() - 1;
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
SkBitmapProcState_matrix.h 61 const unsigned maxY = s.fBitmap->height() - 1;
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1;
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1;
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1;
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1;
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y)
    [all...]
  /frameworks/support/v4/gingerbread/android/support/v4/widget/
ScrollerCompatGingerbread.java 56 int minX, int maxX, int minY, int maxY) {
57 ((OverScroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
61 int minX, int maxX, int minY, int maxY, int overX, int overY) {
63 minX, maxX, minY, maxY, overX, overY);

Completed in 776 milliseconds

1 2 3 4 5 6 7 8