HomeSort by relevance Sort by last modified time
    Searched refs:selectionRect (Results 1 - 23 of 23) sorted by null

  /external/webkit/WebCore/editing/mac/
SelectionControllerMac.mm 54 IntRect selectionRect = absoluteCaretBounds();
57 selectionRect = frameView->contentsToScreen(selectionRect);
59 CGRect cgCaretRect = CGRectMake(selectionRect.x(), selectionRect.y(), selectionRect.width(), selectionRect.height());
  /external/webkit/WebCore/rendering/
EllipsisBox.h 45 IntRect selectionRect(int tx, int ty);
SVGInlineTextBox.h 65 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
RenderText.cpp 225 // function to take ints causes various internal mismatches. But selectionRect takes ints, and
226 // passing UINT_MAX to it causes trouble. Ideally we'd change selectionRect to take unsigneds, but
240 IntRect selectionRect = box->selectionRect(absPos.x(), absPos.y(), start, end);
241 r.setHeight(selectionRect.height());
242 r.setY(selectionRect.y());
247 IntRect r = box->selectionRect(absPos.x(), absPos.y(), start, realEnd);
250 // change the height and y position because selectionRect uses selection-specific values
270 // function to take ints causes various internal mismatches. But selectionRect takes ints, and
271 // passing UINT_MAX to it causes trouble. Ideally we'd change selectionRect to take unsigneds, but
    [all...]
InlineTextBox.h 72 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
EllipsisBox.cpp 71 IntRect EllipsisBox::selectionRect(int tx, int ty)
RenderSVGInlineText.cpp 129 rect.unite(box->selectionRect(0, 0, startPos, endPos));
SVGInlineTextBox.cpp 188 // Helper class for selectionRect()
210 FloatRect selectionRect() const
298 IntRect rect = selectionRect(0, 0, 0, len());
307 IntRect SVGInlineTextBox::selectionRect(int, int, int startPos, int endPos)
312 // TODO: Actually respect startPos/endPos - we're returning the _full_ selectionRect
322 return enclosingIntRect(walkerCallback.selectionRect());
RenderWidget.cpp 291 // FIXME: selectionRect() is in absolute, not painting coordinates.
292 paintInfo.context->fillRect(selectionRect(), selectionBackgroundColor(), style()->colorSpace());
RenderObject.h 678 IntRect selectionRect(bool clipToVisibleContent = true) { return selectionRectForRepaint(0, clipToVisibleContent); }
    [all...]
InlineTextBox.cpp 106 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos)
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebDocumentPrivate.h 52 - (NSRect)selectionRect;
59 // NOTE: This method is equivalent to selectionRect and shouldn't be used; use selectionRect instead.
WebPDFView.mm 823 - (NSRect)selectionRect
846 return [NSArray arrayWithObject:[NSValue valueWithRect:[self selectionRect]]];
871 NSImage* selectionImage = [[[NSImage alloc] initWithSize:[self selectionRect].size] autorelease];
885 return [self selectionRect];
    [all...]
WebHTMLView.mm     [all...]
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.h 151 bool wrapWithinFrame, WebRect* selectionRect);
249 const WebRect& selectionRect, int activeMatchOrdinal, int identifier);
WebFrameImpl.cpp     [all...]
  /external/webkit/WebKit/chromium/public/
WebFrame.h 392 // make it visible if needed) and fill in selectionRect with the
403 WebRect* selectionRect) = 0;
  /external/webkit/WebKit/win/Interfaces/
IWebViewPrivate.idl 99 HRESULT selectionRect([in, out] RECT* rc);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
PixelDumpSupportMac.mm 247 NSRect rect = [documentView convertRect:[(id <WebDocumentSelection>)documentView selectionRect] fromView:nil];
  /external/webkit/WebCore/page/
Frame.cpp     [all...]
  /external/webkit/WebKit/win/
WebView.h 634 virtual HRESULT STDMETHODCALLTYPE selectionRect(
    [all...]
WebView.cpp     [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 546 IntRect rect = textBox->selectionRect((int) pt.x(), (int) pt.y(), 0, INT_MAX);
    [all...]

Completed in 1850 milliseconds