Searched refs:trackSize (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp270 LayoutUnit trackSize; local
282 trackSize = trackElement->renderBox()->contentHeight() - renderBox()->height();
286 trackSize = trackElement->renderBox()->contentWidth() - renderBox()->width();
291 position = std::max<LayoutUnit>(0, std::min(position, trackSize));
292 const Decimal ratio = Decimal::fromDouble(static_cast<double>(position) / trackSize);
301 LayoutUnit closestPosition = trackSize * closestRatio;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderGrid.cpp416 const GridTrackSize& trackSize = gridTrackSize(direction, i); local
417 const GridLength& minTrackBreadth = trackSize.minTrackBreadth();
418 const GridLength& maxTrackBreadth = trackSize.maxTrackBreadth();
425 if (trackSize.isContentSized())
427 if (trackSize.maxTrackBreadth().isFlex())
469 const GridTrackSize& trackSize = gridTrackSize(direction, trackIndex); local
470 normalizedFractionBreadth = std::max(normalizedFractionBreadth, tracks[trackIndex].m_usedBreadth / trackSize.maxTrackBreadth().flex());
491 const GridTrackSize& trackSize = gridTrackSize(direction, trackIndex); local
493 tracks[trackIndex].m_usedBreadth = std::max<LayoutUnit>(tracks[trackIndex].m_usedBreadth, normalizedFractionBreadth * trackSize.maxTrackBreadth().flex());
546 const GridTrackSize& trackSize local
590 const GridTrackSize& trackSize = trackStyles[i]; local
680 const GridTrackSize& trackSize = gridTrackSize(direction, trackPosition.toInt()); local
746 const GridTrackSize& trackSize = gridTrackSize(direction, i); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp860 static PassRefPtrWillBeRawPtr<CSSValue> specifiedValueForGridTrackSize(const GridTrackSize& trackSize, const RenderStyle& style) argument
862 switch (trackSize.type()) {
864 return specifiedValueForGridTrackBreadth(trackSize.length(), style);
867 minMaxTrackBreadths->append(specifiedValueForGridTrackBreadth(trackSize.minTrackBreadth(), style));
868 minMaxTrackBreadths->append(specifiedValueForGridTrackBreadth(trackSize.maxTrackBreadth(), style));
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp3758 RefPtrWillBeRawPtr<CSSValue> trackSize = parseGridTrackSize(*arguments); local
3759 if (!trackSize)
3762 repeatedValues->append(trackSize);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 703 milliseconds