HomeSort by relevance Sort by last modified time
    Searched defs:extraOffset (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineTextBox.cpp 626 FloatSize extraOffset;
628 extraOffset = applyShadowToGraphicsContext(context, shadow, shadowRect, false /* stroked */, true /* opaque */, true /* horizontal */);
649 scaledFont.drawText(context, textRun, textOrigin + extraOffset, startPosition, endPosition);
  /frameworks/base/libs/hwui/
PathTessellator.cpp 395 const int extraOffset = (extra + 1) / 2;
397 ? 2 * offset + 6 + 2 * (extra + extraOffset)
398 : offset + 2 + 2 * extraOffset;
436 const int postCapIndex = (isRound && isFirst) ? (2 * extraOffset - 2) : capIndex + (2 * extra);
471 if (isFirst && i == extra - extraOffset) {
481 const int startCapFillIndex = capIndex + 2 * (extra - extraOffset) + 4;
569 const int extraOffset = (extra + 1) / 2;
572 int currentAAOuterIndex = 2 + 2 * extraOffset;
574 int currentStrokeIndex = currentAAInnerIndex + 7 + (3 * extra - 2 * extraOffset);
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 368 FloatSize extraOffset;
382 extraOffset = FloatSize(0, 2 * textRect.height() + max(0.0f, shadowOffset.height()) + shadowBlur);
383 shadowOffset -= extraOffset;
387 return extraOffset;
400 IntSize extraOffset;
402 extraOffset = roundedIntSize(InlineTextBox::applyShadowToGraphicsContext(context, shadow, boxRect, stroked, opaque, horizontal));
408 context->drawText(font, textRun, textOrigin + extraOffset, startOffset, endOffset);
410 context->drawEmphasisMarks(font, textRun, emphasisMark, textOrigin + extraOffset + IntSize(0, emphasisMarkOffset), startOffset, endOffset);
414 context->drawText(font, textRun, textOrigin + extraOffset, 0, endOffset);
416 context->drawEmphasisMarks(font, textRun, emphasisMark, textOrigin + extraOffset + IntSize(0, emphasisMarkOffset), 0, endOffset)
    [all...]

Completed in 118 milliseconds