Searched defs:leading (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltSets.java48 * The set:leading function returns the nodes in the node set passed as the first argument that
61 public static NodeList leading (NodeList nl1, NodeList nl2) method in class:ExsltSets
/openjdk7/jdk/src/share/classes/sun/font/
H A DCoreMetrics.java41 float leading,
53 this.leading = leading;
90 && leading == rhs.leading
121 public final float leading; field in class:CoreMetrics
39 CoreMetrics(float ascent, float descent, float leading, float height, int baselineIndex, float[] baselineOffsets, float strikethroughOffset, float strikethroughThickness, float underlineOffset, float underlineThickness, float ssOffset, float italicAngle) argument
H A DFontDesignMetrics.java114 // height, ascent, descent, leading are reported to the client
124 private float leading; field in class:FontDesignMetrics
362 this.leading = metrics.getLeading();
568 // for leading, ascent & descent sum to height.
575 (int)(roundingUpValue + descent + leading) -
586 height = getAscent() + (int)(roundingUpValue + descent + leading);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextHitInfo.java47 * either <EM>leading</EM> (the left edge, for a left-to-right character)
60 * is leading, and one character after if the bias is trailing. The
68 * Calling <code>getOtherHit</code> on trailing(1) would return leading(2).
70 * leading(n+1) and <code>getOtherHit</code> for leading(n)
95 * @param isLeadingEdge <code>true</code> if the leading edge of the
112 * Returns <code>true</code> if the leading edge of the character was
114 * @return <code>true</code> if the leading edge of the character was
123 * the leading edge of the character was hit, and one greater
177 * Creates a <code>TextHitInfo</code> on the leading edg
183 public static TextHitInfo leading(int charIndex) { method in class:TextHitInfo
[all...]
H A DTextLine.java71 public final float leading; field in class:TextLine.TextLineMetrics
76 float leading,
80 this.leading = leading;
152 float leading = 0;
182 leading = Math.max(leading, gd + cm.leading);
187 float graphicHeightWithLeading = graphicHeight + cm.leading;
198 if (maxGraphicHeightWithLeading > ascent + leading) {
74 TextLineMetrics(float ascent, float descent, float leading, float advance) argument
681 getCharLinePosition(int logicalIndex, boolean leading) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFontMetrics.java64 * The standard leading for the font. This is the logical amount
69 int leading; field in class:WFontMetrics
74 * It is the sum of the ascent+descent+leading. There is no
118 * Get leading
121 return leading;
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11FontMetrics.java60 * The standard leading for the font. This is the logical amount
65 int leading; field in class:X11FontMetrics
70 * It is the sum of the ascent+descent+leading. There is no
124 * Get leading
127 return leading;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Font.c110 jfieldID leading; member in struct:X11FontMetricsIDs
139 x11FontMetricsIDs.leading =
140 (*env)->GetFieldID(env, cls, "leading", "I");
895 (*env)->SetIntField(env, this, x11FontMetricsIDs.leading, (jint) 1);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java302 * vertical axis leading means aligned to the top edge.
1668 * @param leading List of ComponentSprings that occur before this Group
1677 List<ComponentSpring> leading, List<ComponentSpring> trailing,
2154 List<ComponentSpring> leading, List<ComponentSpring> trailing,
2161 new ArrayList<ComponentSpring>(leading);
2194 // There's leading ComponentSprings, create an
2205 // leading AutopaddingSpring.
2221 // Not that last Spring, add it to leading
2304 // If we get here, both leading and trailing springs are
2376 * leading edg
1674 insertAutopadding(int axis, List<AutoPreferredGapSpring> leadingPadding, List<AutoPreferredGapSpring> trailingPadding, List<ComponentSpring> leading, List<ComponentSpring> trailing, boolean insert) argument
2151 insertAutopadding(int axis, List<AutoPreferredGapSpring> leadingPadding, List<AutoPreferredGapSpring> trailingPadding, List<ComponentSpring> leading, List<ComponentSpring> trailing, boolean insert) argument
2609 insertAutopadding(int axis, List<AutoPreferredGapSpring> leadingPadding, List<AutoPreferredGapSpring> trailingPadding, List<ComponentSpring> leading, List<ComponentSpring> trailing, boolean insert) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp524 int leading = metrics.tmExternalLeading; local
527 env->SetIntField(fontMetrics, AwtFont::leadingID, leading);
529 metrics.tmDescent + leading);
533 int maxHeight = ascent + descent + leading;
929 AwtFont::leadingID = env->GetFieldID(cls, "leading", "I");

Completed in 64 milliseconds