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

1 2 3

  /external/webkit/Source/WebKit/win/Interfaces/
DOMExtensions.idl 40 - (NSRect)boundingBox
42 HRESULT boundingBox([out, retval] LPRECT rect);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGImage.cpp 111 FloatRect boundingBox = repaintRectInLocalCoordinates();
112 if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(boundingBox, m_localTransform, paintInfo))
140 paintOutline(childPaintInfo.context, static_cast<int>(boundingBox.x()), static_cast<int>(boundingBox.y()),
141 static_cast<int>(boundingBox.width()), static_cast<int>(boundingBox.height()));
RenderSVGPath.cpp 208 FloatRect boundingBox = repaintRectInLocalCoordinates();
209 if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(boundingBox, m_localTransform, paintInfo))
236 paintOutline(childPaintInfo.context, static_cast<int>(boundingBox.x()), static_cast<int>(boundingBox.y()),
237 static_cast<int>(boundingBox.width()), static_cast<int>(boundingBox.height()));
RenderSVGInlineText.cpp 131 IntRect boundingBox;
133 boundingBox.unite(box->calculateBoundaries());
134 return boundingBox;
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderNode.mm 123 IntRect boundingBox = inlineFlow->borderBoundingBox();
124 x = boundingBox.x();
125 y = boundingBox.y();
126 width = boundingBox.width();
127 height = boundingBox.height();
  /external/webkit/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 125 void drawElementTitle(GraphicsContext& context, Node* node, const IntRect& boundingBox, const IntRect& anchorBox, const FloatRect& overlayRect, WebCore::Settings* settings)
159 nodeTitle += String::number(boundingBox.width());
161 nodeTitle += String::number(boundingBox.height());
224 IntRect boundingBox = renderer->absoluteBoundingBoxRect(true);
226 boundingBox.move(mainFrameOffset);
228 IntRect titleAnchorBox = boundingBox;
232 if (!overlayRect.contains(boundingBox) && !boundingBox.contains(enclosingIntRect(overlayRect)))
288 drawElementTitle(context, node, boundingBox, titleAnchorBox, overlayRect, settings);
  /external/webkit/Source/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/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 237 const FloatRect& boundingBox() const { return m_boundingBox; }
318 builder.append(" boundingBox=");
319 builder.append(valueToString(boundingBox()));
436 const FloatRect& boundingBox()
442 m_boundingBox = cur->boundingBox();
444 m_boundingBox.unite(cur->boundingBox());
719 const FloatRect& boundingBox = seg->boundingBox();
720 if (boundingBox.y() <= y && y <= boundingBox.maxY()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCGWin.cpp 134 FloatRect boundingBox = CGRectApplyAffineTransform(box, CGAffineTransformMakeScale(scale, -scale));
136 boundingBox.setWidth(boundingBox.width() + m_syntheticBoldOffset);
138 return 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/webkit/Source/WebCore/rendering/
RenderInline.h 140 IntRect boundingBox = linesBoundingBox();
141 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/webkit/Source/WebCore/editing/
SpellingCorrectionController.cpp 156 FloatRect boundingBox = windowRectForRange(rangeToReplace.get());
157 if (boundingBox.isEmpty())
163 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, replacement, Vector<String>());
297 FloatRect boundingBox = windowRectForRange(m_correctionPanelInfo.rangeToBeReplaced.get());
298 if (!boundingBox.isEmpty())
299 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, m_correctionPanelInfo.replacementString, Vector<String>());
315 FloatRect boundingBox = windowRectForRange(m_correctionPanelInfo.rangeToBeReplaced.get());
316 if (!boundingBox.isEmpty())
317 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, topSuggestion, suggestions);
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 461 FloatRect boundingBox;
462 boundingBox = CTFontGetBoundingRectsForGlyphs(m_platformData.ctFont(), platformData().orientation() == Vertical ? kCTFontVerticalOrientation : kCTFontHorizontalOrientation, &glyph, 0, 1);
463 boundingBox.setY(-boundingBox.maxY());
465 boundingBox.setWidth(boundingBox.width() + m_syntheticBoldOffset);
467 return boundingBox;
  /external/webkit/Source/WebCore/bindings/objc/
DOMExtensions.h 51 - (NSRect)boundingBox WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);
DOMPrivate.h 47 - (NSRect)boundingBox;
DOMHTML.mm 114 NSRect result = [self 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/webkit/Source/WebCore/svg/
SVGElement.h 103 bool boundingBox(FloatRect&, SVGLocatable::StyleUpdateStrategy = SVGLocatable::AllowStyleUpdate) const;
  /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;
  /external/webkit/Source/WebKit/android/jni/
AndroidHitTestResult.cpp 149 IntRect boundingBox = quads[i].enclosingBoundingBox();
150 boundingBox.move(-frameOffset.x(), -frameOffset.y());
151 m_highlightRects.append(boundingBox);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.h 116 void endShadowDraw(const FloatRect& boundingBox);
  /external/webkit/Source/WebKit/win/
WebElementPropertyBag.cpp 147 IntRect boundingBox = m_result->innerNonSharedNode() && m_result->innerNonSharedNode()->renderer() ?
149 V_ARRAY(pVar) = MarshallingHelpers::intRectToSafeArray(boundingBox);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Quad.java 70 public Rectangle boundingBox() {

Completed in 371 milliseconds

1 2 3