Searched refs:extraOffset (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DTextPainter.cpp74 IntSize extraOffset; local
76 extraOffset = roundedIntSize(InlineTextBox::applyShadowToGraphicsContext(context, shadow, boxRect, stroked, opaque, horizontal));
81 drawTextOrEmphasisMarks(*context, font, textRun, emphasisMark, emphasisMarkOffset, textOrigin + extraOffset, startOffset, endOffset);
84 drawTextOrEmphasisMarks(*context, font, textRun, emphasisMark, emphasisMarkOffset, textOrigin + extraOffset, 0, endOffset);
86 drawTextOrEmphasisMarks(*context, font, textRun, emphasisMark, emphasisMarkOffset, textOrigin + extraOffset, startOffset, truncationPoint);
H A DInlineTextBox.cpp432 FloatSize extraOffset;
446 extraOffset = FloatSize(0, 2 * textRect.height() + std::max(0.0f, shadowOffset.height()) + shadowRadius);
447 shadowOffset -= extraOffset;
451 return extraOffset;
965 int extraOffset = 0; local
976 extraOffset = std::max(extraOffset, std::max(0, shadowY) + shadowExtent);
980 extraOffset += baseline + 2;
981 localOrigin.move(0, extraOffset);
992 localOrigin.move(0, -extraOffset);
[all...]
H A DRenderBoxModelObject.cpp2419 IntSize extraOffset(roundToInt(paintRect.width()) + std::max(0, shadowOffset.width()) + shadowPaintingExtent + 2 * shadowSpread + 1, 0);
2420 shadowOffset -= extraOffset;
2421 fillRect.move(extraOffset);
2512 IntSize extraOffset(2 * roundToInt(paintRect.width()) + std::max(0, shadowOffset.width()) + shadowPaintingExtent - 2 * shadowSpread + 1, 0);
2513 context->translate(extraOffset.width(), extraOffset.height());
2514 shadowOffset -= extraOffset;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DBitmapContext.py499 extraOffset = 6.0
509 extraOffset /= 3
512 # plus extraOffset units in each dimension.
513 tileOffsetX = extraOffset + tileX;
514 tileOffsetY = extraOffset + tileY;
527 extraOffset = 6.0
538 extraOffset /= 3
541 # plus extraOffset units in each dimension.
542 tileOffsetX = extraOffset + tileX;
543 tileOffsetY = extraOffset
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DBitmapContext.py499 extraOffset = 6.0
509 extraOffset /= 3
512 # plus extraOffset units in each dimension.
513 tileOffsetX = extraOffset + tileX;
514 tileOffsetY = extraOffset + tileY;
527 extraOffset = 6.0
538 extraOffset /= 3
541 # plus extraOffset units in each dimension.
542 tileOffsetX = extraOffset + tileX;
543 tileOffsetY = extraOffset
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DBitmapContext.py499 extraOffset = 6.0
509 extraOffset /= 3
512 # plus extraOffset units in each dimension.
513 tileOffsetX = extraOffset + tileX;
514 tileOffsetY = extraOffset + tileY;
527 extraOffset = 6.0
538 extraOffset /= 3
541 # plus extraOffset units in each dimension.
542 tileOffsetX = extraOffset + tileX;
543 tileOffsetY = extraOffset
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/offlineasm/
H A Dast.rb726 def withOffset(extraOffset)
727 Address.new(codeOrigin, @base, Immediate.new(codeOrigin, @offset.value + extraOffset))
790 def withOffset(extraOffset)
791 BaseIndex.new(codeOrigin, @base, @index, @scale, Immediate.new(codeOrigin, @offset.value + extraOffset))
835 def withOffset(extraOffset)
836 AbsoluteAddress.new(codeOrigin, Immediate.new(codeOrigin, @address.value + extraOffset))
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DSVGInlineTextBox.cpp597 FloatSize extraOffset; local
599 extraOffset = applyShadowToGraphicsContext(context, shadow, shadowRect, false /* stroked */, true /* opaque */, true /* horizontal */);
604 scaledFont.drawText(context, textRun, textOrigin + extraOffset, startPosition, endPosition);

Completed in 280 milliseconds