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

  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 267 Rect newRect = rect;
268 expected = Bitmap.createBitmap(testBitmap, newRect.left, newRect.top,
269 newRect.width(), newRect.height());
  /external/webkit/WebCore/platform/
ScrollView.cpp 678 void ScrollView::setFrameRect(const IntRect& newRect)
682 if (newRect == oldRect)
685 Widget::setFrameRect(newRect);
690 if (newRect.width() != oldRect.width() || newRect.height() != oldRect.height()) {
850 IntRect newRect = localRect;
851 newRect.move(scrollbar->x(), scrollbar->y());
852 return newRect;
857 IntRect newRect = parentRect;
859 newRect.move(-scrollbar->x(), -scrollbar->y())
    [all...]
  /development/samples/BrowserPlugin/jni/paint/
PaintPlugin.cpp 124 ANPRectI newRect;
125 newRect.left = (int) dirtyRect->left;
126 newRect.top = (int) dirtyRect->top;
127 newRect.right = (int) dirtyRect->right;
128 newRect.bottom = (int) dirtyRect->bottom;
130 return getCanvas(&newRect);
  /external/webkit/WebCore/rendering/
RenderLayer.cpp 283 IntRect newRect = renderer()->clippedOverflowRectForRepaint(repaintContainer);
289 if (newRect != m_repaintRect)
290 renderer()->repaintUsingContainer(repaintContainer, newRect);
295 m_repaintRect = newRect;
    [all...]
RenderObject.h 484 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceBlackText,
488 , rect(newRect)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 637 final Rect newRect = new Rect(ITEM_WIDTH - 10, ITEM_HEIGHT - 10, ITEM_WIDTH, ITEM_HEIGHT);
643 assertTrue(mScrollView.requestChildRectangleOnScreen(child, newRect, true));
ScrollViewTest.java 666 final Rect newRect = new Rect(mItemWidth - orgRectSize, mItemHeight - orgRectSize,
673 assertTrue(mScrollView.requestChildRectangleOnScreen(child, newRect, true));
  /external/webkit/WebCore/editing/
SelectionController.cpp     [all...]

Completed in 249 milliseconds