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

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBasicShapes.cpp89 void BasicShapeCircle::path(Path& path, const FloatRect& boundingBox) argument
92 FloatPoint center = floatPointForCenterCoordinate(m_centerX, m_centerY, boundingBox.size());
93 float radius = floatValueForRadiusInBox(boundingBox.size());
95 center.x() - radius + boundingBox.x(),
96 center.y() - radius + boundingBox.y(),
134 void BasicShapeEllipse::path(Path& path, const FloatRect& boundingBox) argument
137 FloatPoint center = floatPointForCenterCoordinate(m_centerX, m_centerY, boundingBox.size());
138 float radiusX = floatValueForRadiusInBox(m_radiusX, center.x(), boundingBox.width());
139 float radiusY = floatValueForRadiusInBox(m_radiusY, center.y(), boundingBox.height());
141 center.x() - radiusX + boundingBox
170 path(Path& path, const FloatRect& boundingBox) argument
219 floatSizeForLengthSize(const LengthSize& lengthSize, const FloatRect& boundingBox) argument
225 path(Path& path, const FloatRect& boundingBox) argument
[all...]
H A DRenderStyle.cpp901 void RenderStyle::applyTransform(TransformationMatrix& transform, const FloatRect& boundingBox, ApplyTransformOrigin applyOrigin) const argument
906 float offsetX = transformOriginX().type() == Percent ? boundingBox.x() : 0;
907 float offsetY = transformOriginY().type() == Percent ? boundingBox.y() : 0;
910 transform.translate3d(floatValueForLength(transformOriginX(), boundingBox.width()) + offsetX,
911 floatValueForLength(transformOriginY(), boundingBox.height()) + offsetY,
917 transformOperations[i]->apply(transform, boundingBox.size());
920 transform.translate3d(-floatValueForLength(transformOriginX(), boundingBox.width()) - offsetX,
921 -floatValueForLength(transformOriginY(), boundingBox.height()) - offsetY,
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DTouchDisambiguation.cpp69 static float scoreTouchTarget(IntPoint touchPoint, int padding, IntRect boundingBox) argument
71 if (boundingBox.isEmpty())
77 IntSize distance = boundingBox.differenceToPoint(touchPoint);
H A DPrintContext.cpp264 IntRect boundingBox = renderer->absoluteBoundingBoxRect(); local
265 if (!pageRect.intersects(boundingBox))
270 graphicsContext.setURLFragmentForRect(name, boundingBox);
272 graphicsContext.setURLForRect(url, boundingBox);
281 IntRect boundingBox = renderer->absoluteBoundingBoxRect(); local
282 if (!pageRect.intersects(boundingBox))
284 IntPoint point = boundingBox.minXMinYCorner();
H A DTouchAdjustment.cpp59 IntRect boundingBox() const { return m_quad.enclosingBoundingBox(); } function in class:blink::TouchAdjustment::SubtargetGeometry
335 IntRect rect = subtarget.boundingBox();
358 IntRect rect = subtarget.boundingBox();
406 IntRect contentBounds = geom.boundingBox();
464 targetArea = it->boundingBox();
474 targetArea = it->boundingBox();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestLocation.h58 IntRect boundingBox() const { return m_boundingBox; } function in class:blink::HitTestLocation
H A DRenderInline.h158 IntRect boundingBox = linesBoundingBox(); variable
159 return IntRect(0, 0, boundingBox.width(), boundingBox.height());
H A DRenderBox.cpp2761 LayoutRect boundingBox = flow->linesBoundingBox(); local
2763 heightResult = boundingBox.height();
2765 heightResult = boundingBox.width();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGInlineText.cpp131 FloatRect boundingBox; local
133 boundingBox.unite(box->calculateBoundaries());
134 return boundingBox;
H A DSVGRenderingContext.cpp280 FloatRect boundingBox = m_object->objectBoundingBox(); local
285 IntSize expandedBoundingBox = expandedIntSize(boundingBox.size());
293 if ((imageBuffer = m_paintInfo->context->createRasterBuffer(expandedIntSize(boundingBox.size())))) {
295 bufferedRenderingContext->translate(-boundingBox.x(), -boundingBox.y());
303 m_paintInfo->context->drawImageBuffer(imageBuffer.get(), boundingBox);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPolygon.h62 FloatRect boundingBox() const { return m_boundingBox; } function in class:blink::FloatPolygon
H A DFloatQuad.cpp82 FloatRect FloatQuad::boundingBox() const function in class:blink::FloatQuad
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimationsTest.cpp118 bool getAnimationBounds(FloatBox& boundingBox, const AnimationEffect& effect, double minValue, double maxValue) argument
120 return CompositorAnimations::instance()->getAnimatedBoundingBox(boundingBox, effect, minValue, maxValue);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp976 LayoutRect ContainerNode::boundingBox() const function in class:blink::ContainerNode
H A DRange.cpp1415 IntRect Range::boundingBox() const function in class:blink::Range
1768 result.unite(quads[i].boundingBox());
H A DNode.cpp614 LayoutRect Node::boundingBox() const function in class:blink::Node
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXNodeObject.cpp1281 LayoutRect boundingBox; local
1286 boundingBox.setSize(LayoutSize(parentRect.width(), LayoutUnit(std::min(10.0f, parentRect.height().toFloat()))));
1287 boundingBox.setLocation(parentRect.location());
1292 return boundingBox;
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusGraphics.h1336 OUT RectF *boundingBox,
1348 boundingBox,
1367 RectF boundingBox; local
1382 size ? &boundingBox : NULL,
1389 size->Width = boundingBox.Width;
1390 size->Height = boundingBox.Height;
1403 OUT RectF *boundingBox
1415 boundingBox,
1428 OUT RectF *boundingBox
1438 boundingBox,
1330 MeasureString( IN const WCHAR *string, IN INT length, IN const Font *font, IN const RectF &layoutRect, IN const StringFormat *stringFormat, OUT RectF *boundingBox, OUT INT *codepointsFitted = 0, OUT INT *linesFilled = 0 ) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp696 PassRefPtrWillBeRawPtr<ClientRect> Internals::boundingBox(Element* element) function in class:blink::Internals
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp758 IntRect boundingBox(
768 boundingBox.move(pinchViewportOffset);
772 findGoodTouchTargets(boundingBox, mainFrameImpl()->frame(), goodTargets, highlightNodes);
776 && m_client->didTapMultipleTargets(pinchViewportOffset, boundingBox, goodTargets)) {
946 IntRect boundingBox = isHTMLHtmlElement(root) local
950 boundingBox = root->document().frame()->view()->contentsToWindow(boundingBox);
951 boundingBox.scale(pageScaleFactor());
952 bounds = boundingBox;
2812 IntRect textboxRect = focusedNode->document().view()->contentsToWindow(pixelSnappedIntRect(focusedNode->Node::boundingBox()));
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 7856 milliseconds