Searched refs:rects (Results 1 - 25 of 81) sorted by relevance

1234

/macosx-10.9.5/WebCore-7537.78.1/page/
H A DGestureTapHighlighter.cpp118 // The rounding check depends on the rects not intersecting eachother,
146 Vector<IntRect> rects; local
148 o->addFocusRingRects(rects, frameOffset);
150 if (rects.isEmpty())
160 // in the test expression, in case of empty rects vector.
161 int end = rects.size() - 1;
163 mid.uniteIfNonZero(rects.at(i));
169 if (rects.size() && !rects.first().isEmpty()) {
174 if (mid.isEmpty() || mid.intersects(rects
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DDOMExtensions.idl47 HRESULT lineBoxRects([in, size_is(cRects)] RECT* rects, [in] int cRects);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMNode.mm114 Vector<WebCore::IntRect> rects;
115 _impl->textRects(rects);
116 return WebKit::toNSArray(rects);
H A DWKDOMRange.mm146 Vector<WebCore::IntRect> rects;
147 _impl->textRects(rects);
148 return WebKit::toNSArray(rects);
H A DWKDOMInternals.mm168 NSArray *toNSArray(const Vector<WebCore::IntRect>& rects)
170 size_t size = rects.size();
173 [array addObject:[NSValue valueWithRect:rects[i]]];
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXEntry.c198 XRectangle rects[1];
251 rects[0].x = bounds.origin.x;
252 rects[0].y = 0; local
253 rects[0].width = Tk_Width(tkwin);
254 rects[0].height = Tk_Height(tkwin);
255 XFillRectangles(Tk_Display(tkwin), d, bgGC, rects, 1);
195 XRectangle rects[1]; local
/macosx-10.9.5/tcl-102/tk84/tk/macosx/
H A DtkMacOSXEntry.c255 XRectangle rects[1]; local
306 rects[0].x = inBounds.left;
307 rects[0].y = 0;
308 rects[0].width = Tk_Width(tkwin);
309 rects[0].height = Tk_Height(tkwin);
310 XFillRectangles(Tk_Display(tkwin), d, bgGC, rects, 1); local
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DDrawingAreaImpl.cpp653 static bool shouldPaintBoundsRect(const IntRect& bounds, const Vector<IntRect>& rects) argument
658 if (rects.size() <= 1 || rects.size() > rectThreshold)
661 // Attempt to guess whether or not we should use the region bounds rect or the individual rects.
666 for (size_t i = 0; i < rects.size(); ++i)
667 rectsArea += rects[i].width() * rects[i].height();
710 Vector<IntRect> rects = m_dirtyRegion.rects();
712 if (shouldPaintBoundsRect(bounds, rects)) {
[all...]
H A DFindController.cpp194 Vector<IntRect> rects; local
195 m_findMatches[i]->textRects(rects);
196 matchRects.append(rects);
302 // We want the text rects in selection rect coordinates.
351 Vector<IntRect> rects; local
366 rects.append(*it);
370 return rects;
419 Vector<IntRect> rects = rectsForTextMatches(); local
431 for (size_t i = 0; i < rects.size(); ++i) {
432 IntRect whiteFrameRect = rects[
[all...]
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkUtil.c554 XRectangle rects[4];
556 rects[0].x = padding;
557 rects[0].y = padding;
558 rects[0].width = Tk_Width(tkwin) - (2 * padding);
559 rects[0].height = width;
560 rects[1].x = padding;
561 rects[1].y = Tk_Height(tkwin) - width - padding;
562 rects[1].width = Tk_Width(tkwin) - (2 * padding);
563 rects[1].height = width; local
564 rects[
545 XRectangle rects[4]; local
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkUtil.c556 XRectangle rects[4];
558 rects[0].x = padding;
559 rects[0].y = padding;
560 rects[0].width = Tk_Width(tkwin) - (2 * padding);
561 rects[0].height = width;
562 rects[1].x = padding;
563 rects[1].y = Tk_Height(tkwin) - width - padding;
564 rects[1].width = Tk_Width(tkwin) - (2 * padding); local
565 rects[1].height = width;
566 rects[
546 XRectangle rects[4]; local
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgremoteoperation.py39 def callbackRefresh(count, rects, info):
41 self.failUnlessIsInstance(rects, tuple)
43 for i in rects:
57 #err, rects, count = CGWaitForScreenRefreshRects(None, None)
59 #self.failUnlessIsInstance(rects, tuple)
61 #for i in rects:
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgremoteoperation.py39 def callbackRefresh(count, rects, info):
41 self.assertIsInstance(rects, tuple)
43 for i in rects:
57 #err, rects, count = CGWaitForScreenRefreshRects(None, None)
59 #self.assertIsInstance(rects, tuple)
61 #for i in rects:
/macosx-10.9.5/WebCore-7537.78.1/plugins/blackberry/
H A DPluginViewPrivateBlackBerry.cpp97 void PluginViewPrivate::setVisibleRects(const NPRect rects[], int32_t count) argument
105 IntRect addRect = IntRect(rects[i].left, rects[i].top, rects[i].right - rects[i].left, rects[i].bottom - rects[i].top);
H A DNPCallbacksBlackBerry.h60 void setVisibleRects(NPP, const NPRect rects[], int32_t count);
H A DPluginViewPrivateBlackBerry.h40 void setVisibleRects(const NPRect rects[], int32_t count);
/macosx-10.9.5/ruby-104/ruby/tool/
H A Dtranscode-tblgen.rb116 rects = []
123 rects << ['', '', action]
127 rects << [hex, hex, action]
167 rects << [min, max, action]
174 rects
191 def self.build_tree(rects)
192 expand(rects) {|prefix, actions|
198 rects = parse_to_rects(mapping)
199 tree = build_tree(rects)
209 rects_list.each_with_index {|rects,
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/
H A DScrollingCoordinator.cpp162 static void accumulateRendererTouchEventTargetRects(Vector<IntRect>& rects, const RenderObject* renderer, const IntRect& parentRect = IntRect()) argument
174 rects.append(r);
181 accumulateRendererTouchEventTargetRects(rects, child, adjustedParentRect);
184 static void accumulateDocumentEventTargetRects(Vector<IntRect>& rects, const Document* document) argument
207 rects.append(r);
214 accumulateDocumentEventTargetRects(rects, toDocument(touchTarget));
219 accumulateRendererTouchEventTargetRects(rects, renderer);
223 void ScrollingCoordinator::computeAbsoluteTouchEventTargetRects(const Document* document, Vector<IntRect>& rects) argument
229 // FIXME: These rects won't be properly updated if the renderers are in a sub-tree that scrolls.
230 accumulateDocumentEventTargetRects(rects, documen
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/win/
H A DLegacyCACFLayerTreeHost.cpp274 Vector<D3DRECT, 64> rects; local
282 rects.append(rect);
288 if (rects.isEmpty())
291 m_d3dDevice->Clear(rects.size(), rects.data(), D3DCLEAR_TARGET, 0, 1.0f, 0);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DIntRect.cpp151 IntRect unionRect(const Vector<IntRect>& rects) argument
155 size_t count = rects.size();
157 result.unite(rects[i]);
H A DLayoutRect.cpp118 LayoutRect unionRect(const Vector<LayoutRect>& rects) argument
122 size_t count = rects.size();
124 result.unite(rects[i]);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DGraphicsContextMac.mm68 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color)
78 unsigned rectCount = rects.size();
80 CGPathAddRect(focusRingPath.get(), 0, CGRectInset(rects[i], -offset, -offset));
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOM.mm170 static NSArray *kit(const Vector<IntRect>& rects)
172 size_t size = rects.size();
175 [array addObject:[NSValue valueWithRect:rects[i]]];
295 Vector<WebCore::IntRect> rects;
296 core(self)->textRects(rects);
297 return kit(rects);
339 Vector<WebCore::IntRect> rects;
341 core(self)->textRects(rects);
342 return kit(rects);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderSelectionInfo.h96 GapRects rects() const { return m_rects; } function in class:WebCore::RenderBlockSelectionInfo
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp519 static void coalesceRectsIfPossible(const IntRect& clipRect, Vector<IntRect>& rects) argument
523 bool useUnionedRect = (rects.size() <= 1) || (rects.size() > cRectThreshold);
525 // Attempt to guess whether or not we should use the unioned rect or the individual rects.
530 for (size_t i = 0; i < rects.size(); ++i)
531 singlePixels += rects[i].width() * rects[i].height();
540 rects.clear();
541 rects.append(clipRect);
549 Vector<IntRect> rects
[all...]

Completed in 226 milliseconds

1234