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

<<11121314151617181920>>

  /external/webkit/WebKit/android/nav/
CachedFrame.cpp 40 const WebCore::IntRect& rect) const
42 DBG_NAV_LOGD("node=%p [%d] rect=(%d,%d,w=%d,h=%d)",
43 node, node->index(), rect.x(), rect.y(), rect.width(), rect.height());
45 return layer(node)->adjustBounds(mRoot->rootLayer(), rect);
47 return rect;
356 const CachedNode* CachedFrame::findBestAt(const WebCore::IntRect& rect,
363 int rectWidth = rect.width()
573 WebCore::IntRect rect = test->ring(this, part); local
    [all...]
  /external/webkit/WebCore/rendering/
RenderBox.cpp 317 IntRect rect = contentBoxRect(); local
319 rect.move(absPos.x(), absPos.y());
320 return rect;
325 IntRect rect = contentBoxRect(); local
326 return localToAbsoluteQuad(FloatRect(rect));
790 // Now that we know this image is being used, compute the renderer and the rect
    [all...]
RenderSVGInlineText.cpp 127 IntRect rect;
129 rect.unite(box->selectionRect(0, 0, startPos, endPos));
131 return localToContainerQuad(FloatQuad(rect), repaintContainer);
143 // SVG doesn't have any editable content where a caret rect would be needed.
  /external/quake/quake/src/QW/client/
gl_vidnt.c 87 RECT WindowRect;
157 RECT window_rect;
193 RECT rect; local
210 RECT rect; local
226 rect = WindowRect;
227 AdjustWindowRectEx(&rect, WindowStyle, FALSE, 0);
229 width = rect.right - rect.left;
288 RECT rect; local
    [all...]
sys_win.c 560 RECT rect; local
617 if (GetWindowRect (hwnd_dialog, &rect))
619 if (rect.left > (rect.top * 2))
622 (rect.left / 2) - ((rect.right - rect.left) / 2),
623 rect.top, 0, 0,
  /external/quake/quake/src/WinQuake/
gl_vidnt.cpp 87 RECT WindowRect;
157 RECT window_rect;
193 RECT rect; local
210 RECT rect; local
226 rect = WindowRect;
227 AdjustWindowRectEx(&rect, WindowStyle, FALSE, 0);
229 width = rect.right - rect.left;
288 RECT rect; local
    [all...]
sys_win.cpp 700 RECT rect; local
761 if (GetWindowRect (hwnd_dialog, &rect))
763 if (rect.left > (rect.top * 2))
766 (rect.left / 2) - ((rect.right - rect.left) / 2),
767 rect.top, 0, 0,
  /external/skia/gm/
shapes.cpp 9 SkRect rect; local
10 rect.set(SkIntToScalar(l), SkIntToScalar(t),
12 return rect;
  /external/webkit/WebCore/svg/
SVGRectElement.cpp 60 document()->accessSVGExtensions()->reportError("A negative value for rect <rx> is not allowed");
64 document()->accessSVGExtensions()->reportError("A negative value for rect <ry> is not allowed");
68 document()->accessSVGExtensions()->reportError("A negative value for rect <width> is not allowed");
72 document()->accessSVGExtensions()->reportError("A negative value for rect <height> is not allowed");
134 FloatRect rect(x().value(this), y().value(this), width().value(this), height().value(this));
141 return Path::createRoundedRectangle(rect, FloatSize(_rx, _ry));
144 return Path::createRectangle(rect);
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerPattern.cpp 61 void SVGPaintServerPattern::setPatternBoundaries(const FloatRect& rect)
63 m_patternBoundaries = rect;
116 IntRect tileRect = tile()->image()->rect();
  /external/webkit/WebKit/android/plugins/
ANPSurfaceInterface.cpp 36 #include <ui/Rect.h>
107 Rect rect(dirtyRect->left, dirtyRect->top, dirtyRect->right, dirtyRect->bottom);
108 if (!rect.isEmpty()) {
109 dirtyRegion.set(rect);
112 dirtyRegion.set(Rect(0x3FFF, 0x3FFF));
124 Rect dirtyBounds = dirtyRegion.getBounds();
  /external/webkit/WebKit/win/
FullscreenVideoController.h 45 HUDWidget(const WebCore::IntRect& rect) : m_rect(rect) { }
87 HUDSlider(HUDSliderButtonShape, int buttonSize, const WebCore::IntRect& rect);
  /packages/apps/Launcher2/src/com/android/launcher2/
BubbleTextView.java 123 final RectF rect = mRect; local
127 rect.set(left + layout.getLineLeft(0) - mPaddingH,
131 canvas.drawRoundRect(rect, mCornerRadius, mCornerRadius, mPaint);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
UiPropertySheetPage.java 124 Rectangle rect = item.getBounds(0);
125 Point pt = tree.toDisplay(rect.x, rect.y);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PropertySheetPage2.java 131 Rectangle rect = item.getBounds(0);
132 Point pt = tree.toDisplay(rect.x, rect.y);
  /development/ide/xcode/ports/
SkOSWindow_Mac.cpp 76 Rect r;
84 Rect rect; local
86 rect.left = r.fLeft;
87 rect.top = r.fTop;
88 rect.right = r.fRight;
89 rect.bottom = r.fBottom;
90 InvalWindowRect((WindowRef)fHWND, &rect);
  /external/skia/include/core/
SkCanvas.h 217 @param rect The rect to intersect with the current clip
221 virtual bool clipRect(const SkRect& rect,
274 @param rect the rect to compare with the current clip
276 @return true if the rect (transformed by the canvas' matrix) does not
279 bool quickReject(const SkRect& rect, EdgeType et) const;
397 @param rect The rect to be drawn
398 @param paint The paint used to draw the rect
    [all...]
  /external/webkit/WebCore/page/
Chrome.cpp 85 IntRect Chrome::windowToScreen(const IntRect& rect) const
87 return m_client->windowToScreen(rect);
100 void Chrome::scrollRectIntoView(const IntRect& rect, const ScrollView* scrollView) const
102 m_client->scrollRectIntoView(rect, scrollView);
110 void Chrome::setWindowRect(const FloatRect& rect) const
112 m_client->setWindowRect(rect);
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 307 NSRect rect = [ qz_window frame ];
308 *px = rect.origin.x;
309 *py = this->hidden->height - rect.origin.y - rect.size.height;
358 int QZ_GetMonitorRect (_THIS, SDL_Rect *rect)
408 rect->x = vis.origin.x;
409 rect->y = vis.origin.y;
410 rect->w = vis.size.width;
411 rect->h = vis.size.height;
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_wingl.c 47 RECT rect = { 0, 0, 0, 0 }; local
49 GetWindowRect(SDL_Window, &rect);
56 rect.left, rect.top,
57 (rect.right-rect.left)+1,
58 (rect.bottom-rect.top)+1,
  /external/skia/include/utils/
SkNWayCanvas.h 29 virtual bool clipRect(const SkRect& rect,
39 virtual void drawRect(const SkRect& rect, const SkPaint& paint);
  /external/webkit/WebCore/platform/graphics/android/
GradientAndroid.cpp 114 void Gradient::fill(GraphicsContext* context, const FloatRect& rect)
124 android_gc2canvas(context)->drawRect(rect, paint);
  /external/webkit/WebCore/platform/graphics/cg/
GradientCG.cpp 109 void Gradient::fill(GraphicsContext* context, const FloatRect& rect)
111 context->clip(rect);
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.cpp 134 Rect m_fullscreenRect;
171 Rect rect = { 0, 0, 0, 0 }; local
172 m_fullscreenRect = rect;
224 Rect naturalRect;
225 Rect initialRect;
313 Rect bounds;
371 Rect bounds;
399 Rect bounds;
434 Rect bounds;
602 Rect rect = { 0, }; local
1127 Rect rect = m_private->m_fullscreenWindow->portRect; local
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSViewExtras.m 155 rect:(NSRect)rect
167 NSSize originalSize = rect.size;
168 origin = rect.origin;

Completed in 864 milliseconds

<<11121314151617181920>>