/external/clang/test/Analysis/ |
objc-properties.m | 13 @interface MyClass; 16 MyClass *_Z; 20 @property (assign, nonatomic) MyClass* A; // explicitely synthesized, not implemented, non-default ivar name 22 @property (assign) MyClass* X; // automatically synthesized, not implemented 24 @property (assign, nonatomic) MyClass* Y; // automatically synthesized, implemented 26 @property (assign, nonatomic) MyClass* Z; // non-synthesized ivar, implemented setter 29 - (id) initWithPtr:(MyClass*) value; 30 - (id) myInitWithPtr:(MyClass*) value; 31 - (void) someMethod: (MyClass*)In; 37 - (id) initWithPtr: (MyClass*) value [all...] |
shallow-mode.m | 17 @interface MyClass : NSObject 22 @implementation MyClass 24 [MyClass callee];
|
ObjCProperties.m | 7 @interface MyClass { 15 @implementation MyClass
|
/external/clang/test/SemaObjC/ |
comptypes-2.m | 11 @interface MyClass 18 MyClass *obj_c = nil; 26 obj_c = (MyClass *)obj; 27 obj_c = (MyClass *)obj_p; 28 obj_c = (MyClass *)obj_C;
|
comptypes-5.m | 11 @interface MyClass 14 @interface MyClass (Addition) <MyProtocol> 18 @interface MyOtherClass : MyClass 24 MyClass *obj_c_cat_p = nil; 27 MyClass<MyProtocol> *obj_c_cat_p_q = nil;
|
getter-setter-defined-in-category-of-parent.m | 19 @interface MyClass : MyParent 21 @implementation MyClass 24 int foo(MyClass *o) {
|
property-category-impl.m | 8 @interface MyClass 15 @implementation MyClass 19 @interface MyClass (private) 23 @implementation MyClass (private) 27 @interface MyClass (public) 31 @implementation MyClass (public)
|
comptypes-1.m | 12 @interface MyClass 23 MyClass *obj_c = nil; 34 /* Assigning to a 'MyClass *' variable should always generate a 37 obj_c = obj_cp; // // expected-warning {{incompatible pointer types assigning to 'MyClass *' from 'MyOtherClass *'}} 38 obj_c = obj_C; // expected-warning {{incompatible pointer types assigning to 'MyClass *' from 'Class'}} 41 warning if done from a 'MyClass *' (which doesn't implement 45 obj_p = obj_c; // expected-warning {{assigning to 'id<MyProtocol>' from incompatible type 'MyClass *'}} 53 obj_cp = obj_c; // expected-warning {{incompatible pointer types assigning to 'MyOtherClass *' from 'MyClass *'}} 67 /* Any comparison between 'MyClass *' and anything which is not an 'id' 69 if (obj_p == obj_c) foo() ; // expected-warning {{comparison of distinct pointer types ('id<MyProtocol>' and 'MyClass *')}} [all...] |
ClassPropertyNotObject.m | 9 @property Class<P> MyClass; 15 @synthesize MyClass, MyClass1, VOIDSTAR;
|
/external/clang/test/Index/ |
comment-objc-decls.m | 52 * \brief MyClass - primary class. 54 @interface MyClass : NSObject<MyProto> 76 // CHECK: <Declaration>@interface MyClass : NSObject <MyProto> {\n id IvarMyClass;\n}\n@end</Declaration> 83 * \brief - This is class extension of MyClass 85 @interface MyClass() 93 // CHECK: <Declaration>@interface MyClass () {\n id IvarMyClassExtension;\n}\n@end</Declaration> 98 * \brief MyClass (Category) is private to MyClass. 100 @interface MyClass (Category) 102 * \brief This is private to MyClass [all...] |
/external/clang/test/Analysis/objc/ |
direct-ivar-assignment-in-annotated-functions.m | 13 @interface MyClass; 18 - (void) someMethod: (MyClass*)In __attribute__((annotate("objc_no_direct_instance_variable_assignment"))); 19 - (void) someMethodNotAnnaotated: (MyClass*)In; 24 MyClass *_Z; 26 MyClass* _NotA __attribute__((annotate("objc_allow_direct_instance_variable_assignment"))); 29 @property (assign, nonatomic) MyClass* A; // explicitely synthesized, not implemented, non-default ivar name 31 @property (assign) MyClass* X; // automatically synthesized, not implemented 33 @property (assign, nonatomic) MyClass* Y; // automatically synthesized, implemented 35 @property (assign, nonatomic) MyClass* Z; // non-synthesized ivar, implemented setter 38 @property (assign) MyClass* NotA; // warnings should be suppressed, backing ivar is annotate [all...] |
/external/clang/test/Parser/ |
objc-property-syntax.m | 3 @interface MyClass { 8 @property(nonatomic, retain, setter=ab_setDefaultToolbarItems) MyClass *ab_defaultToolbarItems; // expected-error {{method name referenced in property setter attribute must end with ':'}} 13 @implementation MyClass
|
/external/clang/test/SemaObjCXX/ |
delay-parsing-cfunctions.mm | 10 @interface MyClass 14 @implementation MyClass 19 int bar(MyClass * myObject) { 25 int gorfbar(MyClass * myObject) {
|
/external/clang/test/CodeGenObjC/ |
arc-compound-stmt.m | 11 @interface MyClass 15 @implementation MyClass
|
weak-metaclass-visibility.m | 10 @interface MyClass : NSObject 15 @implementation MyClass 20 [MyClass someClassMethod]; 27 MyClass *wrapper = [MyClass alloc];
|
objc2-ivar-assign.m | 14 @interface MyClass { 27 @implementation MyClass 36 MyClass *myObj;
|
debug-info-id-with-protocol.m | 18 @interface MyClass : NSObject { 26 @implementation MyClass 33 MyClass *my_class = [MyClass alloc];
|
/external/llvm/test/CodeGen/Thumb2/ |
2013-02-19-tail-call-register-hint.ll | 11 %"myclass" = type { %struct.foo } 16 %2 = bitcast i8* %1 to %"myclass"* 17 tail call void @abc(%"myclass"* %2) nounwind 18 tail call void @def(%"myclass"* %2) nounwind 32 %13 = tail call %"myclass"* @jkl(%"myclass"* %2) nounwind 43 declare void @def(%"myclass"*) 45 declare void @abc(%"myclass"*) 49 declare %"myclass"* @jkl(%"myclass"*) nounwin [all...] |
/external/chromium_org/base/threading/ |
thread_local.h | 35 // MyClass::MyClass() { 36 // DCHECK(Singleton<ThreadLocalPointer<MyClass> >::get()->Get() == NULL); 37 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(this); 40 // MyClass::~MyClass() { 41 // DCHECK(Singleton<ThreadLocalPointer<MyClass> >::get()->Get() != NULL); 42 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(NULL); 45 // // Return the current MyClass associated with the calling thread, can be 46 // // NULL if there isn't a MyClass associated [all...] |
/external/chromium_org/base/ |
gtest_prod_util.h | 16 // class MyClass { 29 // class MyClass { 37 // foo::MyClass foo_class; 49 // class MyClass { 57 // foo::MyClass foo_class;
|
/external/clang/test/Analysis/inlining/ |
ObjCImproperDynamictallyDetectableCast.m | 23 @interface MyClass : NSObject 27 @implementation MyClass 31 // is MyClass, but we should also warn about it.
|
test_objc_inlining_option.m | 23 @interface MyClass : MyParent 26 @implementation MyClass 28 int y = [MyClass getInt];
|
/external/chromium_org/base/memory/ |
aligned_memory.h | 11 // static AlignedMemory<sizeof(MyClass), ALIGNOF(MyClass)> my_class; 14 // new(my_class.void_data()) MyClass(); 17 // MyClass* mc = my_class.data_as<MyClass>(); 20 // my_class.data_as<MyClass>()->MyClass::~MyClass();
|
/external/chromium_org/tools/gyp/test/mac/xctest/ |
test.gyp | 11 'MyClass.h', 12 'MyClass.m',
|
MyClass.h | 7 @interface MyClass : NSObject
|