Searched defs:hinting (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/web/linux/
H A DWebFontRendering.cpp43 void WebFontRendering::setHinting(SkPaint::Hinting hinting) argument
45 FontPlatformData::setHinting(hinting);
/external/chromium_org/third_party/skia/tests/
H A DFontObjTest.cpp52 SkPaint::Hinting hinting; member in struct:__anon15384
85 paint.setHinting(settings[j].hinting);
97 // For no hinting and light hinting this should take the
H A DFontHostTest.cpp247 SkPaint::Hinting hinting; member in struct:__anon15380
280 paint.setHinting(settings[j].hinting);
290 // For no hinting and light hinting this should take the
H A DPaintTest.cpp239 const SkPaint::Hinting hinting[] = { local
280 FOR_SETUP(j, hinting, setHinting)
/external/skia/tests/
H A DFontObjTest.cpp52 SkPaint::Hinting hinting; member in struct:__anon30791
85 paint.setHinting(settings[j].hinting);
97 // For no hinting and light hinting this should take the
H A DFontHostTest.cpp244 SkPaint::Hinting hinting; member in struct:__anon30787
277 paint.setHinting(settings[j].hinting);
287 // For no hinting and light hinting this should take the
H A DPaintTest.cpp239 const SkPaint::Hinting hinting[] = { local
280 FOR_SETUP(j, hinting, setHinting)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
H A DFontPlatformDataLinux.cpp50 void FontPlatformData::setHinting(SkPaint::Hinting hinting) argument
52 skiaHinting = hinting;
85 // Do not enable subpixel text on low-dpi if full hinting is requested.
/external/chromium_org/ui/gfx/
H A Dfont_render_params.h20 // Level of hinting to be applied.
48 // interpreter, which uses fonts' own hinting instructions)?
55 Hinting hinting; member in struct:gfx::FontRenderParams
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
H A Dt1gload.c278 FT_Bool hinting; local
322 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 &&
333 FT_BOOL( hinting ),
457 /* First of all, scale the points, if we are not hinting */
458 if ( !hinting || ! decoder.builder.hints_funcs )
/external/chromium_org/content/public/common/
H A Drenderer_preferences.h44 // The level of hinting to use when rendering text.
46 gfx::FontRenderParams::Hinting hinting; member in struct:content::RendererPreferences
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
H A Dcidgload.c236 0, /* hinting == 0 */
278 FT_Bool hinting; local
300 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 &&
311 hinting,
408 if ( !hinting || !decoder.builder.hints_funcs )
/external/chromium_org/content/browser/renderer_host/
H A Dsandbox_ipc_linux.cc47 int ConvertHinting(gfx::FontRenderParams::Hinting hinting) { argument
48 switch (hinting) {
54 NOTREACHED() << "Unexpected hinting value " << hinting;
317 reply.WriteInt(params.hinting != gfx::FontRenderParams::HINTING_NONE);
318 reply.WriteInt(ConvertHinting(params.hinting));
/external/chromium_org/third_party/skia/src/core/
H A DSkScalerContext.h120 kForceAutohinting_Flag = 0x0020, // Use auto instead of bytcode hinting if hinting.
316 void SkScalerContextRec::setHinting(SkPaint::Hinting hinting) { argument
318 (hinting << SkScalerContext::kHinting_Shift);
/external/skia/src/core/
H A DSkScalerContext.h125 kForceAutohinting_Flag = 0x0020, // Use auto instead of bytcode hinting if hinting.
351 void SkScalerContextRec::setHinting(SkPaint::Hinting hinting) { argument
353 (hinting << SkScalerContext::kHinting_Shift);
/external/fonttools/Lib/fontTools/
H A Dsubset.py207 if not options.hinting:
243 if not options.hinting:
267 if not options.hinting:
299 if not options.hinting:
336 if not options.hinting:
373 if not options.hinting:
1320 if not options.hinting:
1596 if not options.hinting:
1606 # - Dropping hinting then consists of the following two ops:
1627 # Drop font-wide hinting value
1827 hinting = True variable in class:Options
[all...]
/external/fonttools/Tools/fontTools/
H A Dsubset.py207 if not options.hinting:
243 if not options.hinting:
267 if not options.hinting:
299 if not options.hinting:
336 if not options.hinting:
373 if not options.hinting:
1320 if not options.hinting:
1596 if not options.hinting:
1606 # - Dropping hinting then consists of the following two ops:
1627 # Drop font-wide hinting value
1827 hinting = True variable in class:Options
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_ui.cc335 gint hinting = 0; local
340 "gtk-xft-hinting", &hinting,
348 if (hinting == 0 || !hint_style || strcmp(hint_style, "hintnone") == 0) {
349 params.hinting = gfx::FontRenderParams::HINTING_NONE;
351 params.hinting = gfx::FontRenderParams::HINTING_SLIGHT;
353 params.hinting = gfx::FontRenderParams::HINTING_MEDIUM;
355 params.hinting = gfx::FontRenderParams::HINTING_FULL;
358 params.hinting = gfx::FontRenderParams::HINTING_NONE;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DLoggingCanvas.cpp767 String LoggingCanvas::hintingName(SkPaint::Hinting hinting) argument
769 switch (hinting) {
798 paintItem->setString("hinting", hintingName(paint.getHinting()));
/external/chromium_org/third_party/freetype/src/base/
H A Dftobjs.c634 * - Do only auto-hinting if we have a hinter module, a scalable font
641 * - Otherwise, auto-hint for LIGHT hinting mode or if there isn't
642 * any hinting bytecode in the TrueType/OpenType font.
681 FT_AutoHinter_Interface hinting; local
710 hinting = (FT_AutoHinter_Interface)hinter->clazz->module_interface;
712 error = hinting->load_glyph( (FT_AutoHinter)hinter,
911 /* discard auto-hinting data */
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.c250 /* hinting :: Whether hinting is active. */
257 FT_Bool hinting )
279 if ( hinting && size )
378 /* hinting :: Whether hinting is active. */
380 /* hint_mode :: The hinting mode. */
387 FT_Bool hinting,
397 cff_builder_init( &decoder->builder, face, size, slot, hinting );
2616 FT_Bool hinting, scale local
383 cff_decoder_init( CFF_Decoder* decoder, TT_Face face, CFF_Size size, CFF_GlyphSlot slot, FT_Bool hinting, FT_Render_Mode hint_mode ) argument
[all...]
/external/freetype/src/base/
H A Dftobjs.c632 * - Do only auto-hinting if we have a hinter module, a scalable font
639 * - Otherwise, auto-hint for LIGHT hinting mode or if there isn't
640 * any hinting bytecode in the TrueType/OpenType font.
686 FT_AutoHinter_Interface hinting; local
715 hinting = (FT_AutoHinter_Interface)hinter->clazz->module_interface;
717 error = hinting->load_glyph( (FT_AutoHinter)hinter,
916 /* discard auto-hinting data */
/external/freetype/src/cff/
H A Dcffgload.c250 /* hinting :: Whether hinting is active. */
257 FT_Bool hinting )
279 if ( hinting && size )
378 /* hinting :: Whether hinting is active. */
380 /* hint_mode :: The hinting mode. */
387 FT_Bool hinting,
397 cff_builder_init( &decoder->builder, face, size, slot, hinting );
2612 FT_Bool hinting, scale local
383 cff_decoder_init( CFF_Decoder* decoder, TT_Face face, CFF_Size size, CFF_GlyphSlot slot, FT_Bool hinting, FT_Render_Mode hint_mode ) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftobjs.c634 * - Do only auto-hinting if we have a hinter module, a scalable font
641 * - Otherwise, auto-hint for LIGHT hinting mode or if there isn't
642 * any hinting bytecode in the TrueType/OpenType font.
681 FT_AutoHinter_Interface hinting; local
710 hinting = (FT_AutoHinter_Interface)hinter->clazz->module_interface;
712 error = hinting->load_glyph( (FT_AutoHinter)hinter,
911 /* discard auto-hinting data */
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffgload.c250 /* hinting :: Whether hinting is active. */
257 FT_Bool hinting )
279 if ( hinting && size )
378 /* hinting :: Whether hinting is active. */
380 /* hint_mode :: The hinting mode. */
387 FT_Bool hinting,
397 cff_builder_init( &decoder->builder, face, size, slot, hinting );
2620 FT_Bool hinting, scale local
383 cff_decoder_init( CFF_Decoder* decoder, TT_Face face, CFF_Size size, CFF_GlyphSlot slot, FT_Bool hinting, FT_Render_Mode hint_mode ) argument
[all...]

Completed in 1645 milliseconds

12