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

/macosx-10.10/WebCore-7600.1.25/css/
H A DLengthFunctions.cpp149 FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatSize& boxSize) argument
151 return FloatSize(floatValueForLength(lengthSize.width(), boxSize.width()), floatValueForLength(lengthSize.height(), boxSize.height()));
H A DCSSPrimitiveValue.cpp318 CSSPrimitiveValue::CSSPrimitiveValue(const LengthSize& lengthSize, const RenderStyle* style) argument
321 init(lengthSize, style);
373 void CSSPrimitiveValue::init(const LengthSize& lengthSize, const RenderStyle* style) argument
377 m_value.pair = Pair::create(create(lengthSize.width(), style), create(lengthSize.height(), style)).leakRef();
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DBasicShapes.cpp223 static FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatRect& boundingBox) argument
225 return FloatSize(floatValueForLength(lengthSize.width(), boundingBox.width()),
226 floatValueForLength(lengthSize.height(), boundingBox.height()));
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DWebPageMac.mm321 size_t lengthSize;
322 if (range && TextIterator::getLocationAndLengthFromRange(frame.selection().rootEditableElementOrDocumentElement(), range.get(), locationSize, lengthSize))
323 result = EditingRange(static_cast<uint64_t>(locationSize), static_cast<uint64_t>(lengthSize));
333 size_t lengthSize;
335 if (range && TextIterator::getLocationAndLengthFromRange(frame.selection().rootEditableElementOrDocumentElement(), range.get(), locationSize, lengthSize))
336 result = EditingRange(static_cast<uint64_t>(locationSize), static_cast<uint64_t>(lengthSize));
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebView.cpp7091 size_t lengthSize;
7092 if (range && TextIterator::getLocationAndLengthFromRange(frame.selection().rootEditableElementOrDocumentElement(), range.get(), locationSize, lengthSize)) {
7094 *length = static_cast<UINT>(lengthSize);

Completed in 88 milliseconds