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

/external/skia/tests/
H A DFontObjTest.cpp52 SkPaint::Hinting hinting; member in struct:__anon20936
84 paint.setHinting(settings[j].hinting);
96 // For no hinting and light hinting this should take the
H A DFontHostTest.cpp252 SkPaint::Hinting hinting; member in struct:__anon20932
284 paint.setHinting(settings[j].hinting);
294 // For no hinting and light hinting this should take the
H A DPaintTest.cpp210 const SkPaint::Hinting hinting[] = { local
251 FOR_SETUP(j, hinting, setHinting)
/external/skqp/tests/
H A DFontObjTest.cpp52 SkPaint::Hinting hinting; member in struct:__anon21604
84 paint.setHinting(settings[j].hinting);
96 // For no hinting and light hinting this should take the
H A DFontHostTest.cpp252 SkPaint::Hinting hinting; member in struct:__anon21600
284 paint.setHinting(settings[j].hinting);
294 // For no hinting and light hinting this should take the
H A DPaintTest.cpp210 const SkPaint::Hinting hinting[] = { local
251 FOR_SETUP(j, hinting, setHinting)
/external/freetype/src/cid/
H A Dcidgload.c304 0, /* hinting == 0 */
346 FT_Bool hinting; local
370 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 &&
374 glyph->hint = hinting;
384 hinting,
404 hinting = glyph->hint;
493 if ( !hinting || !decoder.builder.hints_funcs )
/external/freetype/src/type1/
H A Dt1gload.c339 FT_Bool hinting; local
387 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 &&
391 glyph->hint = hinting;
401 FT_BOOL( hinting ),
430 hinting = glyph->hint;
530 /* First of all, scale the points, if we are not hinting */
531 if ( !hinting || ! decoder.builder.hints_funcs )
/external/freetype/src/cff/
H A Dcffgload.c204 FT_Bool hinting, scaled, force_scaling; local
390 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_HINTING ) == 0 );
393 glyph->hint = hinting;
407 decoder_funcs->init( &decoder, face, size, glyph, hinting,
452 hinting = FALSE;
454 glyph->hint = hinting;
646 if ( !hinting || !decoder.builder.hints_funcs )
/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/skia/src/core/
H A DSkScalerContext.h163 * hinting, and sometimes true for other properties as well.
228 kForceAutohinting_Flag = 0x0020, // Use auto instead of bytcode hinting if hinting.
440 void SkScalerContextRec::setHinting(SkPaint::Hinting hinting) { argument
442 (hinting << SkScalerContext::kHinting_Shift);
/external/skqp/src/core/
H A DSkScalerContext.h142 * hinting, and sometimes true for other properties as well.
201 kForceAutohinting_Flag = 0x0020, // Use auto instead of bytcode hinting if hinting.
410 void SkScalerContextRec::setHinting(SkPaint::Hinting hinting) { argument
412 (hinting << SkScalerContext::kHinting_Shift);
/external/freetype/src/psaux/
H A Dcffdecode.c2272 /* hinting :: Whether hinting is active. */
2274 /* hint_mode :: The hinting mode. */
2281 FT_Bool hinting,
2293 cff_builder_init( &decoder->builder, face, size, slot, hinting );
2277 cff_decoder_init( CFF_Decoder* decoder, TT_Face face, CFF_Size size, CFF_GlyphSlot slot, FT_Bool hinting, FT_Render_Mode hint_mode, CFF_Decoder_Get_Glyph_Callback get_callback, CFF_Decoder_Free_Glyph_Callback free_callback ) argument
/external/freetype/src/base/
H A Dftobjs.c807 * - Do only auto-hinting if we have
818 * - Otherwise, auto-hint for LIGHT hinting mode or if there isn't
819 * any hinting bytecode in the TrueType/OpenType font.
873 FT_AutoHinter_Interface hinting; local
902 hinting = (FT_AutoHinter_Interface)hinter->clazz->module_interface;
904 error = hinting->load_glyph( (FT_AutoHinter)hinter,
1112 /* discard auto-hinting data */
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-common-private.hh1724 return u.hinting.get_x_delta (font);
1736 return u.hinting.get_y_delta (font);
1750 return_trace (u.hinting.sanitize (c));
1761 HintingDevice hinting; member in union:OT::Device::__anon7777
/external/skia/tools/debugger/
H A DSkDrawCommand.cpp39 #define SKDEBUGCANVAS_ATTRIBUTE_HINTING "hinting"
961 SkPaint::Hinting hinting = paint.getHinting(); local
962 if (hinting != SkPaintDefaults_Hinting) {
963 switch (hinting) {
1389 const char* hinting = jsonPaint[SKDEBUGCANVAS_ATTRIBUTE_HINTING].asCString(); local
1390 if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_NONE)) {
1392 } else if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_SLIGHT)) {
1394 } else if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_NORMAL)) {
1396 } else if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_FULL)) {
/external/skqp/tools/debugger/
H A DSkDrawCommand.cpp39 #define SKDEBUGCANVAS_ATTRIBUTE_HINTING "hinting"
961 SkPaint::Hinting hinting = paint.getHinting(); local
962 if (hinting != SkPaintDefaults_Hinting) {
963 switch (hinting) {
1389 const char* hinting = jsonPaint[SKDEBUGCANVAS_ATTRIBUTE_HINTING].asCString(); local
1390 if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_NONE)) {
1392 } else if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_SLIGHT)) {
1394 } else if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_NORMAL)) {
1396 } else if (!strcmp(hinting, SKDEBUGCANVAS_HINTING_FULL)) {

Completed in 1513 milliseconds