HomeSort by relevance Sort by last modified time
    Searched refs:adjustedPaintOffset (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderReplica.cpp 79 LayoutPoint adjustedPaintOffset = paintOffset + location();
89 paintMask(paintInfo, adjustedPaintOffset);
RenderWidget.cpp 226 LayoutPoint adjustedPaintOffset = paintOffset + location();
231 IntPoint paintLocation(roundToInt(adjustedPaintOffset.x() + borderLeft() + paddingLeft()),
232 roundToInt(adjustedPaintOffset.y() + borderTop() + paddingTop()));
264 LayoutPoint adjustedPaintOffset = paintOffset + location();
267 paintBoxDecorations(paintInfo, adjustedPaintOffset);
270 paintMask(paintInfo, adjustedPaintOffset);
275 paintOutline(paintInfo, LayoutRect(adjustedPaintOffset, size()));
281 LayoutRect borderRect = LayoutRect(adjustedPaintOffset, size());
306 layer()->paintResizer(paintInfo.context, roundedIntPoint(adjustedPaintOffset), paintInfo.rect);
RenderReplaced.cpp 112 LayoutPoint adjustedPaintOffset = paintOffset + location();
115 paintBoxDecorations(paintInfo, adjustedPaintOffset);
118 paintMask(paintInfo, adjustedPaintOffset);
122 LayoutRect paintRect = LayoutRect(adjustedPaintOffset, size());
141 LayoutRect borderRect = LayoutRect(adjustedPaintOffset, size());
155 paintReplaced(paintInfo, adjustedPaintOffset);
165 selectionPaintingRect.moveBy(adjustedPaintOffset);
183 LayoutPoint adjustedPaintOffset = paintOffset + location();
186 LayoutUnit top = adjustedPaintOffset.y() + visualOverflowRect().y();
187 LayoutUnit bottom = adjustedPaintOffset.y() + visualOverflowRect().maxY()
    [all...]
EllipsisBox.cpp 117 LayoutPoint adjustedPaintOffset = paintOffset;
118 adjustedPaintOffset.move(x() + m_logicalWidth - markupBox->x(),
120 markupBox->paint(paintInfo, adjustedPaintOffset, lineTop, lineBottom);
RenderFrameSet.cpp 128 LayoutPoint adjustedPaintOffset = paintOffset + location();
138 child->paint(paintInfo, adjustedPaintOffset);
141 paintColumnBorder(paintInfo, pixelSnappedIntRect(LayoutRect(adjustedPaintOffset.x() + xPos, adjustedPaintOffset.y() + yPos, borderThickness, height())));
150 paintRowBorder(paintInfo, pixelSnappedIntRect(LayoutRect(adjustedPaintOffset.x(), adjustedPaintOffset.y() + yPos, width(), borderThickness)));
RenderTableRow.cpp 237 LayoutPoint adjustedPaintOffset = paintOffset + location();
240 paintOutline(paintInfo, LayoutRect(adjustedPaintOffset, size()));
RenderFlowThread.cpp 281 IntPoint adjustedPaintOffset;
289 adjustedPaintOffset = roundedIntPoint(paintOffset - portionLocation);
291 // The clipping rect for the region is set up by assuming the flowThreadPortionRect is going to paint offset from adjustedPaintOffset.
292 // Remember that we pixel snapped and moved the paintOffset and stored the snapped result in adjustedPaintOffset. Now we add back in
295 IntRect regionClippingRect = pixelSnappedIntRect(computeRegionClippingRect(adjustedPaintOffset + portionLocation, flowThreadPortionRect, flowThreadPortionOverflowRect));
305 context->translate(adjustedPaintOffset.x(), adjustedPaintOffset.y());
306 info.rect.moveBy(-adjustedPaintOffset);
    [all...]
RenderTable.cpp 627 LayoutPoint adjustedPaintOffset = paintOffset + location();
635 overflowBox.moveBy(adjustedPaintOffset);
640 bool pushedClip = pushContentsClip(paintInfo, adjustedPaintOffset, ForceContentsClip);
641 paintObject(paintInfo, adjustedPaintOffset);
643 popContentsClip(paintInfo, paintPhase, adjustedPaintOffset);
    [all...]
RenderTableCell.cpp     [all...]
InlineTextBox.cpp 491 LayoutPoint adjustedPaintOffset = roundedIntPoint(paintOffset);
518 adjustedPaintOffset.move(isHorizontal() ? truncationOffset : truncationOffset.transposedSize());
527 adjustedPaintOffset.move(0, styleToUse->isHorizontalWritingMode() ? 0 : -logicalHeight());
530 boxOrigin.move(adjustedPaintOffset.x(), adjustedPaintOffset.y());
    [all...]
RenderTableSection.cpp     [all...]
InlineFlowBox.cpp     [all...]
RenderBlock.cpp     [all...]
RenderLayer.cpp     [all...]
RenderBox.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 300 IntPoint adjustedPaintOffset = roundedIntPoint(paintOffset);
301 childPaintInfo.applyTransform(AffineTransform::translation(adjustedPaintOffset.x(), adjustedPaintOffset.y()) * localToBorderBoxTransform());

Completed in 239 milliseconds