Home
last modified time | relevance | path

Searched refs:testFont (Results 1 – 4 of 4) sorted by relevance

/external/skia/modules/canvaskit/tests/
Dfont.spec.js319 const testFont = new CanvasKit.Font(notoSerif, 20); constant
321 canvas.drawText('SEA', 35, 15, textPaint, testFont);
322 testFont.setEdging(CanvasKit.FontEdging.Alias);
323 canvas.drawText('SEA', 35, 35, textPaint, testFont);
324 testFont.setEdging(CanvasKit.FontEdging.AntiAlias);
325 canvas.drawText('SEA', 35, 55, textPaint, testFont);
326 testFont.setEdging(CanvasKit.FontEdging.SubpixelAntiAlias);
327 canvas.drawText('SEA', 35, 75, textPaint, testFont);
331 testFont.delete();
/external/skia/tools/fonts/
DTestTypeface.cpp90 TestTypeface::TestTypeface(sk_sp<SkTestFont> testFont, const SkFontStyle& style) in TestTypeface() argument
91 : SkTypeface(style, false), fTestFont(std::move(testFont)) {} in TestTypeface()
/external/skqp/tools/fonts/
DSkTestTypeface.cpp98 SkTestTypeface::SkTestTypeface(sk_sp<SkTestFont> testFont, const SkFontStyle& style) in SkTestTypeface() argument
100 , fTestFont(std::move(testFont)) { in SkTestTypeface()
/external/owasp/sanitizer/src/tests/org/owasp/html/
DStylingPolicyTest.java130 public static final void testFont() { in testFont() method in StylingPolicyTest