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

  /external/webkit/Source/WebKit/chromium/src/linux/
WebFontRendering.cpp 41 void WebFontRendering::setHinting(SkPaint::Hinting hinting)
43 FontPlatformData::setHinting(hinting);
  /frameworks/base/core/jni/android/graphics/
HarfbuzzSkia.h 56 SkPaint::Hinting hinting; member in struct:android::__anon14487
TextLayoutCache.cpp 222 hinting(SkPaint::kNo_Hinting) {
234 hinting = paint->getHinting();
249 hinting(other.hinting) {
280 deltaInt = lhs.hinting - rhs.hinting;
357 fontData->hinting = paint->getHinting();
TextLayoutCache.h 101 SkPaint::Hinting hinting; member in class:android::TextLayoutCacheKey
HarfbuzzSkia.cpp 54 paint->setHinting(data->hinting);
  /external/freetype/src/psaux/
t1decode.h 51 FT_Bool hinting,
psobjs.h 159 FT_Bool hinting );
psobjs.c     [all...]
t1decode.c     [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
fonts.conf 150 <!-- These deliberately contradict each other. The 'hinting' preference
155 <edit name="hinting" mode="assign">
  /external/freetype/src/cff/
cffgload.h 77 /* hints_funcs :: Auxiliary pointer for hinting. */
79 /* hints_globals :: Auxiliary pointer for hinting. */
167 FT_Bool hinting,
cffgload.c 244 /* hinting :: Whether hinting is active. */
251 FT_Bool hinting )
273 if ( hinting && size )
372 /* hinting :: Whether hinting is active. */
374 /* hint_mode :: The hinting mode. */
381 FT_Bool hinting,
391 cff_builder_init( &decoder->builder, face, size, slot, hinting );
2593 FT_Bool hinting, force_scaling; local
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/fonts/
fonts.conf 6 issues hinting gives different results depending on the
7 freetype version of the linux distribution, avoiding hinting
10 hinting method that was patented, we could undo this change
11 and try the hinting again. -->
13 <edit name="hinting" mode="assign">
167 <!-- The following hinting specializations are adapted from those in the
189 <edit name="hinting" mode="assign">
204 <!-- These deliberately contradict each other. The 'hinting' preference
209 <edit name="hinting" mode="assign">
221 <edit name="hinting" mode="assign"
    [all...]
  /external/skia/include/core/
SkScalerContext.h 175 // up with the SkPaint::Hinting enum.
209 SkPaint::Hinting getHinting() const {
210 return static_cast<SkPaint::Hinting>((fFlags & kHintingMask) >> 4);
213 void setHinting(SkPaint::Hinting hinting) {
214 fFlags = (fFlags & ~kHintingMask) | (hinting << 4);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.cpp 47 static SkPaint::Hinting skiaHinting = SkPaint::kNormal_Hinting;
51 void FontPlatformData::setHinting(SkPaint::Hinting hinting)
53 skiaHinting = hinting;
168 paint->setHinting(static_cast<SkPaint::Hinting>(m_style.hintStyle));
  /external/chromium/chrome/browser/ui/gtk/
gtk_util.cc 692 gint hinting = 0; local
699 "gtk-xft-hinting", &hinting, local
706 prefs->hinting = RENDERER_PREFERENCES_HINTING_SYSTEM_DEFAULT;
725 if (hinting == 0 || strcmp(hint_style, "hintnone") == 0) {
726 prefs->hinting = RENDERER_PREFERENCES_HINTING_NONE;
728 prefs->hinting = RENDERER_PREFERENCES_HINTING_SLIGHT;
730 prefs->hinting = RENDERER_PREFERENCES_HINTING_MEDIUM;
732 prefs->hinting = RENDERER_PREFERENCES_HINTING_FULL;
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 485 FT_Bool hinting );
644 FT_Bool hinting,
    [all...]
  /external/skia/samplecode/
SampleApp.cpp 134 SkTriState hinting) :
135 fLCDState(lcd), fAAState(aa), fFilterState(filter), fHintingState(hinting) {}
    [all...]
  /external/freetype/src/base/
ftobjs.c 603 * - Do only auto-hinting if we have a hinter module, a scalable font
610 * - Otherwise, auto-hint for LIGHT hinting mode or if there isn't
611 * any hinting bytecode in the TrueType/OpenType font.
649 FT_AutoHinter_Service hinting; local
678 hinting = (FT_AutoHinter_Service)hinter->clazz->module_interface;
680 error = hinting->load_glyph( (FT_AutoHinter)hinter,
879 /* discard auto-hinting data */
    [all...]

Completed in 467 milliseconds