OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:intrect
(Results
601 - 625
of
887
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h
145
virtual void paint(GraphicsContext*, const
IntRect
&);
146
virtual void paintCurrentFrameInContext(GraphicsContext*, const
IntRect
&) = 0;
/external/webkit/Source/WebCore/platform/graphics/cairo/
CairoUtilities.cpp
33
#include "
IntRect
.h"
135
IntRect
imageRect = enclosingIntRect(tileRect);
/external/webkit/Source/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp
73
virtual
IntRect
estimateTextBounds() = 0;
131
IntRect
layerRect;
202
virtual
IntRect
estimateTextBounds();
243
IntRect
TransparencyAwareGlyphPainter::estimateTextBounds()
250
return
IntRect
(m_point.x() - (fontMetrics.ascent() + fontMetrics.descent()) / 2,
311
virtual
IntRect
estimateTextBounds();
338
IntRect
TransparencyAwareUniscribePainter::estimateTextBounds()
359
return
IntRect
(left - (fontMetrics.ascent() + fontMetrics.descent()) / 2,
/external/webkit/Source/WebCore/platform/graphics/filters/
FEBlend.cpp
112
IntRect
effectADrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect());
115
IntRect
effectBDrawingRect = requestedRegionOfInputImageData(in2->absolutePaintRect());
FEDisplacementMap.cpp
109
IntRect
effectADrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect());
112
IntRect
effectBDrawingRect = requestedRegionOfInputImageData(in2->absolutePaintRect());
/external/webkit/Source/WebCore/platform/graphics/qt/
ContextShadowQt.cpp
126
IntRect
clip(clipRect.x(), clipRect.y(), clipRect.width(), clipRect.height());
127
IntRect
layerRect = calculateLayerBoundingRect(context, layerArea, clip);
/external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateFullscreenWindow.cpp
29
#include "
IntRect
.h"
83
IntRect
monitorRect = mi.rcMonitor;
/external/webkit/Source/WebCore/platform/haiku/
PopupMenuHaiku.cpp
98
void show(const
IntRect
& rect, FrameView* view, int index)
175
void PopupMenuHaiku::show(const
IntRect
& rect, FrameView* view, int index)
/external/webkit/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp
133
IntRect
oldWindowRect = m_windowRect;
134
IntRect
oldClipRect = m_clipRect;
136
m_windowRect =
IntRect
(frameView->contentsToWindow(frameRect().location()), frameRect().size());
177
void PluginView::paint(GraphicsContext* context, const
IntRect
& rect)
199
IntRect
exposedRect(rect);
474
void PluginView::setNPWindowRect(const
IntRect
&)
677
void PluginView::invalidateRect(const
IntRect
& rect)
694
IntRect
r(rect->left, rect->top, rect->right - rect->left, rect->bottom - rect->top);
/external/webkit/Source/WebCore/rendering/
LayoutState.cpp
72
IntRect
clipRect(toPoint(m_paintOffset) + renderer->view()->layoutDelta(), layer->size());
126
m_clipRect =
IntRect
(toPoint(m_paintOffset), layer->size());
RenderButton.cpp
178
IntRect
RenderButton::controlClipRect(int tx, int ty) const
181
return
IntRect
(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderFieldset.cpp
173
graphicsContext->clipOut(
IntRect
(tx + legend->x(), clipTop, legend->width(), clipHeight));
177
graphicsContext->clipOut(
IntRect
(clipLeft, ty + legend->y(), clipWidth, legend->height()));
RenderMediaControls.cpp
74
static FloatRect getUnzoomedRectAndAdjustCurrentContext(RenderObject* o, const PaintInfo& paintInfo, const
IntRect
&originalRect)
106
bool RenderMediaControls::paintMediaControlsPart(MediaControlElementType part, RenderObject* o, const PaintInfo& paintInfo, const
IntRect
& r)
RenderScrollbarPart.cpp
146
void RenderScrollbarPart::imageChanged(WrappedImagePtr image, const
IntRect
* rect)
162
void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const
IntRect
& rect)
RenderTable.h
239
virtual
IntRect
overflowClipRect(int tx, int ty, OverlayScrollbarSizeRelevancy relevancy = IgnoreOverlayScrollbarSize);
243
void subtractCaptionRect(
IntRect
&) const;
RenderTableCell.h
149
virtual
IntRect
clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
150
virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer,
IntRect
&, bool fixed = false);
RenderTextControlSingleLine.h
65
virtual
IntRect
controlClipRect(int tx, int ty) const;
71
virtual void addFocusRingRects(Vector<
IntRect
>&, int tx, int ty);
/external/webkit/Source/WebCore/rendering/svg/
RenderSVGForeignObject.cpp
71
IntRect
RenderSVGForeignObject::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer)
76
void RenderSVGForeignObject::computeRectForRepaint(RenderBoxModelObject* repaintContainer,
IntRect
& repaintRect, bool fixed)
RenderSVGResourceMasker.cpp
32
#include "
IntRect
.h"
162
IntRect
maskImageRect(IntPoint(), maskerData->maskImage->size());
SVGInlineFlowBox.cpp
75
IntRect
SVGInlineFlowBox::calculateBoundaries() const
77
IntRect
childRect;
/external/webkit/Source/WebKit/android/jni/
WebViewCore.h
154
void contentInvalidate(const WebCore::
IntRect
&rect);
176
void viewInvalidate(const WebCore::
IntRect
& rect);
181
void offInvalidate(const WebCore::
IntRect
&rect);
499
bool validNodeAndBounds(Frame* , Node* , const
IntRect
& );
514
Vector<
IntRect
> getTouchHighlightRects(int x, int y, int slop);
593
WebCore::
IntRect
m_cursorBounds;
594
WebCore::
IntRect
m_cursorHitBounds;
654
WebCore::
IntRect
m_lastFocusedBounds;
/external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.h
115
virtual void paint(WebCore::GraphicsContext*, const WebCore::
IntRect
&);
116
virtual void paintCurrentFrameInContext(WebCore::GraphicsContext*, const WebCore::
IntRect
&);
/external/webkit/Source/WebKit/mac/WebView/
WebRenderNode.mm
118
IntRect
box = text->linesBoundingBox();
123
IntRect
boundingBox = inlineFlow->borderBoundingBox();
/external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp
81
: HUDWidget(
IntRect
(position, IntSize()))
122
HUDSlider::HUDSlider(HUDSliderButtonShape shape, int buttonSize, const
IntRect
& rect)
142
context.drawEllipse(
IntRect
(m_rect.location().x() + m_buttonPosition, m_rect.location().y() - (m_buttonSize - m_rect.height()) / 2, m_buttonSize, m_buttonSize));
187
virtual void platformCALayerPaintContents(GraphicsContext&, const
IntRect
& inClip) { }
239
, m_volumeSlider(HUDSlider::RoundButton, volumeSliderButtonSize,
IntRect
(IntPoint(margin + buttonMiniSize, marginTop + (buttonSize - buttonMiniSize) / 2 + buttonMiniSize / 2 - sliderHeight / 2), IntSize(volumeSliderWidth, sliderHeight)))
240
, m_timeSlider(HUDSlider::DiamondButton, timeSliderButtonSize,
IntRect
(IntPoint(windowWidth / 2 - timeSliderWidth / 2, windowHeight - margin - sliderHeight), IntSize(timeSliderWidth, sliderHeight)))
495
IntRect
outerRect(0, 0, windowWidth, windowHeight);
497
IntRect
innerRect(borderThickness, borderThickness, windowWidth - borderThickness * 2, windowHeight - borderThickness * 2);
WebElementPropertyBag.cpp
147
IntRect
boundingBox = m_result->innerNonSharedNode() && m_result->innerNonSharedNode()->renderer() ?
148
m_result->innerNonSharedNode()->renderer()->absoluteBoundingBoxRect(true) :
IntRect
();
Completed in 407 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>