HomeSort by relevance Sort by last modified time
    Searched full:intrect (Results 376 - 400 of 888) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 128 void PopupMenuWin::show(const IntRect& r, FrameView* view, int index)
292 void PopupMenuWin::calculatePositionAndSize(const IntRect& r, FrameView* v)
297 IntRect rScreenCoords(v->contentsToWindow(r.location()), r.size());
349 IntRect popupRect(popupX, rScreenCoords.maxY(), popupWidth, popupHeight);
490 IntRect damageRect(clientRect());
500 IntRect PopupMenuWin::clientRect() const
502 IntRect clientRect = m_windowRect;
560 void PopupMenuWin::paint(const IntRect& damageRect, HDC hdc)
601 IntRect listRect = damageRect;
618 IntRect itemRect(0, (index - m_scrollOffset) * m_itemHeight, damageRect.width(), m_itemHeight)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderListBox.cpp 251 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index)
253 return IntRect(tx + borderLeft() + paddingLeft(),
301 void RenderListBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty)
330 IntRect scrollRect(tx + width() - borderRight() - m_vBar->width(),
339 static IntSize itemOffsetForAlignment(TextRun textRun, RenderStyle* itemStyle, Font itemFont, IntRect itemBoudingBox)
394 IntRect r = itemBoundingBoxRect(tx, ty, listIndex);
428 IntRect itemRect = itemBoundingBoxRect(tx, ty, listIndex);
439 IntRect vertRect(_tx + width() - borderRight() - m_vBar->width(),
689 IntRect RenderListBox::controlClipRect(int tx, int ty) const
691 IntRect clipRect = contentBoxRect()
    [all...]
EllipsisBox.cpp 73 IntRect EllipsisBox::selectionRect(int tx, int ty)
96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h));
118 IntRect boundsRect = IntRect(tx, ty, m_logicalWidth, m_height);
RenderMediaControlsChromium.h 39 static bool paintMediaControlsPart(MediaControlElementType, RenderObject*, const PaintInfo&, const IntRect&);
RenderThemeChromiumWin.cpp 68 ThemePainter(GraphicsContext* context, const IntRect& r)
99 const IntRect& drawRect() { return m_helper.drawRect(); }
415 bool RenderThemeChromiumWin::paintCheckbox(RenderObject* o, const PaintInfo& i, const IntRect& r)
419 bool RenderThemeChromiumWin::paintRadio(RenderObject* o, const PaintInfo& i, const IntRect& r)
424 bool RenderThemeChromiumWin::paintButton(RenderObject* o, const PaintInfo& i, const IntRect& r)
437 bool RenderThemeChromiumWin::paintTextField(RenderObject* o, const PaintInfo& i, const IntRect& r)
442 bool RenderThemeChromiumWin::paintSliderTrack(RenderObject* o, const PaintInfo& i, const IntRect& r)
455 bool RenderThemeChromiumWin::paintSliderThumb(RenderObject* o, const PaintInfo& i, const IntRect& r)
467 bool RenderThemeChromiumWin::paintMenuList(RenderObject* o, const PaintInfo& i, const IntRect& r)
503 IntRect rect(buttonX
    [all...]
RenderTreeAsText.cpp 77 static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const IntRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal);
87 TextStream& operator<<(TextStream& ts, const IntRect& r)
249 IntRect r;
254 IntRect linesBox = text.linesBoundingBox();
255 r = IntRect(text.firstRunX(), text.firstRunY(), linesBox.width(), linesBox.height());
261 r = IntRect(0, 0, inlineFlow.linesBoundingBox().width(), inlineFlow.linesBoundingBox().height());
268 r = IntRect(cell.x(), cell.y() + cell.intrinsicPaddingBefore(), cell.width(), cell.height() - cell.intrinsicPaddingBefore() - cell.intrinsicPaddingAfter());
581 writeLayers(ts, l, l, IntRect(l->x(), l->y(), l->width(), l->height()), indent + 1, behavior);
594 const IntRect& layerBounds, const IntRect& backgroundClipRect, const IntRect& clipRect, const IntRect& outlineClipRect
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TileGrid.cpp 110 IntRect TileGrid::computeTilesArea(const IntRect& contentArea, float scale)
112 IntRect computedArea;
113 IntRect area(contentArea.x() * scale,
139 const IntRect& prepareArea, const IntRect& fullContentArea,
197 IntRect fullArea = computeTilesArea(fullContentArea, scale);
198 IntRect expandedArea = m_area;
287 int TileGrid::nbTextures(const IntRect& area, float scale)
289 IntRect tileBounds = computeTilesArea(area, scale)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 32 #include "IntRect.h"
196 void GraphicsContext::drawRect(const IntRect& rect)
219 void GraphicsContext::drawEllipse(const IntRect& rect)
228 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
278 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
291 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color)
329 void GraphicsContext::clipOut(const IntRect&)
439 void GraphicsContext::setURLForRect(const KURL&, const IntRect&)
605 void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, int thickness)
611 HDC GraphicsContext::getWindowsContext(const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.cpp 79 void DrawingAreaImpl::setNeedsDisplay(const IntRect& rect)
81 IntRect dirtyRect = rect;
101 void DrawingAreaImpl::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
128 m_scrollRect = IntRect();
185 void DrawingAreaImpl::setPageOverlayNeedsDisplay(const IntRect& rect)
397 m_scrollRect = IntRect();
528 static bool shouldPaintBoundsRect(const IntRect& bounds, const Vector<IntRect>& rects)
574 IntRect bounds = m_dirtyRegion.bounds();
581 Vector<IntRect> rects = m_dirtyRegion.rects()
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 305 static IntRect inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins, float zoomFactor)
311 IntRect result(zoomedRect);
352 static NSButtonCell *checkbox(ControlStates states, const IntRect& zoomedRect, float zoomFactor)
373 static void paintCheckbox(ControlStates states, GraphicsContext* context, const IntRect& zoomedRect, float zoomFactor, ScrollView* scrollView)
387 IntRect inflatedRect = inflateRect(zoomedRect, zoomedSize, checkboxMargins(controlSize), zoomFactor);
437 static NSButtonCell *radio(ControlStates states, const IntRect& zoomedRect, float zoomFactor)
456 static void paintRadio(ControlStates states, GraphicsContext* context, const IntRect& zoomedRect, float zoomFactor, ScrollView* scrollView)
468 IntRect inflatedRect = inflateRect(zoomedRect, zoomedSize, radioMargins(controlSize), zoomFactor);
517 static void setupButtonCell(NSButtonCell *&buttonCell, ControlPart part, ControlStates states, const IntRect& zoomedRect, float zoomFactor
    [all...]
PlatformBridge.h 80 class IntRect;
229 static IntRect screenRect(Widget*);
230 static IntRect screenAvailableRect(Widget*);
252 GraphicsContext*, int part, int state, int classicState, const IntRect&);
254 GraphicsContext*, int part, int state, int classicState, const IntRect&);
256 GraphicsContext*, int state, int classicState, const IntRect&);
258 GraphicsContext*, int part, int state, int classicState, const IntRect&);
260 GraphicsContext*, int part, int state, int classicState, const IntRect&, const IntRect& alignRect);
262 GraphicsContext*, int part, int state, int classicState, const IntRect&)
    [all...]
