HomeSort by relevance Sort by last modified time
    Searched refs:lineHeight (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/webkit/Source/WebCore/css/
FontValue.cpp 52 if (lineHeight) {
56 result += lineHeight->cssText();
FontValue.h 46 RefPtr<CSSPrimitiveValue> lineHeight;
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacterSet.java 42 private int lineHeight;
53 oc.write(lineHeight, "lineHeight", 0);
90 lineHeight = ic.readInt("lineHeight", 0);
141 return lineHeight;
144 public void setLineHeight(int lineHeight) {
145 this.lineHeight = lineHeight;
196 this.lineHeight = Math.max(this.lineHeight, styleSet.lineHeight);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBR.cpp 41 int RenderBR::lineHeight(bool firstLine) const
RenderBR.h 46 int lineHeight(bool firstLine) const;
RenderTextControlMultiLine.h 45 virtual void adjustControlHeightBasedOnLineHeight(int lineHeight);
RenderTextControlMultiLine.cpp 96 void RenderTextControlMultiLine::adjustControlHeightBasedOnLineHeight(int lineHeight)
98 setHeight(height() + lineHeight * static_cast<HTMLTextAreaElement*>(node())->rows());
RenderListMarker.h 61 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
RootInlineBox.h 91 virtual int lineHeight() const { return boxModelObject()->lineHeight(m_firstLine, isHorizontal() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes); }
RenderTextControl.h 77 virtual void adjustControlHeightBasedOnLineHeight(int lineHeight) = 0;
InlineBox.h 269 virtual int lineHeight() const { return boxModelObject()->lineHeight(m_firstLine, isHorizontal() ? HorizontalLine : VerticalLine, PositionOnContainingLine); }
RenderTextControlSingleLine.cpp 608 void RenderTextControlSingleLine::adjustControlHeightBasedOnLineHeight(int lineHeight)
616 lineHeight = max(lineHeight, resultsRenderer->height());
624 lineHeight = max(lineHeight, cancelRenderer->height());
627 setHeight(height() + lineHeight);
726 if (textBlockStyle->fontMetrics().lineSpacing() > lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes))
    [all...]
RootInlineBox.cpp 573 descent = box->lineHeight() - ascent;
596 if (usedFonts && !usedFonts->isEmpty() && (includeFont || (box->renderer()->style(m_firstLine)->lineHeight().isNegative() && includeLeading))) {
623 int descentWithLeading = box->lineHeight() - ascentWithLeading;
711 verticalPosition += -static_cast<int>(fontMetrics.xHeight() / 2) - renderer->lineHeight(firstLine, lineDirection) / 2 + renderer->baselinePosition(baselineType(), firstLine, lineDirection);
714 // lineHeight - baselinePosition is always 0 for replaced elements (except inline blocks), so don't bother wasting time in that case.
716 verticalPosition -= (renderer->lineHeight(firstLine, lineDirection) - renderer->baselinePosition(baselineType(), firstLine, lineDirection));
718 verticalPosition += -renderer->lineHeight(firstLine, lineDirection) / 2 + renderer->baselinePosition(baselineType(), firstLine, lineDirection);
720 verticalPosition -= renderer->style()->verticalAlignLength().calcValue(renderer->lineHeight(firstLine, lineDirection));
    [all...]
InlineTextBox.h 81 virtual int lineHeight() const;
RenderInline.h 148 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
RenderTextControlSingleLine.h 91 virtual void adjustControlHeightBasedOnLineHeight(int lineHeight);
InlineFlowBox.cpp 117 || parentStyle->lineHeight() != childStyle->lineHeight()
134 || parentStyle->lineHeight() != childStyle->lineHeight()
454 // The computed lineheight needs to be extended for the
459 int lineHeight = curr->lineHeight();
461 if (maxAscent + maxDescent < lineHeight)
462 maxDescent = lineHeight - maxAscent;
465 if (maxAscent + maxDescent < lineHeight)
    [all...]
RenderBoxModelObject.h 125 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const = 0;
RenderInline.cpp 180 || parentStyle->lineHeight() != style()->lineHeight()));
188 || parentStyle->lineHeight() != childStyle->lineHeight();
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 215 int lineHeight = mLineHeight;
225 v += lineHeight;
226 lineHeight = 0;
228 lineHeight = Math.max(lineHeight, height);
229 if (v + lineHeight > mStrikeHeight) {
252 mLineHeight = lineHeight;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 159 int lineHeight = 0;
164 y_ += lineHeight;
172 lineHeight = Math.max(lineHeight, extent.y);
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 168 - (NSString *)lineHeight;
169 - (void)setLineHeight:(NSString *)lineHeight;
DOMCSS.mm 707 - (NSString *)lineHeight
712 - (void)setLineHeight:(NSString *)lineHeight
714 [self setProperty:@"line-height" value:lineHeight priority:@""];
  /external/skia/samplecode/
SampleApp.cpp 968 SkScalar lineHeight = paint.getFontMetrics(NULL);
973 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
978 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
984 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
990 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
996 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 396 int lineHeight = getGc().getFontMetrics().getHeight();
413 lineY += lineHeight;

Completed in 210 milliseconds

1 2 3