HomeSort by relevance Sort by last modified time
    Searched full:topleft (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/chromium-trace/trace-viewer/src/ui/
rect_view.js 44 var topLeft = vec2.fromValues(this.rect_.x, this.rect_.y);
46 topLeft[0] + this.rect_.width,
47 topLeft[1] + this.rect_.height);
48 vec2.transformMat2d(topLeft, topLeft,
50 vec2.scale(topLeft, topLeft, devicePixelsPerLayoutPixel);
54 this.style.width = botRight[0] - topLeft[0] + 'px';
55 this.style.height = DECORATION_HEIGHT + botRight[1] - topLeft[1] + 'px';
56 this.style.left = topLeft[0] + 'px'
    [all...]
  /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 48 IFolderLayout topLeft =
50 "topLeft", //NON-NLS-1
54 topLeft.addView("org.eclipse.test.internal.performance.results.ui.ComponentsView"); //NON-NLS-1
55 topLeft.addView("org.eclipse.test.internal.performance.results.ui.BuildsView"); //NON-NLS-1
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
RoundedRect.cpp 104 m_topLeft = edges.topLeft();
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)
155 int minX = m_rect.x() + std::max(m_radii.topLeft().width(), m_radii.bottomLeft().width());
156 int minY = m_rect.y() + std::max(m_radii.topLeft().height(), m_radii.topRight().height());
174 return m_radii.topLeft().width() + m_radii.topRight().width() <= m_rect.width()
176 && m_radii.topLeft().height() + m_radii.bottomLeft().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());
200 const IntSize& topLeft = m_radii.topLeft()
    [all...]
FloatRoundedRect.h 44 Radii(const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight)
45 : m_topLeft(topLeft)
53 : m_topLeft(intRadii.topLeft())
64 const FloatSize& topLeft() const { return m_topLeft; }
86 FloatRoundedRect(const FloatRect&, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight);
103 return FloatRect(m_rect.x(), m_rect.y(), m_radii.topLeft().width(), m_radii.topLeft().height());
127 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)
44 : m_topLeft(topLeft)
55 const IntSize& topLeft() const { return m_topLeft; }
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();
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsSimplify.cpp 18 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
23 lastTopLeft = topLeft;
25 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
28 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
29 topLeft.fX = topLeft.fY = SK_ScalarMin;
36 firstPass = !topUnsortable || lastTopLeft != topLeft;
SkPathOpsCommon.h 20 bool* firstContour, int* index, int* endIndex, SkPoint* topLeft,
SkPathOpsOp.cpp 128 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
133 lastTopLeft = topLeft;
135 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
138 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
146 topLeft.fX = topLeft.fY = SK_ScalarMin;
153 firstPass = !topUnsortable || lastTopLeft != topLeft;
  /external/skia/src/pathops/
SkPathOpsSimplify.cpp 18 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
23 lastTopLeft = topLeft;
25 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
28 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
29 topLeft.fX = topLeft.fY = SK_ScalarMin;
36 firstPass = !topUnsortable || lastTopLeft != topLeft;
SkPathOpsCommon.h 20 bool* firstContour, int* index, int* endIndex, SkPoint* topLeft,
SkPathOpsOp.cpp 128 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
133 lastTopLeft = topLeft;
135 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
138 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
146 topLeft.fX = topLeft.fY = SK_ScalarMin;
153 firstPass = !topUnsortable || lastTopLeft != topLeft;
  /external/chromium_org/third_party/angle/util/win32/
Win32Window.cpp 159 POINT topLeft;
160 topLeft.x = winRect.left;
161 topLeft.y = winRect.top;
162 ClientToScreen(hWnd, &topLeft);
166 event.Move.X = topLeft.x;
167 event.Move.Y = topLeft.y;
178 POINT topLeft;
179 topLeft.x = winRect.left;
180 topLeft.y = winRect.top;
181 ClientToScreen(hWnd, &topLeft);
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/find_bar/
find_bar_view.mm 43 NSPoint topLeft = NSMakePoint(NSMinX(rect), NSMaxY(rect));
59 [path moveToPoint:topLeft];
61 controlPoint1:NSMakePoint(midLeft1.x, topLeft.y)
62 controlPoint2:NSMakePoint(midLeft1.x, topLeft.y)];
74 controlPoint1:NSMakePoint(midRight2.x, topLeft.y)
75 controlPoint2:NSMakePoint(midRight2.x, topLeft.y)];
  /external/eigen/Eigen/src/Eigen2Support/
