HomeSort by relevance Sort by last modified time
    Searched refs:localRect (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
Widget.cpp 76 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
79 IntRect parentRect = convertToContainingView(localRect);
82 return localRect;
122 IntRect Widget::convertToContainingView(const IntRect& localRect) const
125 IntRect parentRect(localRect);
126 parentRect.setLocation(parentWidget->convertChildToSelf(this, localRect.location()));
129 return localRect;
135 IntRect localRect = parentRect;
136 localRect.setLocation(parentWidget->convertSelfToChild(this, localRect.location()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImage.h 97 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const OVERRIDE FINAL;
RenderView.h 158 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const OVERRIDE;
RenderImage.cpp 309 bool RenderImage::foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned) const
315 if (!contentBoxRect().contains(localRect))
RenderLayerScrollableArea.h 213 bool overflowControlsIntersectRect(const IntRect& localRect) const;
RenderLayerScrollableArea.cpp     [all...]
RenderBox.h 86 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect) const OVERRIDE;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ExploreByTouchHelper.java 494 * portion of its parent {@link View}. Modifies {@code localRect} to contain
497 * @param localRect A rectangle in local (parent) coordinates.
500 private boolean intersectVisibleToUser(Rect localRect) {
502 if ((localRect == null) || localRect.isEmpty()) {
536 return localRect.intersect(tempVisibleRect);
  /frameworks/support/v4/java/android/support/v4/widget/
ExploreByTouchHelper.java 476 * portion of its parent {@link View}. Modifies {@code localRect} to contain
479 * @param localRect A rectangle in local (parent) coordinates.
482 private boolean intersectVisibleToUser(Rect localRect) {
484 if ((localRect == null) || localRect.isEmpty()) {
514 return localRect.intersect(mTempVisibleRect);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Caret.cpp 205 LayoutRect localRect(rect);
206 caretPainter->flipForWritingMode(localRect);
207 return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
RenderedPosition.cpp 232 IntRect localRect = pixelSnappedIntRect(m_renderer->localCaretRect(m_inlineBox, m_offset, extraWidthToEndOfLine));
233 return localRect == IntRect() ? IntRect() : m_renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
VisiblePosition.cpp 659 LayoutRect localRect = localCaretRect(renderer);
660 if (localRect.isEmpty() || !renderer)
663 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
669 LayoutRect localRect = localCaretRect(renderer);
670 if (localRect.isEmpty() || !renderer)
676 FloatPoint caretPoint = renderer->localToAbsolute(localRect.location());
  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlineFlowBoxPainter.cpp 199 LayoutRect localRect(frameRect);
200 m_inlineFlowBox.flipForWritingMode(localRect);
201 LayoutPoint adjustedPaintOffset = paintOffset + localRect.location();
262 LayoutRect localRect(frameRect);
263 m_inlineFlowBox.flipForWritingMode(localRect);
264 LayoutPoint adjustedPaintOffset = paintOffset + localRect.location();
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.cpp 694 const SkRect* localRect,
697 set_vertex_attributes(this->drawState(), SkToBool(localRect));
707 if (localRect) {
710 coords->setRectFan(localRect->fLeft, localRect->fTop,
711 localRect->fRight, localRect->fBottom,
    [all...]
GrInOrderDrawBuffer.cpp 116 const SkRect* localRect,
122 set_vertex_attributes(drawState, SkToBool(localRect), color);
151 if (localRect) {
154 coords->setRectFan(localRect->fLeft, localRect->fTop,
155 localRect->fRight, localRect->fBottom,
    [all...]
GrDrawTarget.h 350 * @param localRect optional rect that specifies local coords to map onto
352 * @param localMatrix optional matrix applied to localRect. If
358 const SkRect* localRect,
361 this->onDrawRect(rect, localRect, localMatrix);
    [all...]
GrInOrderDrawBuffer.h 201 const SkRect* localRect,
  /external/skia/src/gpu/
GrDrawTarget.cpp 715 const SkRect* localRect,
723 set_vertex_attributes(this->drawState(), NULL != localRect);
733 if (NULL != localRect) {
736 coords->setRectFan(localRect->fLeft, localRect->fTop,
737 localRect->fRight, localRect->fBottom,
    [all...]
GrDrawTarget.h 367 * @param localRect optional rect that specifies local coords to map onto
369 * @param localMatrix optional matrix applied to localRect. If
376 const SkRect* localRect,
379 this->onDrawRect(rect, matrix, localRect, localMatrix);
    [all...]
GrInOrderDrawBuffer.cpp 140 const SkRect* localRect,
151 NULL != localRect,
196 coords->setRectFan(localRect->fLeft, localRect->fTop,
197 localRect->fRight, localRect->fBottom,
    [all...]
GrInOrderDrawBuffer.h 152 const SkRect* localRect,
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 551 IntRect Scrollbar::convertToContainingView(const IntRect& localRect) const
554 return m_scrollableArea->convertFromScrollbarToContainingView(this, localRect);
556 return Widget::convertToContainingView(localRect);
ScrollView.cpp     [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrContext.h 489 * coordinates. The localRect is stretched over the dstRect. The dstRect is
495 * @param localRect rect of local coordinates to be mapped onto dstRect
496 * @param localMatrix Optional matrix to transform localRect.
500 const SkRect& localRect,
    [all...]
  /external/skia/include/gpu/
GrContext.h 476 * coordinates. Each rect can optionally be transformed. The localRect
483 * @param localRect rect of local coordinates to be mapped onto dstRect
485 * @param localMatrix Optional matrix to transform localRect.
489 const SkRect& localRect,
    [all...]

Completed in 648 milliseconds

1 2