Home
last modified time | relevance | path

Searched refs:CGPoint (Results 1 – 25 of 48) sorted by relevance

12

/external/clang/test/CodeGenObjCXX/
Dproperty-dot-copy.mm39 struct CGPoint {
43 typedef struct CGPoint CGPoint; typedef
45 extern "C" const CGPoint CGPointZero;
47 bool operator==(const CGPoint& a, const CGPoint& b);
50 @property (assign, nonatomic) CGPoint gridOffset;
54 - (CGPoint) gridOffset
/external/clang/test/CodeGenObjC/
Dsuper-dotsyntax-struct-property.m6 struct CGPoint { struct
10 typedef struct CGPoint CGPoint; typedef
22 CGPoint origin;
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
DMovieControllerLayer.h71 - (void)handleMouseDown:(CGPoint)point;
72 - (void)handleMouseUp:(CGPoint)point;
73 - (void)handleMouseDragged:(CGPoint)point;
DMovieControllerLayer.m300 - (void)handleMouseDown:(CGPoint)point
319 - (void)handleMouseUp:(CGPoint)point argument
342 - (void)handleMouseDragged:(CGPoint)point argument
Dmain.m225 CGPoint point = CGPointMake(event->data.mouse.pluginX,
250 CGPoint point = CGPointMake(event->data.mouse.pluginX,
264 CGPoint point = CGPointMake(event->data.mouse.pluginX,
/external/llvm/test/CodeGen/X86/
D2008-04-15-LiveVariableBug.ll5 %struct.CGPoint = type { double, double }
8 …ct.NSView*, %struct.NSView*, %struct.NSArray*, %struct._SPFlags, %struct.CGPoint, [5 x %struct.NSO…
12 …%struct.NSImage = type { %struct.NSObject, %struct.NSArray*, %struct.CGPoint, %struct._BCFlags2, %…
16 %struct.NSRect = type { %struct.CGPoint, %struct.CGPoint }
23 … %struct.NSImage*, i32, %struct.NSMutableArray*, %struct.NSURL*, %struct.CGPoint*, %struct.NSArray…
24 …truct.NSWindow*, %struct.CGPoint, %struct.NSObject*, i8*, i8*, i32, %struct.NSObject*, %struct.NSA…
/external/webkit/Source/WebCore/platform/graphics/
DFloatPoint.h35 typedef struct CGPoint CGPoint; typedef
40 typedef struct CGPoint NSPoint;
113 FloatPoint(const CGPoint&);
114 operator CGPoint() const;
DIntPoint.h36 typedef struct CGPoint CGPoint; typedef
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/Platform/cg/
DCGUtilities.h31 void paintImage(CGContextRef, CGImageRef, CGPoint destination, CGRect source);
32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGPoint destination, CGRect sourc…
DCGUtilities.cpp33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source) in paintImage()
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRe… in paintBitmapContext()
/external/webkit/Source/WebCore/platform/graphics/cg/
DFloatPointCG.cpp36 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y) in FloatPoint()
40 FloatPoint::operator CGPoint() const in operator CGPoint()
DIntPointCG.cpp35 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y)) in IntPoint()
39 IntPoint::operator CGPoint() const in operator CGPoint()
DPDFDocumentImage.cpp108 CGPoint rx = CGPointMake(width * cosa, width * sina); in adjustCTM()
109 CGPoint ry = CGPointMake(-height * sina, height * cosa); in adjustCTM()
DPathCG.cpp94 CGPoint* points = element->points; in copyClosingSubpathsApplierFunction()
272 CGPoint* cgPoints = element->points; in CGPathApplierToPathApplier()
/external/llvm/test/Transforms/ScalarRepl/
Dcrash.ll135 %struct.CGPoint = type { float, float }
136 … x %struct.aal_edge_t] } %struct.aal_edge_t = type { %struct.CGPoint, %struct.CGPoint, i32 }
142 …te_t = type { %struct.CGPoint, %struct.CGPoint, %struct.CGPoint, i32, float, float, float, float, …
/external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
DWebFullScreenManagerMac.mm191 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/WebKitLibraries/win/include/WebKitSystemInterface/
DWebKitSystemInterface.h30 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/win/
DGraphicsContextCGWin.cpp218 …const CGPoint upperPoints [] = {{point.x(), point.y() + patternHeight - 2.5 }, {point.x() + width,… in drawLineForTextChecking()
219 …const CGPoint middlePoints [] = {{point.x(), point.y() + patternHeight - 1.5 }, {point.x() + width… in drawLineForTextChecking()
220 …const CGPoint lowerPoints [] = {{point.x(), point.y() + patternHeight - 0.5 }, {point.x() + width,… in drawLineForTextChecking()
DGraphicsLayerCACF.cpp516 CGPoint posPoint = CGPointMake(m_position.x() + m_anchorPoint.x() * m_size.width(), in updateLayerPosition()
528 CGPoint centerPoint = CGPointMake(m_size.width() / 2.0f, m_size.height() / 2.0f); in updateLayerSize()
598 CGPoint point = CGPointMake(m_size.width() / 2.0f, m_size.height() / 2.0f); in updateLayerPreserves3D()
700 CGPoint point = CGPointMake(m_contentsRect.x(), in updateContentsRect()
/external/webkit/Source/WebCore/platform/mac/
DWebCoreSystemInterface.h39 typedef struct CGPoint NSPoint;
129 extern BOOL (*wkHitTestMediaUIPart)(int part, int themeStyle, CGRect bounds, CGPoint point);
150 extern void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint);
DWebCoreSystemInterface.mm46 BOOL (*wkHitTestMediaUIPart)(int part, int themeStyle, CGRect bounds, CGPoint point);
74 void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint point);
/external/clang/test/Analysis/
Dretain-release.mm250 struct CGPoint { struct
254 typedef struct CGPoint CGPoint; typedef
266 CGGradientRef gradient, CGPoint startPoint, CGPoint endPoint,
/external/webkit/Source/WebCore/platform/graphics/mac/
DFontMac.mm109CGPoint position = FloatPoint(point.x(), point.y() + font->fontMetrics().floatAscent(IdeographicBa…
110 Vector<CGPoint, 256> positions(count);
127 Vector<CGPoint, 256> positions(count);
/external/skia/gpu/src/skia/
DSkUIView.mm643 CGPoint delta = [sender translationInView:self];
654 CGPoint velocity = [sender velocityInView:self];
677 CGPoint p0 = [sender locationOfTouch:0 inView:self];
678 CGPoint p1 = [sender locationOfTouch:0 inView:self];
707 CGPoint pt = [sender locationOfTouch:0 inView:self];
/external/chromium/chrome/browser/ui/cocoa/
Dtest_event_utils.mm29 CGPoint location = { point.x, point.y };

12