Searched refs:underlinedIndex (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DWebCoreTextRenderer.cpp50 static void doDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex) argument
62 if (underlinedIndex >= 0) {
63 ASSERT_WITH_SECURITY_IMPLICATION(underlinedIndex < static_cast<int>(text.length()));
66 if (underlinedIndex > 0) {
67 TextRun beforeRun(text.characters(), underlinedIndex);
72 TextRun underlinedRun(text.characters() + underlinedIndex, 1);
83 void WebCoreDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex) argument
87 doDrawTextAtPoint(context, text, point, font, color, underlinedIndex);
92 void WebCoreDrawDoubledTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& topColor, const Color& bottomColor, int underlinedIndex) argument
98 doDrawTextAtPoint(context, text, textPos, font, bottomColor, underlinedIndex);
[all...]
H A DWebCoreTextRenderer.h38 void WebCoreDrawTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color&, int underlinedIndex = -1);
39 void WebCoreDrawDoubledTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color& topColor, const Color& bottomColor, int underlinedIndex = -1);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebKitGraphics.h58 int underlinedIndex; member in struct:WebTextRenderInfo
H A DWebKitGraphics.cpp85 int underlinedIndex; member in struct:WebTextRenderInfoWithoutShadow
114 WebCoreDrawTextAtPoint(context, drawString, info->pt, makeFont(*(info->description)), info->color, info->underlinedIndex);

Completed in 146 milliseconds