OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FloatRect
(Results
126 - 150
of
297
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/web/tests/
PopupContainerTest.cpp
79
const
FloatRect
screenRect(0, 0, screenMaxX, screenMaxY);
80
const
FloatRect
windowRect(0, 0, 512, 512);
86
static IntRect calculatePosition(const IntRect& initialRect, PopupContent* content,
FloatRect
windowRect =
FloatRect
(0, 0, 512, 512), bool isRTL = true)
89
const
FloatRect
screenRect(0, 0, screenMaxX, screenMaxY);
173
IntRect resultRect = calculatePosition(initialRect, &content,
FloatRect
(0, 0, screenMaxX, screenMaxY), false);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.h
102
static AffineTransform rotation(const
FloatRect
& boxRect, RotationDirection);
114
virtual
FloatRect
calculateBoundaries() const { return
FloatRect
(x(), y(), width(), height()); }
203
void alignSelectionRectToDevicePixels(
FloatRect
&);
205
inline AffineTransform InlineTextBox::rotation(const
FloatRect
& boxRect, RotationDirection rotationDirection)
InlineBox.h
135
virtual
FloatRect
calculateBoundaries() const
138
return
FloatRect
();
239
FloatRect
logicalFrameRect() const { return isHorizontal() ?
FloatRect
(m_topLeft.x(), m_topLeft.y(), m_logicalWidth, logicalHeight()) :
FloatRect
(m_topLeft.y(), m_topLeft.x(), m_logicalWidth, logicalHeight()); }
286
void flipForWritingMode(
FloatRect
&);
HitTestLocation.h
26
#include "platform/geometry/
FloatRect
.h"
76
bool intersects(const
FloatRect
&) const;
RenderEmbeddedObject.cpp
139
FloatRect
contentRect;
141
FloatRect
replacementTextRect;
164
bool RenderEmbeddedObject::getReplacementTextGeometry(const LayoutPoint& accumulatedOffset,
FloatRect
& contentRect, Path& path,
FloatRect
& replacementTextRect, Font& font, TextRun& run, float& textWidth) const
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp
119
FloatRect
repaintRect = m_object->repaintRectInLocalCoordinates();
259
FloatRect
SVGRenderingContext::clampedAbsoluteTargetRect(const
FloatRect
& absoluteTargetRect)
262
return
FloatRect
(absoluteTargetRect.location(), absoluteTargetRect.size().shrunkTo(maxImageBufferSize));
277
FloatRect
boundingBox = m_object->objectBoundingBox();
RenderSVGEllipse.cpp
51
m_fillBoundingBox =
FloatRect
();
52
m_strokeBoundingBox =
FloatRect
();
70
m_fillBoundingBox =
FloatRect
(m_center.x() - m_radii.width(), m_center.y() - m_radii.height(), 2 * m_radii.width(), 2 * m_radii.height());
RenderSVGForeignObject.cpp
93
void RenderSVGForeignObject::computeFloatRectForRepaint(const RenderLayerModelObject* repaintContainer,
FloatRect
& repaintRect, bool fixed) const
137
FloatRect
oldViewport = m_viewport;
142
m_viewport =
FloatRect
(viewportLocation, FloatSize(foreign->widthCurrentValue().value(lengthContext), foreign->heightCurrentValue().value(lengthContext)));
RenderSVGResourceMarker.cpp
84
FloatRect
RenderSVGResourceMarker::markerBoundaries(const AffineTransform& markerTransformation) const
86
FloatRect
coordinates = RenderSVGContainer::repaintRectInLocalCoordinates();
186
m_viewport =
FloatRect
(0, 0, w, h);
RenderSVGModelObject.cpp
52
void RenderSVGModelObject::computeFloatRectForRepaint(const RenderLayerModelObject* repaintContainer,
FloatRect
& repaintRect, bool fixed) const
75
FloatQuad containerRelativeQuad = localToContainerQuad(
FloatRect
(box), repaintContainer);
149
//
FloatRect
::intersects does not consider horizontal or vertical lines (because of isEmpty()).
151
static bool intersectsAllowingEmpty(const
FloatRect
& r, const
FloatRect
& other)
RenderSVGModelObject.h
53
virtual void computeFloatRectForRepaint(const RenderLayerModelObject* repaintContainer,
FloatRect
&, bool fixed = false) const OVERRIDE FINAL;
RenderSVGResource.h
48
class
FloatRect
;
SVGPathData.cpp
44
path.addEllipse(
FloatRect
(circle->cxCurrentValue().value(lengthContext) - r, circle->cyCurrentValue().value(lengthContext) - r, r * 2, r * 2));
58
path.addEllipse(
FloatRect
(ellipse->cxCurrentValue().value(lengthContext) - rx, ellipse->cyCurrentValue().value(lengthContext) - ry, rx * 2, ry * 2));
126
path.addRoundedRect(
FloatRect
(x, y, width, height), FloatSize(rx, ry));
130
path.addRect(
FloatRect
(x, y, width, height));
SVGRenderTreeAsText.h
34
class
FloatRect
;
RenderSVGShape.cpp
250
FloatRect
boundingBox = repaintRectInLocalCoordinates();
364
FloatRect
RenderSVGShape::markerRect(float strokeWidth) const
376
FloatRect
boundaries;
385
FloatRect
RenderSVGShape::calculateObjectBoundingBox() const
390
FloatRect
RenderSVGShape::calculateStrokeBoundingBox() const
393
FloatRect
strokeBoundingBox = m_fillBoundingBox;
402
FloatRect
strokeBoundingRect = usePath->strokeBoundingRect(strokeData);
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthContext.cpp
44
SVGLengthContext::SVGLengthContext(const SVGElement* context, const
FloatRect
& viewport)
50
FloatRect
SVGLengthContext::resolveRectangle(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const
FloatRect
& viewport, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height)
55
return
FloatRect
(x.value(lengthContext), y.value(lengthContext), width.value(lengthContext), height.value(lengthContext));
59
return
FloatRect
(x.value(lengthContext) + viewport.x(),
SVGParserUtilities.h
35
class
FloatRect
;
47
bool parseRect(const String&,
FloatRect
&);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.h
61
class
FloatRect
;
219
void setNeedsDisplayInRect(const
FloatRect
&);
267
bool visibleRectChangeRequiresFlush(const
FloatRect
& /* clipRect */) const { return false; }
277
void addRepaintRect(const
FloatRect
&);
279
void collectTrackedRepaintRects(Vector<
FloatRect
>&) const;
BitmapImage.cpp
31
#include "platform/geometry/
FloatRect
.h"
250
void BitmapImage::draw(GraphicsContext* ctxt, const
FloatRect
& dstRect, const
FloatRect
& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
255
void BitmapImage::draw(GraphicsContext* ctxt, const
FloatRect
& dstRect, const
FloatRect
& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
266
FloatRect
normDstRect = adjustForNegativeSize(dstRect);
267
FloatRect
normSrcRect = adjustForNegativeSize(srcRect);
268
normSrcRect.intersect(
FloatRect
(0, 0, bm->bitmap().width(), bm->bitmap().height()));
290
normDstRect =
FloatRect
(normDstRect.x(), normDstRect.y(), normDstRect.height(), normDstRect.width());
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatQuad.h
33
#include "platform/geometry/
FloatRect
.h"
55
FloatQuad(const
FloatRect
& inRect)
77
// Tests whether this quad can be losslessly represented by a
FloatRect
,
80
// corresponding
FloatRect
can be retrieved with boundingBox().
93
bool intersectsRect(const
FloatRect
&) const;
107
FloatRect
boundingBox() const;
FloatQuad.cpp
84
FloatRect
FloatQuad::boundingBox() const
92
return
FloatRect
(left, top, right - left, bottom - top);
117
static inline FloatPoint rightMostCornerToVector(const
FloatRect
& rect, const FloatSize& vector)
140
bool FloatQuad::intersectsRect(const
FloatRect
& rect) const
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeNonMacCommon.cpp
120
FloatRect
tickRect(rect.x(), yPos, rect.width(), 3);
124
FloatRect
tickStroke(rect.x(), yPos + 1, rect.width(), 1);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontHarfBuzz.cpp
38
#include "platform/geometry/
FloatRect
.h"
61
SkPoint* pos, const
FloatRect
& textRect)
99
const FloatPoint& point, const
FloatRect
& textRect) const
212
FloatRect
Font::selectionRectForComplexText(const TextRun& run,
218
return
FloatRect
();
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontWin.cpp
63
const
FloatRect
& textRect) const
157
FloatRect
Font::selectionRectForComplexText(const TextRun& run,
169
return
FloatRect
(left, point.y(),
172
return
FloatRect
(right, point.y(),
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEFlood.cpp
84
resultImage->context()->fillRect(
FloatRect
(FloatPoint(), absolutePaintRect().size()), color);
Completed in 308 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>