Searched defs:boundingBox (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
H A DSimpleFontDataCGWin.cpp134 FloatRect boundingBox = CGRectApplyAffineTransform(box, CGAffineTransformMakeScale(scale, -scale)); local
136 boundingBox.setWidth(boundingBox.width() + m_syntheticBoldOffset);
138 return boundingBox;
/external/webkit/Source/WebCore/rendering/
H A DRenderInline.h140 IntRect boundingBox = linesBoundingBox(); local
141 return IntRect(0, 0, boundingBox.width(), boundingBox.height());
H A DRenderView.cpp776 IntRect boundingBox = forRenderer->borderBoundingBox(); local
777 if (boundingBox.width() > m_legacyPrinting.m_truncatorWidth) {
778 m_legacyPrinting.m_truncatorWidth = boundingBox.width();
H A DRenderBox.cpp2207 IntRect boundingBox = flow->linesBoundingBox(); local
2209 heightResult = boundingBox.height();
2211 heightResult = boundingBox.width();
H A DRenderLayer.cpp969 IntRect clipRect = l->boundingBox(l);
974 IntRect clipRect = l->boundingBox(rootLayer);
2553 IntRect boundingBox = layer->boundingBox(rootLayer); local
2555 if (!boundingBox.intersects(it->second))
3628 return boundingBox(rootLayer).intersects(damageRect);
3678 IntRect RenderLayer::boundingBox(const RenderLayer* ancestorLayer) const function in class:WebCore::RenderLayer
3693 return boundingBox(root());
/external/webkit/Source/WebKit/win/
H A DWebElementPropertyBag.cpp147 IntRect boundingBox = m_result->innerNonSharedNode() && m_result->innerNonSharedNode()->renderer() ? local
149 V_ARRAY(pVar) = MarshallingHelpers::intRectToSafeArray(boundingBox);
H A DDOMCoreClasses.cpp847 HRESULT STDMETHODCALLTYPE DOMElement::boundingBox( function in class:DOMElement
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatQuad.cpp77 FloatRect FloatQuad::boundingBox() const function in class:WebCore::FloatQuad
/external/webkit/Source/WebCore/inspector/
H A DDOMNodeHighlighter.cpp125 void drawElementTitle(GraphicsContext& context, Node* node, const IntRect& boundingBox, const IntRect& anchorBox, const FloatRect& overlayRect, WebCore::Settings* settings) argument
159 nodeTitle += String::number(boundingBox.width());
161 nodeTitle += String::number(boundingBox.height());
224 IntRect boundingBox = renderer->absoluteBoundingBoxRect(true); local
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/rendering/svg/
H A DRenderSVGInlineText.cpp131 IntRect boundingBox; local
133 boundingBox.unite(box->calculateBoundaries());
134 return boundingBox;
/external/webkit/Source/WebCore/svg/
H A DSVGElement.cpp192 bool SVGElement::boundingBox(FloatRect& rect, SVGLocatable::StyleUpdateStrategy styleUpdateStrategy) const function in class:WebCore::SVGElement
/external/webkit/Source/WebKit/android/jni/
H A DAndroidHitTestResult.cpp149 IntRect boundingBox = quads[i].enclosingBoundingBox(); local
150 boundingBox.move(-frameOffset.x(), -frameOffset.y());
151 m_highlightRects.append(boundingBox);
/external/webkit/Source/WebCore/editing/
H A DSpellingCorrectionController.cpp156 FloatRect boundingBox = windowRectForRange(rangeToReplace.get()); local
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()); local
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()); local
316 if (!boundingBox.isEmpty())
317 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, topSuggestion, suggestions);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnPathProcessor.cpp237 const FloatRect& boundingBox() const { return m_boundingBox; } function in class:WebCore::LoopBlinnPathProcessorImplementation::Segment
318 builder.append(" boundingBox=");
319 builder.append(valueToString(boundingBox()));
436 const FloatRect& boundingBox() function in class:WebCore::LoopBlinnPathProcessorImplementation::Contour
442 m_boundingBox = cur->boundingBox();
444 m_boundingBox.unite(cur->boundingBox());
719 const FloatRect& boundingBox = seg->boundingBox(); local
720 if (boundingBox.y() <= y && y <= boundingBox
749 const FloatRect& boundingBox = seg->boundingBox(); local
805 const FloatRect& boundingBox = querySegment->contour()->boundingBox(); local
986 FloatRect boundingBox; local
[all...]
/external/webkit/Source/WebCore/dom/
H A DRange.cpp1612 IntRect Range::boundingBox() function in class:WebCore::Range
1991 result.unite(quads[i].boundingBox());
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGLES2Canvas.cpp785 void GLES2Canvas::endShadowDraw(const FloatRect& boundingBox) argument
793 FloatRect shadowBoundingBox(m_state->m_ctm.mapRect(boundingBox));
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityRenderObject.cpp2549 IntRect boundingBox = dataRange->boundingBox(); local
2551 if (rangeString.length() > 1 && !boundingBox.isEmpty())
2552 ourrect = boundingBox;

Completed in 4242 milliseconds