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

1 2

  /external/webkit/WebKit/win/Interfaces/
DOMExtensions.idl 40 - (NSRect)boundingBox
42 HRESULT boundingBox([out, retval] LPRECT rect);
  /external/webkit/WebCore/svg/graphics/
SVGResourceClipper.cpp 86 void SVGResourceClipper::applyClip(GraphicsContext* context, const FloatRect& boundingBox) const
105 transform.translate(boundingBox.x(), boundingBox.y());
106 transform.scaleNonUniform(boundingBox.width(), boundingBox.height());
SVGResourceClipper.h 81 void applyClip(GraphicsContext*, const FloatRect& boundingBox) const;
  /external/webkit/WebCore/platform/graphics/
FloatQuad.h 75 bool isEmpty() const { return boundingBox().isEmpty(); }
80 // corresponding FloatRect can be retrieved with boundingBox().
91 FloatRect boundingBox() const;
94 return enclosingIntRect(boundingBox());
FloatQuad.cpp 77 FloatRect FloatQuad::boundingBox() const
  /external/webkit/WebCore/rendering/
RenderPath.cpp 219 FloatRect boundingBox = repaintRectInLocalCoordinates();
220 FloatRect nonLocalBoundingBox = m_localTransform.mapRect(boundingBox);
235 if (prepareToRenderSVGContent(this, childPaintInfo, boundingBox, filter)) {
247 paintOutline(childPaintInfo.context, static_cast<int>(boundingBox.x()), static_cast<int>(boundingBox.y()),
248 static_cast<int>(boundingBox.width()), static_cast<int>(boundingBox.height()), style());
RenderSVGText.cpp 133 rects.append(enclosingIntRect(localToAbsoluteQuad(boxRect).boundingBox()));
170 FloatRect boundingBox;
177 boundingBox.unite(FloatRect(box->x(), box->y(), box->width(), box->height()));
180 boundingBox.move(x(), y());
181 return boundingBox;
RenderInline.h 119 IntRect boundingBox = linesBoundingBox();
120 return IntRect(0, 0, boundingBox.width(), boundingBox.height());
RenderSVGInline.cpp 64 rects.append(enclosingIntRect(localToAbsoluteQuad(rect).boundingBox()));
SVGRenderSupport.h 47 // pass the wrong RenderObject* and boundingBox to these functions.
48 static bool prepareToRenderSVGContent(RenderObject*, RenderObject::PaintInfo&, const FloatRect& boundingBox, SVGResourceFilter*&, SVGResourceFilter* rootFilter = 0);
RenderSVGContainer.cpp 99 FloatRect boundingBox = repaintRectInLocalCoordinates();
103 continueRendering = prepareToRenderSVGContent(this, childPaintInfo, boundingBox, filter);
SVGRenderSupport.cpp 228 FloatRect boundingBox;
234 boundingBox.unite(childBBoxInLocalCoords);
237 return boundingBox;
RenderSVGRoot.cpp 151 FloatRect boundingBox = repaintRectInLocalCoordinates();
155 continueRendering = prepareToRenderSVGContent(this, childPaintInfo, boundingBox, filter);
RenderSVGInlineText.cpp 114 return enclosingIntRect(repaintQuad.boundingBox());
RenderView.cpp 678 IntRect boundingBox = forRenderer->borderBoundingBox();
679 if (boundingBox.width() > m_truncatorWidth) {
680 m_truncatorWidth = boundingBox.width();
RenderInline.cpp 578 IntRect boundingBox(linesVisibleOverflowBoundingBox());
579 int left = boundingBox.x();
580 int top = boundingBox.y();
594 IntRect r(-ow + left, -ow + top, boundingBox.width() + ow * 2, boundingBox.height() + ow * 2);
    [all...]
  /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/webkit/WebCore/bindings/objc/
DOMPrivate.h 47 - (NSRect)boundingBox;
DOMExtensions.h 51 - (NSRect)boundingBox WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);
DOMHTML.mm 113 NSRect result = [self boundingBox];
DOM.mm 352 - (NSRect)boundingBox
398 - (NSRect)boundingBox
402 return core(self)->boundingBox();
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 121 * Verifies that {@link android.gesture.GestureStroke#boundingBox} has expected values for
126 mHelper.assertLineBoundingBox(line.boundingBox);
  /external/webkit/WebKit/win/
WebElementPropertyBag.cpp 149 IntRect boundingBox = m_result->innerNonSharedNode() && m_result->innerNonSharedNode()->renderer() ?
151 V_ARRAY(pVar) = MarshallingHelpers::intRectToSafeArray(boundingBox);
  /external/webkit/WebCore/dom/
Range.h 107 IntRect boundingBox();
  /external/webkit/WebCore/platform/graphics/transforms/
AffineTransform.cpp 324 return result.boundingBox();

Completed in 111 milliseconds

1 2