Searched defs:useSelectionHeight (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.cpp1426 void Range::textRects(Vector<IntRect>& rects, bool useSelectionHeight, RangeInFixedPosition* inFixed) const argument
1445 renderText->absoluteRectsForRange(rects, startOffset, endOffset, useSelectionHeight, &isFixed);
1454 void Range::textQuads(Vector<FloatQuad>& quads, bool useSelectionHeight, RangeInFixedPosition* inFixed) const argument
1473 renderText->absoluteQuadsForRange(quads, startOffset, endOffset, useSelectionHeight, &isFixed);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.cpp332 static FloatRect localQuadForTextBox(InlineTextBox* box, unsigned start, unsigned end, bool useSelectionHeight) argument
337 if (!useSelectionHeight) {
353 void RenderText::absoluteRectsForRange(Vector<IntRect>& rects, unsigned start, unsigned end, bool useSelectionHeight, bool* wasFixed) argument
369 if (useSelectionHeight) {
382 FloatRect rect = localQuadForTextBox(box, start, end, useSelectionHeight);
436 void RenderText::absoluteQuadsForRange(Vector<FloatQuad>& quads, unsigned start, unsigned end, bool useSelectionHeight, bool* wasFixed) argument
452 if (useSelectionHeight) {
464 FloatRect rect = localQuadForTextBox(box, start, end, useSelectionHeight);

Completed in 531 milliseconds