HomeSort by relevance Sort by last modified time
    Searched refs:valueForLength (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
LengthFunctions.h 36 LayoutUnit valueForLength(const Length&, LayoutUnit maximumValue, RenderView* = 0, bool roundPercentages = false);
LengthFunctions.cpp 40 return static_cast<int>(valueForLength(length, maximumValue, renderView, roundPercentages));
93 LayoutUnit valueForLength(const Length& length, LayoutUnit maximumValue, RenderView* renderView, bool roundPercentages)
CSSComputedStyleDeclaration.cpp 633 return zoomAdjustedPixelValue(valueForLength(l, containingBlockSize, 0), style);
636 return zoomAdjustedPixelValue(valueForLength(l, 0, renderView), style);
678 list->append(zoomAdjustedPixelValue(valueForLength(radius.width(), 0, renderView), style));
682 list->append(zoomAdjustedPixelValue(valueForLength(radius.height(), 0, renderView), style));
691 return zoomAdjustedPixelValue(valueForLength(radius.width(), 0, renderView), style);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBox.cpp 652 return valueForLength(style()->boxReflect()->offset(), borderBoxRect().width(), renderView);
653 return valueForLength(style()->boxReflect()->offset(), borderBoxRect().height(), renderView);
    [all...]
FixedTableLayout.cpp 237 calcWidth[i] = valueForLength(m_width[i], tableLogicalWidth);
RenderBoxModelObject.cpp 251 offset.setWidth(-valueForLength(style()->right(), containingBlock->availableWidth(), view()));
253 offset.expand(valueForLength(style()->left(), containingBlock->availableWidth(), view()), 0);
255 offset.expand(-valueForLength(style()->right(), containingBlock->availableWidth(), view()), 0);
268 offset.expand(0, valueForLength(style()->top(), containingBlock->availableHeight(), view()));
274 offset.expand(0, -valueForLength(style()->bottom(), containingBlock->availableHeight(), view()));
363 constraints.setLeftOffset(valueForLength(style()->left(), viewportRect.width(), view()));
368 constraints.setRightOffset(valueForLength(style()->right(), viewportRect.width(), view()));
373 constraints.setTopOffset(valueForLength(style()->top(), viewportRect.height(), view()));
378 constraints.setBottomOffset(valueForLength(style()->bottom(), viewportRect.height(), view()));
    [all...]
RenderTableCell.h 97 int styleLogicalHeight = valueForLength(style()->logicalHeight(), 0, view());
RenderObject.cpp     [all...]
RenderGrid.cpp 433 return valueForLength(trackLength, direction == ForColumns ? logicalWidth() : computeContentLogicalHeight(style()->logicalHeight(), -1), view());
    [all...]
RootInlineBox.cpp     [all...]
RenderInline.cpp 698 return valueForLength(margin, 0, renderer->view());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 149 return static_cast<LayoutUnit>(valueForLength(length, maxSize, renderView) * (length.isFixed() ? scale : 1));
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.cpp 340 size = valueForLength(primitiveValue->viewportPercentageLength(), 0, m_document->renderView());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]

Completed in 4500 milliseconds