| // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s |
| Vector3D(const Vector3D &inVector); |
| Vector3D(float initX, float initY, float initZ); |
| Vector3D &operator=(const Vector3D & rhs); |
| @property (assign) Vector3D position; |
| - (void) setLength: (Vector3D)arg; |
| Vector3D V3D(1.0f, 1.0f, 1.0f); |
| // CHECK: call void @_ZN8Vector3DC1ERKS_ |
| // CHECK: call void @_ZN8Vector3DC1ERKS_ |
| extern "C" void exit(...); |
| typedef struct CGPoint CGPoint; |
| extern "C" const CGPoint CGPointZero; |
| bool operator==(const CGPoint& a, const CGPoint& b); |
| @interface TIconViewSettings |
| @property (assign, nonatomic) CGPoint gridOffset; |
| @implementation TIconViewSettings |
| if ((self.gridOffset) == CGPointZero) |
| if (self.gridOffset == CGPointZero) |