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

  /external/webkit/Source/WebKit/mac/Misc/
WebKitNSStringExtras.h 37 - (void)_web_drawDoubledAtPoint:(NSPoint)textPoint withTopColor:(NSColor *)topColor bottomColor:(NSColor *)bottomColor font:(NSFont *)font;
WebKitNSStringExtras.mm 117 - (void)_web_drawDoubledAtPoint:(NSPoint)textPoint
123 [self _web_drawAtPoint:textPoint font:font textColor:bottomColor allowingFontSmoothing:NO];
125 textPoint.y += 1;
126 [self _web_drawAtPoint:textPoint font:font textColor:topColor allowingFontSmoothing:NO];
  /external/webkit/Source/WebCore/platform/mac/
DragImageMac.mm 222 static void drawDoubledAtPoint(NSString *string, NSPoint textPoint, NSColor *topColor, NSColor *bottomColor, NSFont *font)
225 drawAtPoint(string, textPoint, font, bottomColor);
227 textPoint.y += 1;
228 drawAtPoint(string, textPoint, font, topColor);
  /external/webkit/Source/WebCore/rendering/
RenderTextControl.cpp 654 IntPoint textPoint;
655 textPoint.setY(ty + textBlockInsetTop() + placeholderStyle->fontMetrics().ascent());
657 textPoint.setX(tx + textBlockInsetLeft());
659 textPoint.setX(tx + width() - textBlockInsetRight() - style()->font().width(textRun));
661 paintInfo.context->drawBidiText(placeholderStyle->font(), textRun, textPoint);

Completed in 365 milliseconds