/external/clang/test/CodeGenObjCXX/ |
D | property-dot-copy.mm | 39 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/ |
D | super-dotsyntax-struct-property.m | 6 struct CGPoint { struct 10 typedef struct CGPoint CGPoint; typedef 22 CGPoint origin;
|
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/ |
D | MovieControllerLayer.h | 71 - (void)handleMouseDown:(CGPoint)point; 72 - (void)handleMouseUp:(CGPoint)point; 73 - (void)handleMouseDragged:(CGPoint)point;
|
D | MovieControllerLayer.m | 300 - (void)handleMouseDown:(CGPoint)point 319 - (void)handleMouseUp:(CGPoint)point argument 342 - (void)handleMouseDragged:(CGPoint)point argument
|
D | 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/llvm/test/CodeGen/X86/ |
D | 2008-04-15-LiveVariableBug.ll | 5 %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/ |
D | FloatPoint.h | 35 typedef struct CGPoint CGPoint; typedef 40 typedef struct CGPoint NSPoint; 113 FloatPoint(const CGPoint&); 114 operator CGPoint() const;
|
D | IntPoint.h | 36 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/ |
D | CGUtilities.h | 31 void paintImage(CGContextRef, CGImageRef, CGPoint destination, CGRect source); 32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGPoint destination, CGRect sourc…
|
D | CGUtilities.cpp | 33 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/ |
D | FloatPointCG.cpp | 36 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y) in FloatPoint() 40 FloatPoint::operator CGPoint() const in operator CGPoint()
|
D | IntPointCG.cpp | 35 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()
|
D | PDFDocumentImage.cpp | 108 CGPoint rx = CGPointMake(width * cosa, width * sina); in adjustCTM() 109 CGPoint ry = CGPointMake(-height * sina, height * cosa); in adjustCTM()
|
D | PathCG.cpp | 94 CGPoint* points = element->points; in copyClosingSubpathsApplierFunction() 272 CGPoint* cgPoints = element->points; in CGPathApplierToPathApplier()
|
/external/llvm/test/Transforms/ScalarRepl/ |
D | crash.ll | 135 %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/ |
D | 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/WebKitLibraries/win/include/WebKitSystemInterface/ |
D | 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/win/ |
D | GraphicsContextCGWin.cpp | 218 …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()
|
D | GraphicsLayerCACF.cpp | 516 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/ |
D | 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);
|
D | WebCoreSystemInterface.mm | 46 BOOL (*wkHitTestMediaUIPart)(int part, int themeStyle, CGRect bounds, CGPoint point); 74 void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint point);
|
/external/clang/test/Analysis/ |
D | retain-release.mm | 250 struct CGPoint { struct 254 typedef struct CGPoint CGPoint; typedef 266 CGGradientRef gradient, CGPoint startPoint, CGPoint endPoint,
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | FontMac.mm | 109 …CGPoint 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/ |
D | SkUIView.mm | 643 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/ |
D | test_event_utils.mm | 29 CGPoint location = { point.x, point.y };
|