HomeSort by relevance Sort by last modified time
    Searched defs:kerning (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 65 float kerning = 0; local
68 kerning = svgFont->verticalKerningForPairOfStringsAndGlyphs(m_lastGlyph.unicodeString, m_lastGlyph.name, currentGlyph.unicodeString, currentGlyph.name);
70 kerning = svgFont->horizontalKerningForPairOfStringsAndGlyphs(m_lastGlyph.unicodeString, m_lastGlyph.name, currentGlyph.unicodeString, currentGlyph.name);
75 kerning *= m_font.size() / m_font.fontMetrics().unitsPerEm();
76 return kerning;
84 float kerning = 0; local
85 SVGLength kerningLength = style->kerning();
87 kerning = kerningLength.valueAsPercentage() * m_font.pixelSize();
90 kerning = kerningLength.value(lengthContext);
96 if (!kerning && !m_font.letterSpacing() && !m_font.wordSpacing()
    [all...]
SVGTextLayoutEngine.cpp 505 // Calculate SVG Fonts kerning, if needed.
506 float kerning = spacingLayout.calculateSVGKerning(m_isVerticalText, visualMetrics.glyph()); local
508 // Calculate CSS 'kerning', 'letter-spacing' and 'word-spacing' for next character, if needed.
519 m_textPathCurrentOffset += m_dy - kerning;
530 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/
SVGFontElement.h 37 float kerning; member in struct:WebCore::SVGKerningPair
46 : kerning(0)
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacter.java 52 private IntMap<Integer> kerning = new IntMap<Integer>(); field in class:BitmapCharacter
65 result.kerning = kerning.clone();
145 kerning.put(second, amount);
149 Integer i = kerning.get(second);
167 int[] seconds = new int[kerning.size()];
171 for (Entry<Integer> entry : kerning){
196 kerning.put(seconds[i], amounts[i]);
StringBlock.java 53 private boolean kerning; field in class:StringBlock
67 * @param kerning
70 boolean kerning) {
76 this.kerning = kerning;
85 this.kerning = true;
150 return kerning;
153 void setKerning(boolean kerning) {
154 this.kerning = kerning;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDescription.h 73 enum Kerning { AutoKerning, NormalKerning, NoneKerning };
122 Kerning kerning() const { return static_cast<Kerning>(m_kerning); } function in class:WebCore::FontDescription
160 void setKerning(Kerning kerning) { m_kerning = kerning; }
201 unsigned m_kerning : 2; // Kerning
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyleDefs.h 195 SVGLength kerning; member in class:WebCore::StyleTextData
SVGRenderStyle.h 225 if (!(text->kerning == obj))
226 text.access()->kerning = obj;
333 SVGLength kerning() const { return text->kerning; } function in class:WebCore::SVGRenderStyle
RenderStyle.h 1399 SVGLength kerning() const { return svgStyle()->kerning(); } function in class:WebCore::RenderStyle
    [all...]

Completed in 784 milliseconds