Block.h 18 * \param type the type of corner. Can be \a Eigen::TopLeft, \a Eigen::TopRight,
40 case TopLeft:
60 case TopLeft:
73 * \param type the type of corner. Can be \a Eigen::TopLeft, \a Eigen::TopRight,
92 case TopLeft:
113 case TopLeft:
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 87 new Property<ViewBounds, PointF>(PointF.class, "topLeft") {
89 public void set(ViewBounds viewBounds, PointF topLeft) {
90 viewBounds.setTopLeft(topLeft);
130 new Property<View, PointF>(PointF.class, "topLeft") {
132 public void set(View view, PointF topLeft) {
133 int left = Math.round(topLeft.x);
134 int top = Math.round(topLeft.y);
149 public void set(View view, PointF topLeft) {
150 int left = Math.round(topLeft.x);
151 int top = Math.round(topLeft.y)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 89 * @param topLeft the top-left 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);
98 PointF p2 = new PointF(topLeft.x - np.x, topLeft.y + np.y);
100 return new Quad(topLeft, topRight, p2, p3);
147 public PointF topLeft() {
188 PointF topLeft = rotatePoint(topLeft(), center, cosa, sina)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
riva_mmio.h 110 U032 TopLeft;
124 U032 TopLeft;
149 U032 TopLeft;
168 U032 TopLeft;
174 U032 TopLeft;
180 U032 TopLeft;
186 U032 TopLeft;
196 U032 TopLeft;
207 U032 TopLeft;
  /external/chromium_org/third_party/skia/experimental/Intersection/
ShapeOps.cpp 137 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
141 Segment* current = findSortableTop(contourList, firstContour, index, endIndex, topLeft,
146 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
147 topLeft.fX = topLeft.fY = SK_ScalarMin;
  /external/skia/experimental/Intersection/
ShapeOps.cpp 137 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
141 Segment* current = findSortableTop(contourList, firstContour, index, endIndex, topLeft,
146 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
147 topLeft.fX = topLeft.fY = SK_ScalarMin;
  /external/chromium_org/third_party/WebKit/ManualTests/
scrollIntoView-horizontal.html 20 <input id="topleft" type="button" value="STEP 1: click to horizontally scroll STEP 2 into view" onclick="document.getElementById('topright').scrollIntoView(false);">
28 <input id="bottomright" type="button" value="STEP 4: click to scroll STEP 1 to TOP of view (then you're done)" style="position: absolute; top: 1200px; left: 1200px;" onclick="document.getElementById('topleft').scrollIntoView();">
  /external/clang/test/FixIt/
typo.c 27 topleft.x = 3.14, // expected-error{{field designator 'topleft' does not refer to any field in type 'struct Rectangle'; did you mean 'top_left'?}}
  /external/eigen/test/
eigen2support.cpp 39 VERIFY_IS_EQUAL((m1.corner(TopLeft,1,1)), (m1.block(0,0,1,1)));
40 VERIFY_IS_EQUAL((m1.template corner<1,1>(TopLeft)), (m1.template block<1,1>(0,0)));
geo_alignedbox.cpp 124 Vector2f topLeft; topLeft << m[0], M[1];
126 VERIFY_IS_APPROX( topLeft, box.corner( BoxType::TopLeft ) );
  /external/chromium_org/third_party/skia/debugger/QT/
SkListWidget.cpp 35 painter->drawLine(r.topLeft(),r.topRight());
38 painter->drawLine(r.topLeft(),r.bottomLeft());
48 painter->drawLine(r.topLeft(),r.topRight());
51 painter->drawLine(r.topLeft(),r.bottomLeft());
  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 68 SkIPoint* topLeft;
75 topLeft = &pointStorage;
79 topLeft = NULL;
89 context->copyTexture(texture, dst->asRenderTarget(), topLeft);

Completed in 1128 milliseconds

1 2 3 4 5 6 7