mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 03:29:57 +00:00
8fbe78f6fc
- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
66 lines
1.4 KiB
Objective-C
66 lines
1.4 KiB
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
typedef signed char BOOL;
|
|
@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;
|
|
|
|
@protocol NSObject
|
|
- (BOOL) isEqual:(id) object;
|
|
@end
|
|
|
|
@protocol NSCoding
|
|
- (void) encodeWithCoder:(NSCoder *) aCoder;
|
|
@end
|
|
|
|
@interface NSObject < NSObject > {} @end
|
|
|
|
typedef float CGFloat;
|
|
|
|
@interface NSResponder:NSObject < NSCoding > {} @end
|
|
|
|
@class XCElementView;
|
|
|
|
typedef struct _XCElementInset {} XCElementInset;
|
|
|
|
@protocol XCElementP < NSObject >
|
|
-(id) vertical;
|
|
@end
|
|
|
|
@protocol XCElementDisplayDelegateP;
|
|
@protocol XCElementTabMarkerP;
|
|
|
|
typedef NSObject < XCElementTabMarkerP > XCElementTabMarker;
|
|
|
|
@protocol XCElementTabberP < XCElementP >
|
|
-(void) setMarker:(XCElementTabMarker *) marker;
|
|
@end
|
|
|
|
typedef NSObject < XCElementTabberP > XCElementTabber;
|
|
|
|
@protocol XCElementTabMarkerP < NSObject >
|
|
@property(nonatomic)
|
|
BOOL variableSized;
|
|
@end
|
|
|
|
@protocol XCElementJustifierP < XCElementP >
|
|
-(void) setHJustification:(CGFloat) hJust;
|
|
@end
|
|
|
|
typedef NSObject < XCElementJustifierP > XCElementJustifier;
|
|
@interface XCElementImp:NSObject < XCElementP > {}
|
|
@end
|
|
|
|
@class XCElementImp;
|
|
|
|
@interface XCElementTabberImp:XCElementImp < XCElementTabberP > {
|
|
XCElementTabMarker *_marker;
|
|
}
|
|
@end
|
|
|
|
@implementation XCElementTabberImp
|
|
- (void) setMarker:(XCElementTabMarker *) marker {
|
|
if (_marker && _marker.variableSized) {
|
|
}
|
|
}
|
|
- (id)vertical { return self; }
|
|
- (BOOL)isEqual:x { return 1; }
|
|
@end
|