OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_objectBoundingBox
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/rendering/svg/
RenderSVGImage.h
56
virtual FloatRect objectBoundingBox() const { return
m_objectBoundingBox
; }
57
virtual FloatRect strokeBoundingBox() const { return
m_objectBoundingBox
; }
76
FloatRect
m_objectBoundingBox
;
RenderSVGImage.cpp
76
m_repaintBoundingBox =
m_objectBoundingBox
;
97
FloatRect oldBoundaries =
m_objectBoundingBox
;
98
m_objectBoundingBox
= FloatRect(image->x().value(image), image->y().value(image), image->width().value(image), image->height().value(image));
99
if (
m_objectBoundingBox
!= oldBoundaries) {
126
FloatRect destRect =
m_objectBoundingBox
;
162
if (
m_objectBoundingBox
.contains(localPoint)) {
RenderSVGContainer.h
56
virtual FloatRect objectBoundingBox() const { return
m_objectBoundingBox
; }
75
FloatRect
m_objectBoundingBox
;
RenderSVGRoot.h
72
virtual FloatRect objectBoundingBox() const { return
m_objectBoundingBox
; }
95
FloatRect
m_objectBoundingBox
;
RenderSVGContainer.cpp
151
m_objectBoundingBox
= FloatRect();
155
SVGRenderSupport::computeContainerBoundingBoxes(this,
m_objectBoundingBox
, m_strokeBoundingBox, m_repaintBoundingBox);
RenderSVGRoot.cpp
309
m_objectBoundingBox
= FloatRect();
313
SVGRenderSupport::computeContainerBoundingBoxes(this,
m_objectBoundingBox
, m_strokeBoundingBox, m_repaintBoundingBox);
Completed in 41 milliseconds