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

  /external/webkit/Source/WebCore/platform/win/
WebCoreTextRenderer.cpp 49 static void doDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex)
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)
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)
95 doDrawTextAtPoint(context, text, textPos, font, bottomColor, underlinedIndex);
    [all...]
WebCoreTextRenderer.h 38 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/
WebKitGraphics.h 58 int underlinedIndex;
WebKitGraphics.cpp 86 int underlinedIndex;
115 WebCoreDrawTextAtPoint(context, drawString, info->pt, makeFont(*(info->description)), info->color, info->underlinedIndex);

Completed in 288 milliseconds