OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unite
(Results
1 - 25
of
47
) sorted by null
1
2
/external/webkit/WebCore/rendering/
GapRects.h
35
void uniteLeft(const IntRect& r) { m_left.
unite
(r); }
36
void uniteCenter(const IntRect& r) { m_center.
unite
(r); }
37
void uniteRight(const IntRect& r) { m_right.
unite
(r); }
38
void
unite
(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
function in struct:WebCore::GapRects
43
result.
unite
(m_center);
44
result.
unite
(m_right);
SVGMarkerLayoutInfo.cpp
96
bounds.
unite
(markerContent->markerBoundaries(layout.matrix));
RenderPath.cpp
127
m_cachedLocalStrokeBBox.
unite
(m_path.strokeBoundingRect(&strokeStyle));
160
m_cachedLocalRepaintRect.
unite
(markerBoundingBox());
RenderOverflow.h
110
combinedRect.
unite
(visualOverflowRect());
RenderSVGInlineText.cpp
129
rect.
unite
(box->selectionRect(0, 0, startPos, endPos));
RenderLayerCompositor.cpp
345
unionBounds.
unite
(childUnionBounds);
357
unionBounds.
unite
(childUnionBounds);
368
unionBounds.
unite
(childUnionBounds);
379
unionBounds.
unite
(curAbsBounds);
[
all
...]
RenderSVGText.cpp
177
boundingBox.
unite
(FloatRect(box->x(), box->y(), box->width(), box->height()));
SVGRenderSupport.cpp
234
boundingBox.
unite
(childBBoxInLocalCoords);
/external/webkit/WebCore/platform/graphics/
IntRect.cpp
78
void IntRect::
unite
(const IntRect& other)
function in class:WebCore::IntRect
113
result.
unite
(rects[i]);
FloatRect.h
109
void
unite
(const FloatRect&);
180
c.
unite
(b);
IntRect.h
121
void
unite
(const IntRect&);
185
c.
unite
(b);
FloatRect.cpp
84
void FloatRect::
unite
(const FloatRect& other)
function in class:WebCore::FloatRect
/external/webkit/WebCore/accessibility/
AccessibilityTableHeaderContainer.cpp
83
m_headerRect.
unite
(m_children[k]->elementRect());
AccessibilityTableColumn.cpp
181
m_columnRect.
unite
(cell->elementRect());
/external/webkit/WebCore/platform/graphics/filters/
FilterEffect.cpp
48
uniteEffectRect.
unite
(in2->calculateEffectRect(filter));
/external/webkit/WebCore/svg/graphics/filters/
SVGFEMerge.cpp
61
uniteEffectRect.
unite
(m_mergeInputs[i]->calculateEffectRect(filter));
/external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp
232
// FIXME: We just
unite
all focus ring rects into one for now.
240
finalFocusRect.
unite
(focusRect);
/external/webkit/WebCore/svg/
SVGPatternElement.cpp
227
patternContentBoundaries.
unite
(n->renderer()->repaintRectInLocalCoordinates());
244
patternBoundariesIncludingOverflow.
unite
(patternContentBoundaries);
SVGMaskElement.cpp
189
repaintRect.
unite
(node->renderer()->localToParentTransform().mapRect(node->renderer()->repaintRectInLocalCoordinates()));
/external/webkit/WebCore/svg/graphics/
SVGResourceClipper.cpp
80
m_clipperBoundingBox.
unite
(clipPathRect);
SVGResourceFilter.cpp
102
paintRect.
unite
(renderer->markerBoundingBox());
/development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp
102
//
Unite
interface info structure and buffer big enough to contain the
140
//
Unite
interface info structure and buffer big enough to contain the
/external/webkit/WebKit/android/nav/
CachedNode.cpp
71
inner->
unite
(*ring);
99
bounds.
unite
(mCursorRing[partIndex]);
/external/webkit/WebCore/html/
HTMLCanvasElement.cpp
206
m_dirtyRect.
unite
(r);
/external/webkit/WebCore/platform/
ScrollView.cpp
733
cornerRect.
unite
(IntRect(m_horizontalScrollbar->width(),
740
cornerRect.
unite
(IntRect(width() - m_verticalScrollbar->width(),
[
all
...]
Completed in 2123 milliseconds
1
2