HomeSort by relevance Sort by last modified time
    Searched defs:spacing (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 85 float spacing = m_font.letterSpacing() + kerning; local
88 spacing += m_font.wordSpacing();
91 return spacing;
SVGTextLayoutEngine.cpp 522 // Calculate CSS 'kerning', 'letter-spacing' and 'word-spacing' for next character, if needed.
523 float spacing = spacingLayout.calculateCSSKerningAndSpacing(svgStyle, lengthContext, currentCharacter); local
556 m_textPathCurrentOffset += scaledGlyphAdvance + m_textPathSpacing + spacing * m_textPathScaling;
650 // Apply CSS 'kerning', 'letter-spacing' and 'word-spacing' to next character, if needed.
651 if (spacing)
662 updateCurrentTextPosition(xNew, yNew, glyphAdvance + spacing);
  /external/e2fsprogs/lib/ss/
list_rqs.c 30 int spacing; local
56 spacing = -2;
63 spacing += len + 2;
68 if (spacing > 23) {
71 spacing = 0;
74 strncat(buffer, twentyfive_spaces, 25-spacing);
  /external/proguard/src/proguard/gui/splash/
TextSprite.java 33 private final VariableInt spacing; field in class:TextSprite
55 * @param spacing the variable spacing between the lines of text.
62 VariableInt spacing,
68 this.spacing = spacing;
82 int spacingt = spacing.getInt(time);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
GridLayoutBuilder.java 98 public GridLayoutBuilder spacing(int s) { method in class:GridLayoutBuilder
  /external/webkit/Tools/QtTestBrowser/
locationedit.cpp 88 const int spacing = 2; local
90 int x = textRect.x() + spacing;
96 margins.setLeft(m_pageIconLabel->sizeHint().width() + spacing);
  /external/bluetooth/glib/gobject/
gobject-query.c 35 static guint spacing = 1; variable
70 for (i = 0; i < spacing; i++)
112 g_fprintf (stderr, " -s specify line spacing\n");
146 spacing = atoi (argv[i]);
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 92 int spacing = String.valueOf(code.getCodeLength()).length(); local
105 addSpacing(spacing + 3);
113 addSpacing(spacing + 3);
  /external/webkit/Source/WebCore/platform/graphics/freetype/
FontPlatformDataFreeType.cpp 127 int spacing; local
128 if (FcPatternGetInteger(pattern, FC_SPACING, 0, &spacing) == FcResultMatch && spacing == FC_MONO)