Searched refs:kerning (Results 1 - 25 of 31) sorted by relevance

12

/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
H A Dt1afm.h41 FT_Vector* kerning );
47 FT_Fixed* kerning );
H A Dt1afm.c84 /* compare two kerning pairs */
105 /* parse a PFM file -- for now, only read the kerning pairs */
163 /* Actually, kerning pairs are simply optional! */
175 /* PFM kerning data are stored by encoding rather than glyph index, */
316 /* find the kerning for a given glyph pair */
321 FT_Vector* kerning )
341 kerning->x = mid->x;
342 kerning->y = mid->y;
353 kerning->x = 0;
354 kerning
[all...]
H A Dt1driver.c628 /* A driver method used to return the kerning vector between two */
639 /* kerning :: The kerning vector. This is in font units for */
658 FT_Vector* kerning )
663 kerning->x = 0;
664 kerning->y = 0;
670 kerning );
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutEngineSpacing.cpp69 float kerning = 0; local
72 kerning = svgFont->verticalKerningForPairOfGlyphs(m_lastGlyph, currentGlyph);
74 kerning = svgFont->horizontalKerningForPairOfGlyphs(m_lastGlyph, currentGlyph);
76 kerning *= m_font.fontDescription().computedSize() / m_font.fontMetrics().unitsPerEm();
80 return kerning;
H A DSVGTextLayoutEngine.cpp508 // Calculate SVG Fonts kerning, if needed.
509 float kerning = spacingLayout.calculateSVGKerning(m_isVerticalText, visualMetrics.glyph()); local
522 m_textPathCurrentOffset += m_dy - kerning;
533 m_textPathCurrentOffset += m_dx - kerning;
571 y -= kerning;
573 x -= kerning;
583 || orientationAngle || kerning || applySpacingToNextCharacter || definesTextLength;
625 // Apply CSS 'kerning', 'letter-spacing' and 'word-spacing' to next character, if needed.
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFontElement.h36 float kerning; member in struct:blink::SVGKerningPair
45 : kerning(0)
H A DSVGHKernElement.cpp69 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).toFloat();
H A DSVGVKernElement.cpp70 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).toFloat();
H A DSVGFontElement.cpp130 // Enumerate all the valid kerning pairs, and add them to the table.
136 kerningTable.add(makeKerningPairKey(glyph1, glyph2), kerningPair.kerning);
180 // Build the kerning tables.
184 // The glyph-name->glyph-id map won't be needed/used after having built the kerning table(s).
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttdriver.c148 /* A driver method used to return the kerning vector between two */
159 /* kerning :: The kerning vector. This is in font units for */
178 FT_Vector* kerning )
184 kerning->x = 0;
185 kerning->y = 0;
188 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
/external/freetype/src/truetype/
H A Dttdriver.c148 /* A driver method used to return the kerning vector between two */
159 /* kerning :: The kerning vector. This is in font units for */
178 FT_Vector* kerning )
184 kerning->x = 0;
185 kerning->y = 0;
188 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttdriver.c148 /* A driver method used to return the kerning vector between two */
159 /* kerning :: The kerning vector. This is in font units for */
178 FT_Vector* kerning )
184 kerning->x = 0;
185 kerning->y = 0;
188 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontDescription.h142 Kerning kerning() const { return static_cast<Kerning>(m_kerning); } function in class:blink::FontDescription
178 void setKerning(Kerning kerning) { m_kerning = kerning; updateTypesettingFeatures(); } argument
H A DFontDescription.cpp197 switch (kerning()) {
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffdrivr.c78 /* A driver method used to return the kerning vector between two */
89 /* kerning :: The kerning vector. This is in font units for */
108 FT_Vector* kerning )
114 kerning->x = 0;
115 kerning->y = 0;
118 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
/external/freetype/src/cff/
H A Dcffdrivr.c78 /* A driver method used to return the kerning vector between two */
89 /* kerning :: The kerning vector. This is in font units for */
108 FT_Vector* kerning )
114 kerning->x = 0;
115 kerning->y = 0;
118 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffdrivr.c79 /* A driver method used to return the kerning vector between two */
90 /* kerning :: The kerning vector. This is in font units for */
109 FT_Vector* kerning )
115 kerning->x = 0;
116 kerning->y = 0;
119 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dftdriver.h83 FT_Vector* kerning );
134 /* kerning for a given pair of glyphs. Can be */
136 /* kerning. */
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dftdriver.h83 FT_Vector* kerning );
134 /* kerning for a given pair of glyphs. Can be */
136 /* kerning. */
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DFontBuilder.cpp294 void FontBuilder::setKerning(FontDescription::Kerning kerning) argument
298 scope.fontDescription().setKerning(kerning);
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dftdriver.h83 FT_Vector* kerning );
134 /* kerning for a given pair of glyphs. Can be */
136 /* kerning. */
/external/freetype/include/internal/
H A Dftdriver.h83 FT_Vector* kerning );
134 /* kerning for a given pair of glyphs. Can be */
136 /* kerning. */
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page.cpp151 void CPDF_TextObject::GetCharInfo(int index, FX_DWORD& charcode, FX_FLOAT& kerning) const
155 kerning = 0;
164 kerning = 0;
166 kerning = m_pCharPos[i];
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_pageobj.h533 void GetCharInfo(int index, FX_DWORD& charcode, FX_FLOAT& kerning) const;
/external/pdfium/fpdfsdk/src/javascript/
H A DDocument.cpp2008 FX_FLOAT kerning; local
2010 pTextObj->GetCharInfo(i, charcode, kerning);
2043 FX_FLOAT kerning; local
2045 pTextObj->GetCharInfo(i, charcode, kerning);

Completed in 371 milliseconds

12