OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textRects
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/
FindIndicator.h
49
const Vector<WebCore::FloatRect>&
textRects
() const { return m_textRectsInSelectionRectCoordinates; }
56
FindIndicator(const WebCore::FloatRect& selectionRect, const Vector<WebCore::FloatRect>&
textRects
, PassRefPtr<ShareableBitmap> contentImage);
/external/webkit/Source/WebCore/bindings/objc/
DOMPrivate.h
31
- (NSArray *)
textRects
;
48
- (NSArray *)lineBoxRects; // Deprecated. Use
textRects
instead.
49
- (NSArray *)
textRects
;
DOM.mm
366
return [self
textRects
];
383
- (NSArray *)
textRects
393
range->
textRects
(rects);
407
- (NSArray *)
textRects
412
core(self)->
textRects
(rects);
419
return [self
textRects
];
/external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp
175
Vector<FloatRect>
textRects
;
176
selectedFrame->selection()->getClippedVisibleTextRectangles(
textRects
);
203
for (size_t i = 0; i <
textRects
.size(); ++i) {
204
IntRect textRectInSelectionRectCoordinates = selectedFrame->view()->contentsToWindow(enclosingIntRect(
textRects
[i]));
/external/webkit/Source/WebCore/dom/
Range.h
110
void
textRects
(Vector<IntRect>&, bool useSelectionHeight = false);
Range.cpp
[
all
...]
/external/webkit/Source/WebKit/android/jni/
AndroidHitTestResult.cpp
172
range->
textRects
(m_highlightRects, true);
Completed in 887 milliseconds