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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 42 bool ShapeOutsideInfo::computeSegmentsForContainingBlockLine(LayoutUnit lineTop, LayoutUnit floatTop, LayoutUnit lineHeight)
45 return computeSegmentsForLine(lineTopInShapeCoordinates, lineHeight);
48 bool ShapeOutsideInfo::computeSegmentsForLine(LayoutUnit lineTop, LayoutUnit lineHeight)
50 if (shapeSizeDirty() || m_lineTop != lineTop || m_lineHeight != lineHeight) {
51 if (ShapeInfo<RenderBox, &RenderStyle::shapeOutside, &Shape::getExcludedIntervals>::computeSegmentsForLine(lineTop, lineHeight)) {
ShapeOutsideInfo.h 45 bool computeSegmentsForContainingBlockLine(LayoutUnit lineTop, LayoutUnit floatTop, LayoutUnit lineHeight);
46 virtual bool computeSegmentsForLine(LayoutUnit lineTop, LayoutUnit lineHeight) OVERRIDE;
ShapeInfo.cpp 55 bool ShapeInfo<RenderType, shapeGetter, intervalGetter>::computeSegmentsForLine(LayoutUnit lineTop, LayoutUnit lineHeight)
57 ASSERT(lineHeight >= 0);
59 m_lineHeight = lineHeight;
ShapeInsideInfo.h 69 virtual bool computeSegmentsForLine(LayoutUnit lineTop, LayoutUnit lineHeight) OVERRIDE
72 return ShapeInfo<RenderBlock, &RenderStyle::resolvedShapeInside, &Shape::getIncludedIntervals>::computeSegmentsForLine(lineTop, lineHeight);
ShapeInfo.h 85 virtual bool computeSegmentsForLine(LayoutUnit lineTop, LayoutUnit lineHeight);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSearchField.cpp 58 LayoutUnit RenderSearchField::computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const
64 lineHeight = max(lineHeight, decorationRenderer->logicalHeight());
70 lineHeight = max(lineHeight, cancelRenderer->logicalHeight());
73 return lineHeight + nonContentHeight;
RenderSearchField.h 43 virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const OVERRIDE;
RenderBR.cpp 45 int RenderBR::lineHeight(bool firstLine) const
RenderBR.h 46 int lineHeight(bool firstLine) const;
RenderTextControlMultiLine.h 43 virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const OVERRIDE;
RenderTextControlMultiLine.cpp 70 LayoutUnit RenderTextControlMultiLine::computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const
72 return lineHeight * toHTMLTextAreaElement(node())->rows() + nonContentHeight;
RenderListMarker.h 65 virtual LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
RenderTextControl.h 60 virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const = 0;
RenderTextControlSingleLine.h 76 virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const OVERRIDE;
RootInlineBox.cpp 113 LayoutUnit RootInlineBox::lineHeight() const
115 return boxModelObject()->lineHeight(isFirstLineStyle(), isHorizontal() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes);
741 descent = box->lineHeight() - ascent;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontValue.cpp 52 if (lineHeight) {
56 result.append(lineHeight->cssText());
73 && compareCSSValuePtr(lineHeight, other.lineHeight)
FontValue.h 48 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...]
  /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/chromium_org/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_cell.h 32 - (CGFloat)lineHeight;
  /packages/apps/Dialer/src/com/android/dialer/list/
TileInteractionTeaserView.java 77 final int lineHeight = text.getLineHeight();
80 arrowParams.topMargin = mTextTop + lineHeight / 2;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
InsertionHandleController.java 291 int lineHeight = getLineHeight();
294 mPositionY = mHandle.getAdjustedPositionY() - height - lineHeight;
312 coords[1] += 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);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationPhotoTeaserView.java 110 final int lineHeight = text.getLineHeight();
113 arrowParams.topMargin = mTextTop + lineHeight / 2;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineOverviewPane.js 787 var lineHeight = 12 * window.devicePixelRatio;
799 if (!i && labelTopMargin < y - lineHeight)
800 labelOffsetY = -lineHeight; // Labels are going to be over their grid lines.
802 if (labelY < labelTopMargin || labelY + lineHeight > this._canvas.height)
809 this._context.fillRect(labelX - labelWidth, labelY, labelWidth, lineHeight);
811 this._context.fillText(label, labelX - labelPadding, labelY + lineHeight - baselineHeight);
812 labelTopMargin = labelY + lineHeight;
    [all...]

Completed in 305 milliseconds

1 2 3 4