| /llvm-project-15.0.7/compiler-rt/test/tsan/Darwin/ |
| H A D | external-lib.cpp | 8 struct MyObject; 9 typedef MyObject *MyObjectRef; 12 MyObject *ObjectCreate(); 13 long ObjectRead(MyObject *); 14 void ObjectWrite(MyObject *, long); 15 void ObjectWriteAnother(MyObject *, long); 18 struct MyObject { struct 41 MyObject *ObjectCreate() { in ObjectCreate() 42 MyObject *ref = (MyObject *)malloc(sizeof(MyObject)); in ObjectCreate() 49 long ObjectRead(MyObject *ref) { in ObjectRead() [all …]
|
| H A D | external-noninstrumented-module.cpp | 9 struct MyObject; 10 typedef MyObject *MyObjectRef; 13 MyObject *ObjectCreate(); 14 long ObjectRead(MyObject *); 15 void ObjectWrite(MyObject *, long); 16 void ObjectWriteAnother(MyObject *, long);
|
| H A D | external.cpp | 29 struct MyObject; 30 typedef MyObject *MyObjectRef; 33 MyObject *ObjectCreate(); 34 long ObjectRead(MyObject *); 35 void ObjectWrite(MyObject *, long); 36 void ObjectWriteAnother(MyObject *, long);
|
| /llvm-project-15.0.7/clang/docs/analyzer/checkers/ |
| H A D | dealloc_example.m | 3 @interface MyObject : NSObject { interface 8 @implementation MyObject // warn: lacks 'dealloc' implementation 11 @interface MyObject : NSObject {} interface 15 @implementation MyObject // warn: does not send 'dealloc' to super implementation 21 @interface MyObject : NSObject { interface 27 @implementation MyObject implementation 35 @interface MyObject : NSObject { interface 41 @implementation MyObject implementation
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | class-property-inheritance.m | 3 @class MyObject; 7 @property(nullable, readonly, strong, class) MyObject *foo; 11 @property(nonnull, readonly, copy, class) MyObject *foo; // expected-warning {{'copy' attribute on … 17 @property(nullable, readonly, strong) MyObject *foo; 21 @property(nonnull, readonly, copy, class) MyObject *foo; // no-warning 25 @property(nullable, readonly, copy) MyObject *foo; // expected-warning {{'copy' attribute on proper… 30 @property(nullable, readonly, strong, class) MyObject *foo; 34 @property(nonnull, readonly, copy) MyObject *foo; // no-warning 38 @property(nonnull, readonly, copy, class) MyObject *foo; // expected-warning {{'copy' attribute on …
|
| H A D | ContClassPropertyLookup.m | 4 @interface MyObject { interface 9 @interface MyObject(whatever) interface in whatever 13 @interface MyObject() interface in assign 17 @implementation MyObject implementation
|
| H A D | warn-strict-selector-match.m | 32 @protocol MyObject protocol 41 - (id)initWithData:(id<MyObject, MyCoding>)data; // expected-note {{using}} 48 + (NTGridDataObject*)dataObject:(id<MyObject, MyCoding>)data; 52 - (id)initWithData:(id<MyObject, MyCoding>)data { // expected-note {{also found}} 55 + (NTGridDataObject*)dataObject:(id<MyObject, MyCoding>)data
|
| H A D | property-category-2.m | 10 @interface MyObject { float anotherFloat; } interface 13 @interface MyObject (CAT) <MyProtocol> interface in CAT 16 @implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method}} \ implementation in CAT
|
| H A D | warn-direct-ivar-access.m | 4 __attribute__((objc_root_class)) @interface MyObject { interface 15 @implementation MyObject implementation 33 MyObject * foo (void) 35 MyObject* p=0;
|
| H A D | selector-4.m | 17 @interface MyObject : NSObject interface 25 @implementation MyObject implementation
|
| H A D | property-category-4.m | 114 @interface MyObject interface 118 @interface MyObject (CAT) <MyProtocol> interface in CAT 121 @implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method 'anoth… implementation in CAT
|
| H A D | infer-availability-from-init.m | 9 @interface MyObject : NSObject interface 14 [MyObject new]; // expected-error{{'new' is unavailable}}
|
| /llvm-project-15.0.7/lldb/test/API/lang/objcxx/class-name-clash/ |
| H A D | main.mm | 4 class MyObject { int i = 42; }; 5 NS::MyObject globalObject; 8 @interface MyObject: NSObject interface 15 MyObject *o = [MyObject alloc]; 16 return 0; //% self.expect("fr var o", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["(MyObject"]);
|
| H A D | myobject.mm | 3 @interface MyObject : NSObject interface 6 @implementation MyObject implementation
|
| /llvm-project-15.0.7/clang/test/Rewriter/ |
| H A D | line-generation-test.m | 8 __attribute__((objc_root_class)) @interface MyObject { interface 17 @implementation MyObject implementation 28 MyObject * foo () 30 MyObject* p;
|
| /llvm-project-15.0.7/lldb/test/API/lang/objcxx/hide-runtime-values/ |
| H A D | main.mm | 11 @interface MyObject : NSObject {} interface 15 @implementation MyObject implementation 24 id obj = [MyObject new];
|
| /llvm-project-15.0.7/clang/test/CodeGenObjCXX/ |
| H A D | destroy.mm | 4 @class MyObject; 9 MyObject *myobject; 29 MyObject *myobject;
|
| /llvm-project-15.0.7/clang/test/OpenMP/ |
| H A D | target_data_map_pointer_array_subscript_codegen.cpp | 31 } MyObject; typedef 33 MyObject *objects;
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | sanitize-thread-no-checking-at-run-time.m | 16 @interface MyObject : NSObject { interface 23 @implementation MyObject implementation
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | ns_consume_null_check.m | 7 @interface MyObject : NSObject interface 13 MyObject *x; 88 id obj = [MyObject m0:a]; 99 id obj = [MyObject m0:a];
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | nonnull.m | 3 @interface MyObject interface 9 void testNonNullMethod(int *p, MyObject *obj) { 16 @interface Subclass : MyObject
|
| /llvm-project-15.0.7/clang/test/Modules/ |
| H A D | redeclarations.m | 4 @interface MyObject : NSObject interface
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/objc-optimized/ |
| H A D | main.m | 40 NSLog(@"MyObject %@", [my_object description]);
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/darwin/ |
| H A D | dispatch-once-nonstatic.mm | 43 @interface MyObject { interface
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | method-prototype-1.m | 2 @interface MyObject interface
|