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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.cpp 53 void BasicShapeRectangle::path(Path& path, const FloatRect& boundingBox)
58 floatValueForLength(m_x, boundingBox.width()) + boundingBox.x(),
59 floatValueForLength(m_y, boundingBox.height()) + boundingBox.y(),
60 floatValueForLength(m_width, boundingBox.width()),
61 floatValueForLength(m_height, boundingBox.height())
64 floatValueForLength(m_cornerRadiusX, boundingBox.width()),
65 floatValueForLength(m_cornerRadiusY, boundingBox.height())
85 void BasicShapeCircle::path(Path& path, const FloatRect& boundingBox)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.h 64 : m_vertex1(FloatPoint(polygon.boundingBox().x(), minLogicalIntervalTop) + offset)
65 , m_vertex2(FloatPoint(polygon.boundingBox().maxX(), minLogicalIntervalTop) + offset)
94 virtual LayoutRect shapeMarginLogicalBoundingBox() const OVERRIDE { return static_cast<LayoutRect>(shapeMarginBounds().boundingBox()); }
95 virtual LayoutRect shapePaddingLogicalBoundingBox() const OVERRIDE { return static_cast<LayoutRect>(shapePaddingBounds().boundingBox()); }
PolygonShape.cpp 438 const FloatRect boundingBox = polygon.boundingBox();
439 if (minIntervalWidth > boundingBox.width())
442 float minY = std::max(boundingBox.y(), minIntervalTop);
445 if (maxY > boundingBox.maxY())
449 polygon.overlappingEdges(minIntervalTop, boundingBox.maxY(), edges);
  /external/chromium_org/third_party/WebKit/Source/web/
