HomeSort by relevance Sort by last modified time
    Searched refs:rect (Results 276 - 300 of 597) sorted by null

<<11121314151617181920>>

  /external/webkit/WebKitTools/QtLauncher/
webview.cpp 56 QRectF rect(QPoint(0, 0), event->size());
57 m_item->setGeometry(rect);
  /packages/wallpapers/Basic/src/com/android/wallpaper/polarclock/
PolarClockWallpaper.java 21 import android.graphics.Rect;
466 final Rect frame = holder.getSurfaceFrame();
493 final RectF rect = mRect; local
494 rect.set(-size, -size, size, size);
509 c.drawArc(rect, 0.0f, angle * 360.0f, false, paint);
514 rect.set(-size, -size, size, size);
523 c.drawArc(rect, 0.0f, angle * 360.0f, false, paint);
527 rect.set(-size, -size, size, size);
536 c.drawArc(rect, 0.0f, angle * 360.0f, false, paint);
540 rect.set(-size, -size, size, size)
    [all...]
  /external/webkit/WebCore/plugins/gtk/
PluginViewGtk.cpp 187 void PluginView::paint(GraphicsContext* context, const IntRect& rect)
190 paintMissingPluginIcon(context, rect);
208 IntRect exposedRect(rect);
732 void PluginView::invalidateRect(const IntRect& rect)
735 gtk_widget_queue_draw_area(GTK_WIDGET(platformPluginWidget()), rect.x(), rect.y(), rect.width(), rect.height());
739 invalidateWindowlessPluginRect(rect);
742 void PluginView::invalidateRect(NPRect* rect)
    [all...]
  /external/webkit/WebKit/android/nav/
