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

  /external/webkit/Source/WebKit/chromium/public/
WebFont.h 80 virtual int offsetForPosition(const WebTextRun&, float position) const = 0;
91 // offsetForPosition()), pass in a |leftBaseline| = (0, 0), |from| = 0, and
  /external/webkit/Source/WebKit/chromium/src/
WebFontImpl.h 56 virtual int offsetForPosition(const WebTextRun&, float position) const;
WebFontImpl.cpp 113 int WebFontImpl::offsetForPosition(const WebTextRun& run, float position) const
115 return m_font.offsetForPosition(run, position, true);
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.h 44 int offsetForPosition(int x, bool includePartialGlyphs);
FontWin.cpp 141 // to Font::offsetForPosition(). Bug http://webkit.org/b/40673 tracks fixing this problem.
145 return controller.offsetForPosition(x, includePartialGlyphs);
UniscribeController.cpp 77 int UniscribeController::offsetForPosition(int x, bool includePartialGlyphs)
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineTextBox.h 45 virtual int offsetForPosition(float x, bool includePartialGlyphs = true) const;
SVGInlineTextBox.cpp 50 int SVGInlineTextBox::offsetForPosition(float, bool) const
78 return fragment.characterOffset - start() + textRenderer->scaledFont().offsetForPosition(textRun, position * scalingFactor, includePartialGlyphs);
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.h 56 int offsetForPosition(float x, bool includePartialGlyphs);
FontComplexTextMac.cpp 125 return controller.offsetForPosition(x, includePartialGlyphs);
ComplexTextController.cpp 94 int ComplexTextController::offsetForPosition(float h, bool includePartialGlyphs)
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 188 return controller.offsetForPosition(x, includePartialGlyphs);
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.h 141 virtual int offsetForPosition(float x, bool includePartialGlyphs = true) const;
InlineTextBox.cpp 271 int offset = offsetForPosition(ellipsisX, false);
    [all...]
RenderText.cpp 487 offset = firstTextBox()->offsetForPosition(pointLineDirection);
493 offset = lastTextBox()->offsetForPosition(pointLineDirection);
505 offset = box->offsetForPosition(pointLineDirection);
    [all...]
RenderBlockLineLayout.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Font.h 103 int offsetForPosition(const TextRun&, float position, bool includePartialGlyphs) const;
Font.cpp 219 int Font::offsetForPosition(const TextRun& run, float x, bool includePartialGlyphs) const

Completed in 214 milliseconds