Home
last modified time | relevance | path

Searched refs:NSObject (Results 1 – 25 of 584) sorted by relevance

12345678910>>...24

/external/llvm/test/CodeGen/X86/
D2008-04-15-LiveVariableBug.ll6 %struct.NSArray = type { %struct.NSObject }
7 %struct.NSAssertionHandler = type { %struct.NSObject, i8* }
8NSObject, %struct.NSObject*, i8*, %struct.NSView*, %struct.NSView*, %struct.NSView*, %struct.NSArr…
9NSObject, %struct.NSWindow*, %struct.NSObject*, %struct.NSURL*, %struct.NSArray*, %struct.NSPrintI…
10 …%struct.AA = type { %struct.NSObject, %struct.NSDocument*, %struct.NSURL*, %struct.NSArray*, %stru…
11 %struct.NSError = type { %struct.NSObject, i8*, i64, %struct.NSArray*, %struct.NSArray* }
12 …%struct.NSImage = type { %struct.NSObject, %struct.NSArray*, %struct.CGPoint, %struct._BCFlags2, %…
14 %struct.NSObject = type { %struct.NSObject* }
15 %struct.NSPrintInfo = type { %struct.NSObject, %struct.NSMutableArray*, %struct.NSObject* }
18 %struct.NSResponder = type { %struct.NSObject, %struct.NSObject* }
[all …]
Dsplit-eh-lpad-edges.ll4 …eader = type { i8*, i8*, i32, i8*, i8*, i8*, i8*, i8*, %struct.NSObject* (%struct.NSObject*, %stru…
5 %struct.NSArray = type { %struct.NSObject }
6 %struct.NSAutoreleasePool = type { %struct.NSObject, i8*, i8*, i8*, i8* }
7 %struct.NSObject = type { %struct.NSObject* }
9 …%struct._message_ref_t = type { %struct.NSObject* (%struct.NSObject*, %struct._message_ref_t*, ...…
13 …lanHeader* %fetchPlan, %struct.objc_selector* %selectionMethod, %struct.NSObject* %selectionParame…
15 …%0 = invoke %struct.NSObject* null(%struct.NSObject* null, %struct._message_ref_t* @"\01l_objc_msg…
16 to label %invcont unwind label %lpad ; <%struct.NSObject*> [#uses=1]
19 …%1 = invoke %struct.NSObject* (%struct.NSObject*, %struct.objc_selector*, ...)* @objc_msgSend(%str…
20 to label %invcont26 unwind label %lpad ; <%struct.NSObject*> [#uses=0]
[all …]
/external/clang/test/SemaObjC/
Dcomptypes-10.m10 @interface NSObject <NSCopying, NSPROTO, NSPROTO1> { interface
15 void gorf(NSObject <NSCopying> *); // expected-note {{passing argument to parameter here}}
17 NSObject <NSCopying> *foo(id <NSCopying> bar, id id_obj)
19NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with …
20NSObject *Init1 = bar; // expected-warning {{initializing 'NSObject *' with an expression of incom…
22 NSObject <NSCopying> *I = id_obj;
23 NSObject *I1 = id_obj;
24 …ected-warning {{passing 'id<NSCopying>' to parameter of incompatible type 'NSObject<NSCopying> *'}}
28 …{returning 'id<NSCopying>' from a function with incompatible result type 'NSObject<NSCopying> *'}}
33NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with …
[all …]
Dproperty-in-class-extension.m16 @class NSObject;
20 NSObject *_bar;
21 NSObject *_baz;
22 NSObject *_bam;
24 - (NSObject *)baz;
28 - (NSObject *)bar; category
32 @property (readwrite, assign) NSObject *bar;
33 @property (readwrite, assign) NSObject *baz;
34 @property (readwrite, assign) NSObject *bam;
35 @property (readwrite, assign) NSObject *warn;
[all …]
Dnsobject-attribute.m3 typedef struct CGColor * __attribute__ ((NSObject)) CGColorRef;
4 typedef struct CGColor * __attribute__((NSObject(12))) Illegal; // expected-error {{'NSObject' att…
9 typedef struct S1 __attribute__ ((NSObject)) CGColorRef1; // expected-error {{'NSObject' attribute…
10 typedef void * __attribute__ ((NSObject)) CGColorRef2; // no-warning
20 typedef struct CGColor * __attribute__((NSObject)) CGColorRefNoNSObject; // no-warning category
23 @property (strong) __attribute__((NSObject)) CFTypeRef myObj; // no-warning
51 …__attribute__((NSObject)) void * color; // expected-warning {{'NSObject' attribute may be put on a…
54 @property (nonatomic, retain) __attribute__((NSObject)) CGColorRefNoNSObject color; // // no-warning
57 …char* __attribute__((NSObject)) string2 = 0; // expected-warning {{'NSObject' attribute may be put…
62 @property(retain) __attribute__((NSObject)) int i; // expected-error {{'NSObject' attribute is for …
Dblock-type-safety.m25 @protocol NSObject; protocol in id
26 @class NSObject;
28 void r2 (id<NSObject> (^f) (void)) {
44 r2(^id<NSObject>() { return 0; });
65 f1(^(id<NSObject> a) { }); // OK
183 id<NSObject> anQualId1 = aBlock; // Ok
184 id<NSObject, NSCopying> anQualId2 = aBlock; // Ok
185 id<NSObject, NSCopying, NSObject, NSCopying> anQualId3 = aBlock; // Ok
187 …id<NSObject, P1, NSCopying> anQualId5 = aBlock; // expected-error {{initializing 'id<NSObject,P1,N…
193 NSObject *NSO = aBlock; // Ok
[all …]
Dcomptypes-legal.m3 @protocol NSObject protocol
5 @interface NSObject <NSObject> { interface
8 @interface NSString : NSObject
10 void __setRetained(id *ivar, id value, NSObject **o) {
17 @implementation NSObject (ScopeAdditions) implementation in ScopeAdditions
25 NSObject *ExternFunc (NSObject *filePath, NSObject *key);
26 typedef id FuncSignature (NSObject *arg1, Derived *arg2);
28 @interface Derived: NSObject
36 …]; // expected-warning{{incompatible pointer types sending 'NSObject *(NSObject *, NSObject *)' t…
Dprops-on-prots.m6 @protocol NSObject protocol
14 @interface NSObject < NSObject > {} @end interface
18 @interface NSResponder:NSObject < NSCoding > {} @end
24 @protocol XCElementP < NSObject >
31 typedef NSObject < XCElementTabMarkerP > XCElementTabMarker;
37 typedef NSObject < XCElementTabberP > XCElementTabber;
39 @protocol XCElementTabMarkerP < NSObject >
48 typedef NSObject < XCElementJustifierP > XCElementJustifier;
49 @interface XCElementImp:NSObject < XCElementP > {}
Dtypedef-class.m8 @protocol NSObject - (BOOL) isEqual:(id) object; - (id)init; @end protocol
12 @interface NSObject < NSObject > {} interface
18 @interface NSTask:NSObject
25 @interface NSCell:NSObject < NSCopying, NSCoding > {}
34 @protocol XCElementP < NSObject >
39 @protocol XCElementDisplayDelegateP < NSObject >
46 typedef NSObject < XCElementSpacerP > XCElementSpacer;
51 typedef NSObject < XCElementTogglerP > XCElementToggler; // expected-note {{previous definition is …
53 @interface XCElementRootFace:NSObject {} @end
63 @interface XCElementDisplay:NSObject < XCElementDisplayDelegateP > {} @end
Dobjc-independent-class-attribute.m4 @interface NSObject @end interface
6 typedef NSObject * __attribute__((objc_independent_class))dispatch_queue_t;
11NSObject *__attribute__((objc_independent_class)) ns; // expected-warning {{'objc_independent_clas…
16 @interface DispatchQPointerCastIssue : NSObject {
17NSObject *__attribute__((objc_independent_class)) Ivar; // expected-warning {{'objc_independent_cl…
20 @property (copy) NSObject *__attribute__((objc_independent_class)) Prop; // expected-warning {{'obj…
22 typedef NSObject * __attribute__((objc_independent_class))dispatch_queue_t_1;
32 NSObject *get_nsobject() {
33 typedef NSObject * __attribute__((objc_independent_class))dispatch_queue_t;
Dprotocol-typecheck.m3 @interface NSObject @end interface
11 - (void)setFlexElement:(NSObject <PWhatever, XCElementP> *)flexer;
12 - (void)setFlexElement2:(NSObject <PWhatever, XCElementSpacerP> *)flexer; // expected-note{{passing…
17 NSObject <PWhatever, XCElementSpacerP> * flexer;
18 NSObject <PWhatever, XCElementP> * flexer2;
22 …// protocol-typecheck.m:21: warning: class 'NSObject <PWhatever, XCElementP>' does not implement t…
23 …arning{{incompatible pointer types sending 'NSObject<PWhatever,XCElementP> *' to parameter of type…
Dmethod-lookup-2.m5 @protocol NSObject protocol
12 @interface NSObject < NSObject > {} @end interface
16 @interface NSPortNameServer:NSObject
26 @interface NSRunLoop:NSObject {} @end
34 @interface SenTestTool:NSObject {}
46 @interface XX : NSObject
52 @interface YY : NSObject
Dcompatible-protocol-qualified-types.m6 @protocol NSObject protocol
14 @interface NSObject <NSObject> {} interface
19 @interface NSResponder : NSObject <NSCoding> {}
25 - (NSObject <XCSelectionSource> *) source;
37 id<XCSelectionSource, NSObject> source =
45 @interface NSTextStorage : NSObject
52 @protocol NSTextStorageDelegate <NSObject>
60 @interface SKTText : NSObject {
Dproperty-8.m9 @protocol NSObject - (BOOL)isEqual:(id)object; @end protocol
14 @interface NSObject <NSObject> {} @end interface
26 @interface NSDictionary : NSObject <NSCopying, NSMutableCopying, NSCoding, NSFastEnumeration>
32 @interface NSObject(NSKeyValueObserving) interface in NSKeyValueObserving
34 - (void)removeObserver:(NSObject *)observer forKeyPath:(NSString *)keyPath; argument
39 @interface NSResponder : NSObject <NSCoding> {}
48 @interface _XCOQQuery : NSObject {}
Dcomptypes-9.m11 @protocol NSObject protocol
27 @interface NSObject <NSObject> {} interface
40 @interface NSArray : NSObject <NSCopying, NSMutableCopying, NSCoding, NSFastEnumeration>
47 @interface NSString : NSObject <NSCopying, NSMutableCopying, NSCoding>
60 @interface NSResponder : NSObject <NSCoding> {}
70 @protocol PBXBuildLogContainerItems <NSObject>
74 @interface PBXBuildLogItem : NSObject {}
Dselector-overload.m4 @interface NSObject interface
13 @interface Foo : NSObject
20 @interface Bar : NSObject
26 @interface Car : NSObject
32 @interface Zar : NSObject
38 @interface Rar : NSObject
/external/clang/test/Analysis/
Drefcnt_naming.m8 @protocol NSObject - (BOOL)isEqual:(id)object; @end protocol
9 @interface NSObject <NSObject> {} @end interface
12 @interface NamingTest : NSObject {}
13 -(NSObject*)copyPhoto;
14 -(NSObject*)mutableCopyPhoto;
15 -(NSObject*)mutable;
16 -(NSObject*)mutableCopying;
17 -(NSObject*)photocopy; // read as "photocopy"
18 -(NSObject*)photoCopy; // read as "photo Copy"
19 -(NSObject*)__blebPRCopy; // read as "bleb PRCopy"
[all …]
Dobjc_invalidation.m10 @protocol NSObject protocol
12 @interface NSObject <NSObject> {} interface
26 @protocol Invalidation1 <NSObject>
30 @protocol Invalidation2 <NSObject>
34 @protocol Invalidation3 <NSObject>
48 @interface ClassWithInvalidationMethodInCategory <NSObject>
55 @interface SomeInvalidationImplementingObject: NSObject <Invalidation3, Invalidation2> {
91 NSObject *NIvar1;
92 NSObject *NObj2;
93 NSObject *_NProp1;
[all …]
DMissingDealloc.m4 @protocol NSObject protocol
9 @interface NSObject <NSObject> {} interface
19 @interface MyObject : NSObject {
36 @interface TestSELs : NSObject {
59 @interface HasOutlet : NSObject {
72 @interface MyObject_rdar6380411 : NSObject {
94 @interface SenTestCase : NSObject {}
102 @interface NSBundle : NSObject {}
/external/llvm/test/Transforms/InstCombine/
Dfp-ret-bitcast.ll4 %struct.NSObject = type { %struct.objc_class* }
5 %struct.NSArray = type { %struct.NSObject }
15 %color.466 = alloca %struct.NSObject*
18 store %struct.NSObject* %tmp103104, %struct.NSObject** %color.466, align 4
20 %tmp106 = load %struct.NSObject*, %struct.NSObject** %color.466, align 4
21 …itcast (void (%struct.NSObject*, ...)* @objc_msgSend_fpret to float (%struct.NSObject*, %struct.ob…
28 declare void @objc_msgSend_fpret(%struct.NSObject*, ...)
/external/clang/test/SemaObjCXX/
Dprotocol-lookup.mm2 @protocol NSObject protocol
7 @interface NSObject interface
12 @protocol Foo <NSObject>
18 @interface Baz : NSObject {
53 [id<NSObject>(a) retain];
54 id<NSObject> x(id<NSObject>(0));
55 …id<NSObject> x2(id<NSObject>(y)); // expected-warning{{disambiguated as a function declaration}} e…
Dconversion-to-objc-pointer-2.mm5 @protocol NSObject @end protocol
6 @interface NSObject interface
34 @protocol TFooProtocol <NSObject>
43 @interface TFoo : NSObject
62 @interface TBar : NSObject
82 NSObject* object1 = [[[NSObject alloc] init] autorelease];
83 TNSAutoRef<NSObject*> object2([[NSObject alloc] init]);
Darc-objc-lifetime.mm45 @interface NSObject @end interface
50 …(void) MMM : (NSObject*) arg0 : (NSObject<P>*&)arg : (id) arg1 : (id<P>&) arg2 {} // expected-warn… argument
52 - (void) MM : (NSObject*) arg0 : (__strong NSObject**)arg : (id) arg1 : (__strong id*) arg2 {} argument
53 - (void) M : (NSObject**)arg0 : (id*)arg {} // expected-warning {{method parameter of type 'NSObjec… argument
55 - (void) N : (__strong NSObject***) arg0 : (__strong NSObject<P>***)arg : (float**) arg1 : (double)… argument
/external/clang/test/Index/
Dprint-usrs.c3 ObjCClass NSObject
4 ObjCCategory NSObject foo
5 ObjCIvar x c:objc(cs)NSObject
6 ObjCMethod foo: 0 c:objc(cs)NSObject
7 ObjCMethod baz:with 1 c:objc(cs)NSObject
8 ObjCProperty gimme c:objc(cs)NSObject
/external/valgrind/
Ddarwin9-drd.supp260 # Suppressions for NSObject methods. For more information about the NSObject
264 drd-darwin-NSObject-release
267 fun:-[NSObject release]
270 drd-darwin-NSObject-autorelease-1
273 fun:-[NSObject(NSObject) autorelease]
276 drd-darwin-NSObject-autorelease-2
281 drd-darwin-NSObject-NSDeallocateObject
287 drd-darwin-NSObject-retain
290 fun:-[NSObject retain]
293 drd-darwin-NSObject-retainCount
[all …]

12345678910>>...24