Home
last modified time | relevance | path

Searched refs:textQuads (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/dom/
DRange.h112 void textQuads(Vector<FloatQuad>&, bool useSelectionHeight = false) const;
DRange.cpp1643 void Range::textQuads(Vector<FloatQuad>& quads, bool useSelectionHeight) const in textQuads() function in WebCore::Range
1966 Vector<FloatQuad> textQuads; in getBorderAndTextQuads() local
1967 renderText->absoluteQuadsForRange(textQuads, startOffset, endOffset); in getBorderAndTextQuads()
1968 …adjustFloatQuadsForScrollAndAbsoluteZoomAndPageScale(textQuads, m_ownerDocument.get(), renderText); in getBorderAndTextQuads()
1970 quads.append(textQuads); in getBorderAndTextQuads()
/external/webkit/Source/WebCore/editing/
DEditor.cpp3243 Vector<FloatQuad> textQuads; in windowRectForRange() local
3244 range->textQuads(textQuads); in windowRectForRange()
3246 size_t size = textQuads.size(); in windowRectForRange()
3248 boundingRect.unite(textQuads[i].boundingBox()); in windowRectForRange()
DSelectionController.cpp1766 toNormalizedRange()->textQuads(quads, true); in getClippedVisibleTextRectangles()
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
DWebPageMac.mm517 range->textQuads(quads);
/external/webkit/Source/WebCore/
DChangeLog32777 … We use Range::textQuads() instead of Range::boundingRect() to compute the position of correction
32783 (WebCore::Range::textQuads):
DChangeLog-2010-01-2929139 (WebCore::Range::textQuads):
29140 Add a new method, textQuads(), which returns a list of quads, respecting transforms.
DChangeLog-2010-12-0644865 (WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges): Replaced call to textQuads()