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

/external/webkit/Source/WebCore/platform/win/
H A DWebCoreTextRenderer.cpp49 static void doDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex) argument
59 if (underlinedIndex >= 0) {
60 ASSERT(underlinedIndex < static_cast<int>(text.length()));
63 if (underlinedIndex > 0) {
64 TextRun beforeRun(text.characters(), underlinedIndex);
69 TextRun underlinedRun(text.characters() + underlinedIndex, 1);
80 void WebCoreDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex) argument
84 doDrawTextAtPoint(context, text, point, font, color, underlinedIndex);
89 void WebCoreDrawDoubledTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& topColor, const Color& bottomColor, int underlinedIndex) argument
95 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);
/external/webkit/Source/WebKit/win/
H A DWebKitGraphics.h58 int underlinedIndex; member in struct:WebTextRenderInfo
H A DWebKitGraphics.cpp86 int underlinedIndex; member in struct:WebTextRenderInfoWithoutShadow
115 WebCoreDrawTextAtPoint(context, drawString, info->pt, makeFont(*(info->description)), info->color, info->underlinedIndex);

Completed in 308 milliseconds