ViewportAnchor.cpp 61 if (node && area(node->boundingBox()) > maxNodeArea) {
67 while (node && node->boundingBox().isEmpty())
102 m_anchorNodeBounds = node->boundingBox();
112 const LayoutRect currentNodeBounds = m_anchorNode->boundingBox();
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 36 public final RectF boundingBox;
81 boundingBox = bx;
89 boundingBox = new RectF(bbx.left, bbx.top, bbx.right, bbx.bottom);
97 return new GestureStroke(boundingBox, length, points, timestamps);
163 final RectF rect = boundingBox;
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchDisambiguation.cpp 71 static float scoreTouchTarget(IntPoint touchPoint, int padding, IntRect boundingBox)
73 if (boundingBox.isEmpty())
79 IntSize distance = boundingBox.differenceToPoint(touchPoint);
TouchAdjustment.cpp 57 IntRect boundingBox() const { return m_quad.enclosingBoundingBox(); }
320 IntRect rect = subtarget.boundingBox();
343 IntRect rect = subtarget.boundingBox();
391 IntRect contentBounds = geom.boundingBox();
449 targetArea = it->boundingBox();
459 targetArea = it->boundingBox();
PrintContext.cpp 299 IntRect boundingBox = renderer->absoluteBoundingBoxRect();
300 if (pageRect.intersects(boundingBox)) {
301 IntPoint point = boundingBox.minXMinYCorner();
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatQuad.h 75 bool isEmpty() const { return boundingBox().isEmpty(); }
80 // corresponding FloatRect can be retrieved with boundingBox().
107 FloatRect boundingBox() const;
110 return enclosingIntRect(boundingBox());
FloatPolygon.h 62 FloatRect boundingBox() const { return m_boundingBox; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 320 FloatRect boundingBox = m_object->objectBoundingBox();
325 IntSize expandedBoundingBox = expandedIntSize(boundingBox.size());
333 if ((imageBuffer = m_paintInfo->context->createCompatibleBuffer(expandedIntSize(boundingBox.size()), true))) {
335 bufferedRenderingContext->translate(-boundingBox.x(), -boundingBox.y());
343 m_paintInfo->context->drawImageBuffer(imageBuffer.get(), boundingBox);
RenderSVGImage.cpp 130 FloatRect boundingBox = repaintRectInLocalCoordinates();
131 if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(boundingBox, m_localTransform, paintInfo))
152 paintOutline(childPaintInfo, IntRect(boundingBox));
RenderSVGInlineText.cpp 131 FloatRect boundingBox;
133 boundingBox.unite(box->calculateBoundaries());
134 return boundingBox;
RenderSVGShape.cpp 272 FloatRect boundingBox = repaintRectInLocalCoordinates();
273 if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(boundingBox, m_localTransform, paintInfo))
297 paintOutline(childPaintInfo, IntRect(boundingBox));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestLocation.h 69 IntRect boundingBox() const { return m_boundingBox; }
HitTestLocation.cpp 85 m_boundingBox = enclosingIntRect(quad.boundingBox());
145 m_boundingBox = enclosingIntRect(m_transformedRect.boundingBox());
RenderNamedFlowThread.cpp 610 LayoutRect boundingBox;
612 boundingBox = toRenderInline(renderer)->linesBoundingBox();
614 boundingBox = toRenderText(renderer)->linesBoundingBox();
616 boundingBox = toRenderBox(renderer)->frameRect();
618 boundingBox.move(toRenderBox(renderer)->relativePositionLogicalOffset());
625 boundingBox.moveBy(logicalOffsetFromTop);
627 LayoutUnit logicalTopForRenderer = region->logicalTopOfFlowThreadContentRect(boundingBox);
628 LayoutUnit logicalBottomForRenderer = region->logicalBottomOfFlowThreadContentRect(boundingBox);
RenderGeometryMap.h 89 return mapToContainer(rect, 0).boundingBox();
RenderGeometryMap.cpp 135 result = transformState.lastPlanarQuad().boundingBox();
139 FloatRect rendererMappedResult = m_mapping.last().m_renderer->localToContainerQuad(rect, container, m_mapCoordinatesFlags).boundingBox();
142 ASSERT(enclosingIntRect(rendererMappedResult) == enclosingIntRect(FloatQuad(result).boundingBox()));
143 // if (enclosingIntRect(rendererMappedResult) != enclosingIntRect(FloatQuad(result).boundingBox()))
RenderInline.h 157 IntRect boundingBox = linesBoundingBox();
158 return IntRect(0, 0, boundingBox.width(), boundingBox.height());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 248 * @param boundingBox the bounding rectangle of the rectangle list, which can be
259 List<Rectangle> rectangles, Rectangle boundingBox, double scale, byte alpha) {
261 if (rectangles.size() == 0 || boundingBox == null || boundingBox.isEmpty()) {
266 int destWidth = (int) (scale * boundingBox.width);
267 int destHeight = (int) (scale * boundingBox.height);
274 int dx1 = bounds.x - boundingBox.x;
275 int dy1 = bounds.y - boundingBox.y;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
SimpleFontDataMac.mm 373 FloatRect boundingBox;
374 boundingBox = CTFontGetBoundingRectsForGlyphs(m_platformData.ctFont(), platformData().orientation() == Vertical ? kCTFontVerticalOrientation : kCTFontHorizontalOrientation, &glyph, 0, 1);
375 boundingBox.setY(-boundingBox.maxY());
377 boundingBox.setWidth(boundingBox.width() + m_syntheticBoldOffset);
379 return boundingBox;
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 119 * Verifies that {@link android.gesture.GestureStroke#boundingBox} has expected values for
124 mHelper.assertLineBoundingBox(line.boundingBox);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilitySlider.cpp 164 return sliderThumbElementOf(sliderRenderer->node())->boundingBox();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 212 * @param boundingBox the bounding rectangle of the set of rectangles to copy, can be
220 List<Rectangle> rectangles, Rectangle boundingBox, double scale) {
235 // rectangles, boundingBox, scale);
241 if (boundingBox == null) {
245 int destWidth = (int) (scale * boundingBox.width);
246 int destHeight = (int) (scale * boundingBox.height);
252 int dx1 = bounds.x - boundingBox.x;
253 int dy1 = bounds.y - boundingBox.y;

Completed in 488 milliseconds

1 2 3 4