SelectText.cpp 181 #define TOUCH_SLOP 10 // additional distance from character rect when hit
417 virtual bool onIRectGlyph(const SkIRect& rect,
421 * centerX = (rect.L + rect.R) / 2
424 int dx = rect.fLeft + rect.fRight - (mFocusX << 1);
433 mBestBounds.set(rect.fLeft, top(), rect.fRight, bottom());
491 virtual bool onIRectGlyph(const SkIRect& rect,
494 int dx = mLeft ? mFocusX - rect.fRight : rect.fLeft - mFocusX
1522 const SkIRect& rect = m_hitTopLeft ? m_selStart : m_selEnd; local
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 448 for (Rectangle rect : fixed) {
449 if (rect.y > start) {
454 remainderHorizontal += rect.width;
457 remainderVertical += rect.height;
459 start = rect.y;
475 for (Rectangle rect : horizontalPatches) {
476 if (rect.x > start) {
477 horizontalPatchesSum += rect.width;
478 start = rect.x;
483 for (Rectangle rect : patches)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RectFTest.java 24 import android.graphics.Rect;
59 args = {android.graphics.Rect.class}
78 Rect rect = new Rect(0, 0, 10, 10); local
80 mRectF = new RectF(rect);
141 args = {android.graphics.Rect.class}
145 Rect rect = new Rect(1, 2, 3, 4) local
647 Rect rect = new Rect(); local
664 Rect rect = new Rect(); local
    [all...]
  /external/qemu/android/skin/
window.h 34 extern void skin_window_redraw( SkinWindow* window, SkinRect* rect );
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_image_c.h 45 extern int ph_FillHWRect(_THIS, SDL_Surface* surface, SDL_Rect* rect, Uint32 color);
  /external/skia/include/core/
SkPath.h 116 /** Returns true if the path specifies a rectangle. If so, and if rect is
117 not null, set rect to the bounds of the path. If the path does not
118 specify a rectangle, return false and ignore rect.
120 @param rect If not null, returns the bounds of the path if it specifies
124 bool isRect(SkRect* rect) const;
361 @param rect The rectangle to add as a closed contour to the path
364 void addRect(const SkRect& rect, Direction dir = kCW_Direction);
410 @param rect The bounds of a round-rectangle to add as a closed contour
415 void addRoundRect(const SkRect& rect, SkScalar rx, SkScalar ry,
421 @param rect The bounds of a round-rectangle to add as a closed contou
    [all...]
  /external/skia/src/core/
SkScan.cpp 43 const SkIRect& rr = cliper.rect();
  /external/skia/src/utils/
SkProxyCanvas.cpp 66 bool SkProxyCanvas::clipRect(const SkRect& rect, SkRegion::Op op) {
67 return fProxy->clipRect(rect, op);
87 void SkProxyCanvas::drawRect(const SkRect& rect, const SkPaint& paint) {
88 fProxy->drawRect(rect, paint);
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 158 void Path::addRect(const FloatRect& rect)
160 m_path->addRect(rect);
163 void Path::addEllipse(const FloatRect& rect)
165 m_path->addOval(rect);
  /external/webkit/WebCore/platform/image-decoders/qt/
RGBA32BufferQt.cpp 124 setRect(other.rect());
  /external/webkit/WebCore/platform/image-decoders/skia/
ImageDecoderSkia.cpp 117 setRect(other.rect());
  /external/webkit/WebCore/platform/qt/
RenderThemeQt.cpp 221 option.rect = originalRect;
235 void RenderThemeQt::adjustRepaintRect(const RenderObject* o, IntRect& rect)
244 QRect inflatedRect = inflateButtonRect(rect, qStyle());
245 rect = IntRect(inflatedRect.x(), inflatedRect.y(), inflatedRect.width(), inflatedRect.height());
322 styleOption.rect = QRect(0, 0, pushButtonSize.width(), pushButtonSize.height());
440 // Fake a button rect here, since we're just computing deltas
442 styleOption.rect = originalRect;
481 option.rect = r;
486 option.rect = inflateButtonRect(option.rect, qStyle())
    [all...]
  /external/webkit/WebCore/platform/wx/wxcode/win/
scrollbar_render.cpp 123 const wxRect& rect, wxOrientation orient, int current, wxScrollbarPart focusPart, wxScrollbarPart hoverPart, int max, int step, int flags)
136 wxRect transRect = rect;
152 RECT r;
166 RECT buttonRect = r;
180 int physicalLength = horiz ? rect.width : rect.height;
  /external/webkit/WebCore/rendering/
RenderSelectionInfo.h 73 IntRect rect() const { return m_rect; } function in class:WebCore::RenderSelectionInfo
  /external/webkit/WebKit/chromium/public/
WebPoint.h 39 #include <base/gfx/rect.h>
WebSize.h 39 #include <base/gfx/rect.h>
  /external/webkit/WebKit/chromium/src/win/
WebScreenInfoFactory.cpp 40 static WebRect toWebRect(const RECT& input)
67 results.rect = toWebRect(monitorInfo.rcMonitor);
  /external/webkit/WebKit/wx/WebKitSupport/
ChromeClientWx.cpp 339 void ChromeClientWx::repaint(const IntRect& rect, bool contentChanged, bool immediate, bool repaintContentOnly)
345 m_webView->RefreshRect(rect);
352 IntRect ChromeClientWx::windowToScreen(const IntRect& rect) const
355 return rect;
  /frameworks/base/graphics/java/android/graphics/
Region.java 54 public Region(Rect r) {
80 public boolean set(Rect r) {
116 * Return a new Rect set to the bounds of the region. If the region is
117 * empty, the Rect will be set to [0, 0, 0, 0]
119 public Rect getBounds() {
120 Rect r = new Rect();
126 * Set the Rect to the bounds of the region. If the region is empty, the
127 * Rect will be set to [0, 0, 0, 0]
129 public boolean getBounds(Rect r)
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 381 QRect currentRect = m_videoWidget->rect();
416 void MediaPlayerPrivate::paint(GraphicsContext* graphicsContect, const IntRect& rect)
426 painter->fillRect(rect, Qt::black);
428 m_videoWidget->render(painter, QPoint(rect.x(), rect.y()),
429 QRegion(0, 0, rect.width(), rect.height()));
  /external/webkit/WebKit/chromium/src/
ChromeClientImpl.cpp 106 WebRect rect; local
108 rect = m_webView->client()->rootWindowRect();
113 rect.width = m_webView->size().width;
114 rect.height = m_webView->size().height;
116 return FloatRect(rect);
493 IntRect ChromeClientImpl::windowToScreen(const IntRect& rect) const
495 IntRect screenRect(rect);
  /external/webkit/WebCore/platform/graphics/win/
GraphicsLayerCACF.cpp 332 void GraphicsLayerCACF::setNeedsDisplayInRect(const FloatRect& rect)
335 m_layer->setNeedsDisplay(rect);
338 void GraphicsLayerCACF::setContentsRect(const IntRect& rect)
340 if (rect == m_contentsRect)
343 GraphicsLayer::setContentsRect(rect);
482 CGRect rect = CGRectMake(0, 0, m_size.width(), m_size.height()); local
484 m_transformLayer->setBounds(rect);
490 m_layer->setBounds(rect);
652 CGRect rect = CGRectMake(0.0f, local
658 m_contentsLayer->setBounds(rect);
    [all...]

Completed in 272 milliseconds

<<11121314151617181920>>