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

/macosx-10.9.5/WebCore-7537.78.1/html/shadow/
H A DSliderThumbElement.cpp267 LayoutUnit trackSize; local
279 trackSize = trackElement->renderBox()->contentHeight() - renderBox()->height();
283 trackSize = trackElement->renderBox()->contentWidth() - renderBox()->width();
288 position = max<LayoutUnit>(0, min(position, trackSize));
289 const Decimal ratio = Decimal::fromDouble(static_cast<double>(position) / trackSize);
301 LayoutUnit closestPosition = trackSize * closestRatio;
/macosx-10.9.5/IOCDStorageFamily-51/
H A DIOCDPartitionScheme.cpp384 UInt64 trackSize; local
522 trackSize = trackBlockNext * trackBlockSize;
528 /* partitionSize */ trackSize,
546 UInt64 trackSize; local
574 trackSize = (trackBlockNext - track->block) * track->blockSize;
579 /* partitionSize */ trackSize,
590 /* partitionSize */ trackSize,
602 /* partitionSize */ trackSize,
H A DIOCDTypes.h481 UInt32 trackSize; member in struct:CDTrackInfo
/macosx-10.9.5/IOBDStorageFamily-14/
H A DIOBDTypes.h122 UInt32 trackSize; member in struct:BDTrackInfo
H A DIOBDBlockStorageDriver.cpp80 OSSwapBigToHostInt32(trackInfo.trackSize), 1 ) - 1 );
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderGrid.cpp198 const GridTrackSize& trackSize = gridTrackSize(ForColumns, i);
199 LayoutUnit minTrackBreadth = computePreferredTrackWidth(trackSize.minTrackBreadth(), i);
200 LayoutUnit maxTrackBreadth = computePreferredTrackWidth(trackSize.maxTrackBreadth(), i);
269 const GridTrackSize& trackSize = gridTrackSize(direction, i);
270 const Length& minTrackBreadth = trackSize.minTrackBreadth();
271 const Length& maxTrackBreadth = trackSize.maxTrackBreadth();
444 const GridTrackSize& trackSize = gridTrackSize(direction, trackIndex); local
445 if (!(trackSize.*filterFunction)())
503 const GridTrackSize& trackSize = gridTrackSize(direction, i); local
504 const Length& minTrackBreadth = trackSize
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleResolver.cpp2041 static bool createGridTrackSize(CSSValue* value, GridTrackSize& trackSize, const StyleResolver::State& state)
2053 trackSize.setLength(workingLength);
2062 trackSize.setMinMax(minTrackBreadth, maxTrackBreadth);
2079 GridTrackSize trackSize;
2080 if (!createGridTrackSize(currValue, trackSize, state))
2083 trackSizes.append(trackSize);
2776 GridTrackSize trackSize;
2777 if (!createGridTrackSize(value, trackSize, state))
2779 state.style()->setGridAutoColumns(trackSize);
2783 GridTrackSize trackSize;
[all...]
H A DCSSComputedStyleDeclaration.cpp1071 static PassRefPtr<CSSValue> valueForGridTrackSize(const GridTrackSize& trackSize, const RenderStyle* style, RenderView* renderView) argument
1073 switch (trackSize.type()) {
1075 return valueForGridTrackBreadth(trackSize.length(), style, renderView);
1078 minMaxTrackBreadths->append(valueForGridTrackBreadth(trackSize.minTrackBreadth(), style, renderView));
1079 minMaxTrackBreadths->append(valueForGridTrackBreadth(trackSize.maxTrackBreadth(), style, renderView));
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/
H A DMediaPlayerPrivateAVFoundationCF.cpp965 CGSize trackSize = AVCFAssetTrackGetNaturalSize(assetTrack); local
966 CGRect trackRect = CGRectMake(0, 0, trackSize.width, trackSize.height);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateAVFoundationObjC.mm1088 CGSize trackSize = [track naturalSize];
1089 CGRect trackRect = CGRectMake(0, 0, trackSize.width, trackSize.height);

Completed in 160 milliseconds