/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
RoundedRect.cpp | 105 m_topRight = edges.topRight(); 111 m_topRight = edges.topRight(); 148 RoundedRect::RoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight) 150 , m_radii(topLeft, topRight, bottomLeft, bottomRight) 158 int minY = m_rect.y() + max(m_radii.topLeft().height(), m_radii.topRight().height()); 159 int maxX = m_rect.maxX() - max(m_radii.topRight().width(), m_radii.bottomRight().width()); 176 return m_radii.topLeft().width() + m_radii.topRight().width() <= m_rect.width() 179 && m_radii.topRight().height() + m_radii.bottomRight().height() <= m_rect.height(); 184 int maxRadiusWidth = std::max(m_radii.topLeft().width() + m_radii.topRight().width(), m_radii.bottomLeft().width() + m_radii.bottomRight().width()); 185 int maxRadiusHeight = std::max(m_radii.topLeft().height() + m_radii.bottomLeft().height(), m_radii.topRight().height() + m_radii.bottomRight().height()) [all...] |
FloatRoundedRect.h | 43 Radii(const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight) 45 , m_topRight(topRight) 56 const FloatSize& topRight() const { return m_topRight; } 77 FloatRoundedRect(const FloatRect&, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight); 98 return FloatRect(m_rect.maxX() - m_radii.topRight().width(), m_rect.y(), m_radii.topRight().width(), m_radii.topRight().height()); 118 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight();
|
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/WebKit/Source/platform/graphics/filters/ |
FELighting.cpp | 89 inline void FELighting::LightingData::topRight(int offset, IntPoint& normalVector) 106 int topRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset)); 110 normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight); 111 normalVector.setY(-(top << 1) - topRight + (bottom << 1) + bottomRight); 121 int topRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset)); 126 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight); 127 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight); 150 int topRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset)); 151 normalVector.setX(-top + topRight - (center << 1) + (right << 1)); 152 normalVector.setY(-(top << 1) - topRight + (center << 1) + right) [all...] |
FELighting.h | 69 inline void topRight(int offset, IntPoint& normalVector);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
BorderData.h | 110 const LengthSize& topRight() const { return m_topRight; }
|
RenderStyle.cpp | [all...] |
/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);
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
TerrainPatch.java | 358 TerrainPatch topRight,
396 if (topRight != null) {
397 // setInBuffer(topRight.getMesh(), (s+1)*s, normal, tangent, binormal);
[all...] |
TerrainQuad.java | [all...] |
/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/rendering/ |
RenderBoxModelObject.cpp | 463 if (!clipRect.radii().topRight().isEmpty() || !clipRect.radii().bottomLeft().isEmpty()) { 466 topCornerRadii.setTopRight(clipRect.radii().topRight()); [all...] |
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
RenderDeviceJme.java | 345 Color topLeft, Color topRight, Color bottomRight, Color bottomLeft) {
350 buf.putInt(convertColor(topRight));
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
CameraControls.java | 76 topRight(mPreview, l, t, r, b); 232 private void topRight(View v, int l, int t, int r, int b) {
|
/packages/apps/Music/src/com/android/music/ |
VerticalTextSpinner.java | 283 final int topRight = selectorRight; 299 canvas.clipRect(topLeft, topTop, topRight, topBottom);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
ImageShader.java | 421 quad.topRight().x, quad.topRight().y, 469 quad.topRight().x, quad.topRight().y,
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsContext.cpp | [all...] |
GraphicsContext.h | 238 void fillRoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color&);
|
Path.cpp | 354 addRoundedRect(r.rect(), r.radii().topLeft(), r.radii().topRight(), r.radii().bottomLeft(), r.radii().bottomRight());
|
/external/zxing/core/ |
core.jar | |