ScrollbarThemeChromiumLinux.cpp 53 void ScrollbarThemeChromiumLinux::paintTrackPiece(GraphicsContext* gc, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart partType)
56 IntRect alignRect = trackRect(scrollbar, false);
70 void ScrollbarThemeChromiumLinux::paintButton(GraphicsContext* gc, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part)
105 void ScrollbarThemeChromiumLinux::paintThumb(GraphicsContext* gc, Scrollbar* scrollbar, const IntRect& rect)
  /external/webkit/Source/WebCore/platform/mac/
ThemeMac.mm 187 static IntRect inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins, float zoomFactor)
193 IntRect result(zoomedRect);
234 static NSButtonCell *checkbox(ControlStates states, const IntRect& zoomedRect, float zoomFactor)
255 static void paintCheckbox(ControlStates states, GraphicsContext* context, const IntRect& zoomedRect, float zoomFactor, ScrollView* scrollView)
269 IntRect inflatedRect = inflateRect(zoomedRect, zoomedSize, checkboxMargins(controlSize), zoomFactor);
316 static NSButtonCell *radio(ControlStates states, const IntRect& zoomedRect, float zoomFactor)
335 static void paintRadio(ControlStates states, GraphicsContext* context, const IntRect& zoomedRect, float zoomFactor, ScrollView* scrollView)
347 IntRect inflatedRect = inflateRect(zoomedRect, zoomedSize, radioMargins(controlSize), zoomFactor);
405 static void setUpButtonCell(NSButtonCell *cell, ControlPart part, ControlStates states, const IntRect& zoomedRect, float zoomFactor
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 192 void WebPopupMenuProxyWin::showPopupMenu(const IntRect& rect, TextDirection, double, const Vector<WebPopupItem>& items, const PlatformPopupMenuData& data, int32_t selectedIndex)
362 void WebPopupMenuProxyWin::calculatePositionAndSize(const IntRect& rect)
365 IntRect rectInScreenCoords = rect;
396 IntRect popupRect(popupX, rectInScreenCoords.maxY(), popupWidth, popupHeight);
433 IntRect WebPopupMenuProxyWin::clientRect() const
435 IntRect clientRect = m_windowRect;
446 IntRect damageRect(clientRect());
493 IntRect listRect = clientRect();
505 void WebPopupMenuProxyWin::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
507 IntRect scrollRect = rect
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
LayerAndroid.cpp 291 IntRect dirtyArea(area.x(), area.y(), area.width(), area.height());
537 IntRect clip = clippedRect();
538 IntRect dirty = m_dirtyRegion.getBounds();
546 IntRect enclosingDocArea = enclosingIntRect(screenArea);
556 IntRect LayerAndroid::clippedRect() const
558 IntRect r(0, 0, getWidth(), getHeight());
559 IntRect tr = m_drawTransform.mapRect(r);
560 IntRect cr = TilesManager::instance()->shader()->clippedRectWithVisibleContentRect(tr);
561 IntRect rect = m_drawTransform.inverse().mapRect(cr);
594 IntRect contentViewport(TilesManager::instance()->shader()->contentViewport())
    [all...]
IFrameContentLayerAndroid.cpp 15 IntRect scrollBounds;
  /external/webkit/Source/WebCore/accessibility/
AccessibilityListBoxOption.cpp 40 #include "IntRect.h"
86 IntRect AccessibilityListBoxOption::elementRect() const
88 IntRect rect;
100 IntRect parentRect = listBoxRenderer->document()->axObjectCache()->getOrCreate(listBoxRenderer)->boundingBoxRect();
  /external/webkit/Source/WebCore/dom/
ClientRect.cpp 36 ClientRect::ClientRect(const IntRect& rect)
  /external/webkit/Source/WebCore/page/wince/
FrameWinCE.cpp 55 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& pages, int& outPageHeight)
102 pages.append(IntRect(0, printedPagesHeight, currPageWidth, currPageHeight));
114 IntRect ir((int)fr.x(), (int)fr.y(), (int)fr.width(), (int)fr.height());
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.h 72 class IntRect;
81 FloatRect(const IntRect&);
117 // Note, this doesn't match what IntRect::contains(IntPoint&) does; the int version
218 IntRect enclosingIntRect(const FloatRect&);
  /external/webkit/Source/WebCore/platform/graphics/android/context/
RTree.h 30 #include "IntRect.h"
70 void insert(WebCore::IntRect& bounds, WebCore::RecordingData* payload);
72 void search(WebCore::IntRect& clip, Vector<WebCore::RecordingData*>& list);
75 void remove(WebCore::IntRect& clip);
  /external/webkit/Source/WebCore/platform/graphics/qt/
TextureMapperQt.cpp 50 PlatformGraphicsContext* BitmapTextureQt::beginPaint(const IntRect& dirtyRect)
101 void TextureMapperQt::setClip(const IntRect& rect)
135 void TextureMapperQt::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture)
188 virtual PlatformGraphicsContext* beginPaint(const IntRect& rect, bool opaque)
  /external/webkit/Source/WebCore/platform/graphics/wince/
MediaPlayerProxy.h 31 class IntRect;
  /external/webkit/Source/WebCore/platform/gtk/
MainFrameScrollbarGtk.h 36 virtual void paint(GraphicsContext*, const IntRect&);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGBlock.h 39 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);

Completed in 399 milliseconds

<<11121314151617181920>>