HomeSort by relevance Sort by last modified time
    Searched refs:CGPoint (Results 1 - 25 of 36) sorted by null

1 2

  /external/webkit/Source/WebKit2/Platform/cg/
CGUtilities.h 31 void paintImage(CGContextRef, CGImageRef, CGPoint destination, CGRect source);
32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGPoint destination, CGRect source);
CGUtilities.cpp 33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source)
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRect source)
  /external/webkit/Source/WebCore/platform/graphics/cg/
FloatPointCG.cpp 36 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y)
40 FloatPoint::operator CGPoint() const
IntPointCG.cpp 35 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
39 IntPoint::operator CGPoint() const
PDFDocumentImage.cpp 108 CGPoint rx = CGPointMake(width * cosa, width * sina);
109 CGPoint ry = CGPointMake(-height * sina, height * cosa);
PathCG.cpp 94 CGPoint* points = element->points;
272 CGPoint* cgPoints = element->points;
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
MovieControllerLayer.h 71 - (void)handleMouseDown:(CGPoint)point;
72 - (void)handleMouseUp:(CGPoint)point;
73 - (void)handleMouseDragged:(CGPoint)point;
MovieControllerLayer.m 300 - (void)handleMouseDown:(CGPoint)point
319 - (void)handleMouseUp:(CGPoint)point
342 - (void)handleMouseDragged:(CGPoint)point
main.m 225 CGPoint point = CGPointMake(event->data.mouse.pluginX,
250 CGPoint point = CGPointMake(event->data.mouse.pluginX,
264 CGPoint point = CGPointMake(event->data.mouse.pluginX,
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint.h 35 typedef struct CGPoint CGPoint;
40 typedef struct CGPoint NSPoint;
113 FloatPoint(const CGPoint&);
114 operator CGPoint() const;
IntPoint.h 36 typedef struct CGPoint CGPoint;
42 typedef struct CGPoint NSPoint;
118 explicit IntPoint(const CGPoint&); // don't do this implicitly since it's lossy
119 operator CGPoint() const;
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
WebFullScreenManagerMac.mm 191 CGPoint destinationPosition = [caLayer position];
192 CGPoint layerAnchor = [caLayer anchorPoint];
193 CGPoint initialPosition = CGPointMake(
240 CGPoint destinationPosition = [(CALayer*)[caLayer presentationLayer] position];
242 CGPoint layerAnchor = [caLayer anchorPoint];
243 CGPoint initialPosition = CGPointMake(
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextCGWin.cpp 218 const CGPoint upperPoints [] = {{point.x(), point.y() + patternHeight - 2.5 }, {point.x() + width, point.y() + patternHeight - 2.5}};
219 const CGPoint middlePoints [] = {{point.x(), point.y() + patternHeight - 1.5 }, {point.x() + width, point.y() + patternHeight - 1.5}};
220 const CGPoint lowerPoints [] = {{point.x(), point.y() + patternHeight - 0.5 }, {point.x() + width, point.y() + patternHeight - 0.5 }};
GraphicsLayerCACF.cpp 516 CGPoint posPoint = CGPointMake(m_position.x() + m_anchorPoint.x() * m_size.width(),
528 CGPoint centerPoint = CGPointMake(m_size.width() / 2.0f, m_size.height() / 2.0f);
598 CGPoint point = CGPointMake(m_size.width() / 2.0f, m_size.height() / 2.0f);
700 CGPoint point = CGPointMake(m_contentsRect.x(),
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 30 struct CGPoint;
83 void wkSetPatternPhaseInUserSpace(CGContextRef, CGPoint phasePoint);
230 bool WKHitTestMediaUIPart(int part, int themeStyle, CGRect bounds, CGPoint point);
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontMac.mm 109 CGPoint position = FloatPoint(point.x(), point.y() + font->fontMetrics().floatAscent(IdeographicBaseline) - font->fontMetrics().floatAscent());
110 Vector<CGPoint, 256> positions(count);
127 Vector<CGPoint, 256> positions(count);
WebLayer.mm 186 CGPoint aPos = [self position];
  /external/webkit/Source/WebCore/platform/mac/
WebCoreSystemInterface.h 39 typedef struct CGPoint NSPoint;
129 extern BOOL (*wkHitTestMediaUIPart)(int part, int themeStyle, CGRect bounds, CGPoint point);
150 extern void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint);
WebCoreSystemInterface.mm 46 BOOL (*wkHitTestMediaUIPart)(int part, int themeStyle, CGRect bounds, CGPoint point);
74 void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint point);
  /external/webkit/Source/WebKit2/UIProcess/mac/
BackingStoreMac.mm 138 CGPoint destination = CGPointMake(scrollRect.x() + scrollOffset.width(), scrollRect.y() + scrollOffset.height());
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 200 CGPoint QZ_PrivateSDLToCG (_THIS, NSPoint *p) {
202 CGPoint cgp;
242 CGPoint cgp;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
LayerTreeHostCAWin.cpp 197 CGPoint imageOrigin;
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWin.cpp 337 CGPoint point = CACFLayerGetPosition(m_layer.get());
350 CGPoint point = CACFLayerGetAnchorPoint(m_layer.get());
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 156 void WKSetPatternPhaseInUserSpace(CGContextRef, CGPoint);
290 BOOL WKHitTestMediaUIPart(int part, int themeStyle, CGRect bounds, CGPoint point);
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCALayerMac.mm 414 CGPoint point = [m_layer.get() position];
428 CGPoint point = [m_layer.get() anchorPoint];

Completed in 1622 milliseconds

1 2