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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRect.h 44 Radii(const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight)
46 , m_topRight(topRight)
54 , m_topRight(intRadii.topRight())
65 const FloatSize& topRight() const { return m_topRight; }
86 FloatRoundedRect(const FloatRect&, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight);
107 return FloatRect(m_rect.maxX() - m_radii.topRight().width(), m_rect.y(), m_radii.topRight().width(), m_radii.topRight().height());
127 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight()
    [all...]
RoundedRect.cpp 103 m_topRight = edges.topRight();
109 m_topRight = edges.topRight();
146 RoundedRect::RoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
148 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
156 int minY = m_rect.y() + std::max(m_radii.topLeft().height(), m_radii.topRight().height());
157 int maxX = m_rect.maxX() - std::max(m_radii.topRight().width(), m_radii.bottomRight().width());
174 return m_radii.topLeft().width() + m_radii.topRight().width() <= m_rect.width()
177 && m_radii.topRight().height() + m_radii.bottomRight().height() <= m_rect.height();
182 int maxRadiusWidth = std::max(m_radii.topLeft().width() + m_radii.topRight().width(), m_radii.bottomLeft().width() + m_radii.bottomRight().width());
183 int maxRadiusHeight = std::max(m_radii.topLeft().height() + m_radii.bottomLeft().height(), m_radii.topRight().height() + m_radii.bottomRight().height())
    [all...]
RoundedRect.h 43 Radii(const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
45 , m_topRight(topRight)
56 const IntSize& topRight() const { return m_topRight; }
80 RoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
116 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight();
FloatRoundedRect.cpp 48 FloatRoundedRect::FloatRoundedRect(const FloatRect& rect, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight)
50 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
FloatRoundedRectTest.cpp 60 << ::testing::PrintToString(radii.topRight()) << ", "
91 EXPECT_EQ(FloatSize(), r.radii().topRight());
127 EXPECT_EQ(cornerRadii, r.radii().topRight());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPerspective.java 58 IFolderLayout topRight =
60 "topRight", //NON-NLS-1
64 topRight.addView(IPageLayout.ID_PROP_SHEET); //NON-NLS-1
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 90 * @param topRight the top-right of the quad
94 public static Quad fromLineAndHeight(PointF topLeft, PointF topRight, float height) {
95 PointF dp = new PointF(topRight.x - topLeft.x, topRight.y - topLeft.y);
99 PointF p3 = new PointF(topRight.x - np.x, topRight.y + np.y);
100 return new Quad(topLeft, topRight, p2, p3);
155 public PointF topRight() {
189 PointF topRight = rotatePoint(topRight(), center, cosa, sina)
    [all...]
  /external/chromium_org/third_party/skia/debugger/QT/
SkListWidget.cpp 35 painter->drawLine(r.topLeft(),r.topRight());
36 painter->drawLine(r.topRight(),r.bottomRight());
48 painter->drawLine(r.topLeft(),r.topRight());
49 painter->drawLine(r.topRight(),r.bottomRight());
  /external/skia/debugger/QT/
SkListWidget.cpp 35 painter->drawLine(r.topLeft(),r.topRight());
36 painter->drawLine(r.topRight(),r.bottomRight());
48 painter->drawLine(r.topLeft(),r.topRight());
49 painter->drawLine(r.topRight(),r.bottomRight());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 101 paths.shape.addRoundedRect(m_bounds.rect(), m_bounds.radii().topLeft(), m_bounds.radii().topRight(), m_bounds.radii().bottomLeft(), m_bounds.radii().bottomRight());
103 paths.marginShape.addRoundedRect(shapeMarginBounds().rect(), shapeMarginBounds().radii().topLeft(), shapeMarginBounds().radii().topRight(), shapeMarginBounds().radii().bottomLeft(), shapeMarginBounds().radii().bottomRight());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FELighting.cpp 96 inline void FELighting::LightingData::topRight(int offset, IntPoint& normalVector)
113 int topRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
117 normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight);
118 normalVector.setY(-(top << 1) - topRight + (bottom << 1) + bottomRight);
128 int topRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
133 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
134 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight);
157 int topRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
158 normalVector.setX(-top + topRight - (center << 1) + (right << 1));
159 normalVector.setY(-(top << 1) - topRight + (center << 1) + right)
    [all...]
FELighting.h 66 inline void topRight(int offset, IntPoint& normalVector);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 123 const LengthSize& topRight() const { return m_topRight; }
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 123 public void setCornerStyles(int topLeft, int topRight, int bottomRight, int bottomLeft) {
125 || mTopRightCornerStyle != topRight
130 mTopRightCornerStyle = topRight;
  /external/deqp/modules/gles3/functional/
es3fTextureWrapTests.cpp 100 tcu::Vec2 topRight;
103 Case (const tcu::Vec2& bl, const tcu::Vec2& tr) : bottomLeft(bl), topRight(tr) {}
325 computeQuadTexCoord2D(texCoord, m_cases[m_caseNdx].bottomLeft, m_cases[m_caseNdx].topRight);
345 log << TestLog::Message << "Note: lookup coordinates: bottom-left " << m_cases[m_caseNdx].bottomLeft << ", top-right " << m_cases[m_caseNdx].topRight << TestLog::EndMessage;
  /external/deqp/modules/gles31/functional/
es31fTextureFilteringTests.cpp 139 tcu::Vec2 topRight;
150 , topRight (topRight_)
351 m_testCtx.getLog() << TestLog::Message << "Coordinates: " << curCase.bottomLeft << " -> " << curCase.topRight << TestLog::EndMessage;
359 computeQuadTexCoordCubeArray(texCoord, face, curCase.bottomLeft, curCase.topRight, curCase.layerRange);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 372 void computeQuadTexCoord2D (std::vector<float>& dst, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
373 void computeQuadTexCoord2DArray (std::vector<float>& dst, int layerNdx, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
376 void computeQuadTexCoordCube (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
377 void computeQuadTexCoordCubeArray (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight, const tcu::Vec2& layerRange);
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 195 Float3 topRight = new Float3(1.0f, 1.0f, 0.0f);
204 fullQuad.set_position(2, topRight, false);
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 229 float topRight = (float) Math.sqrt(xCeilingSq + yFloorSq);
232 float sum = topLeft + topRight + btmLeft + btmRight;
240 value = topRight / sum;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 260 if (!clipRect.radii().topRight().isEmpty() || !clipRect.radii().bottomLeft().isEmpty()) {
263 topCornerRadii.setTopRight(clipRect.radii().topRight());
    [all...]
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 283 final int topRight = selectorRight;
299 canvas.clipRect(topLeft, topTop, topRight, topBottom);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext.cpp     [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 187 Vec2 topRight;
214 const Vec2& topRight = s_basicCoords[cellNdx].topRight;
216 computeQuadTexCoord2D(dst, bottomLeft, topRight);
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 179 Vec2 topRight;
206 const Vec2& topRight = s_basicCoords[cellNdx].topRight;
208 computeQuadTexCoord2D(dst, bottomLeft, topRight);

Completed in 1219 milliseconds

1 2 3