Searched refs:TestObject (Results 1 - 25 of 60) sorted by relevance

123

/macosx-10.9.5/libclosure-63/objectTests/
H A Dreference.cpp20 class TestObject class
23 TestObject(CONST TestObject& inObj);
24 TestObject();
25 ~TestObject();
27 TestObject& operator=(CONST TestObject& inObj);
36 TestObject::TestObject(CONST TestObject function in class:TestObject
45 TestObject::TestObject() function in class:TestObject
[all...]
H A Dcopyconstructor.cpp22 class TestObject class
25 TestObject(CONST TestObject& inObj);
26 TestObject();
27 ~TestObject();
29 TestObject& operator=(CONST TestObject& inObj);
36 TestObject::TestObject(CONST TestObject function in class:TestObject
45 TestObject::TestObject() function in class:TestObject
[all...]
H A Dthis.mm22 class TestObject
25 TestObject(CONST TestObject& inObj);
26 TestObject();
27 ~TestObject();
31 TestObject& operator=(CONST TestObject& inObj);
40 TestObject::TestObject(CONST TestObject
[all...]
H A Dmember.mm20 class TestObject
23 TestObject(CONST TestObject& inObj);
24 TestObject();
25 ~TestObject();
27 //TestObject& operator=(CONST TestObject& inObj);
36 TestObject::TestObject(CONST TestObject
[all...]
H A Drecovercpp.mm27 class TestObject
30 TestObject(CONST TestObject& inObj);
31 TestObject();
32 ~TestObject();
34 TestObject& operator=(CONST TestObject& inObj);
41 TestObject::TestObject(CONST TestObject
[all...]
H A Dnotcopied.m30 @interface TestObject : NSObject
32 @implementation TestObject
41 TestObject *to = [[TestObject alloc] init];
H A Dretainrelease.m19 @interface TestObject : NSObject {
25 @implementation TestObject
37 TestObject *to = [[TestObject alloc] init];
38 TestObject *to2 = [[TestObject alloc] init];
H A Dweakblockretain.m28 @interface TestObject : NSObject
31 @implementation TestObject
43 __block TestObject *__weak to __unused = [[TestObject alloc] init];
58 __block TestObject *__weak to = [[TestObject alloc] init];
H A Dweakblock.m33 @interface TestObject : NSObject {
37 @implementation TestObject
54 TestObject *to = [[TestObject alloc] init];
55 __block TestObject *__weak testObject __unused = to; // iniitialization does NOT require support function
H A Dweakblockassign.m45 @interface TestObject : NSObject {
49 @implementation TestObject
66 TestObject *to = [[TestObject alloc] init];
67 __block TestObject *__weak testObject = to; // initialization does NOT require support function
72 testObject = (TestObject *)[NSObject new]; // won't last long :-)
H A Dcopyproperty.m20 @interface TestObject : NSObject {
26 @implementation TestObject
44 TestObject *to = [[TestObject alloc] init];
H A DnestedBlock.m27 @interface TestObject : NSObject
29 @implementation TestObject
41 TestObject *to = [[TestObject alloc] init];
H A Dretainproperty.m21 @interface TestObject {
H A Dsimpleproperty.m19 @interface TestObject {
H A Dsimplerelease.m18 @interface TestObject : NSObject
20 @implementation TestObject
30 TestObject *to = [[TestObject alloc] init];
H A Dweakblockrecover.m29 @interface TestObject : NSObject
32 @implementation TestObject
53 __block TestObject *__weak to = [[TestObject alloc] init];
H A Dbyrefgc.m30 @interface TestObject : NSObject {
36 @implementation TestObject
56 __block TestObject * to = [[TestObject alloc] init];
57 return [^{ [to hi]; to = [[TestObject alloc] init]; } copy];
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/GetSet/
H A Dgetset-001.js25 function TestObject () function
30 TestObject.prototype._y = "<initial y>"; class
32 TestObject.prototype.y getter =
45 TestObject.prototype.y setter =
51 test(new TestObject());
/macosx-10.9.5/libauto-185.5/tests/
H A Dresurrect-global-global.m27 @interface TestObject : NSObject {
35 TestObject *target;
37 TestObject *global;
42 @implementation TestObject
71 global = [[TestObject alloc] init];
74 for (int i = 0; i < 101; ++i) [[TestObject alloc] init];
82 for (int i = 0; i < 101; ++i) [[[TestObject alloc] init] makeGlobal];
H A Dresurrect-global-weak.m27 @interface TestObject : NSObject {
35 TestObject *__weak target;
37 TestObject *global;
42 @implementation TestObject
71 global = [[TestObject alloc] init];
74 for (int i = 0; i < 101; ++i) [[TestObject alloc] init];
82 for (int i = 0; i < 101; ++i) [[[TestObject alloc] init] makeGlobal];
H A Dresurrect-local-global.m27 @interface TestObject : NSObject {
35 TestObject *target;
37 TestObject *global;
42 @implementation TestObject
71 global = [[TestObject alloc] init];
74 for (int i = 0; i < 101; ++i) [[TestObject alloc] init];
82 for (int i = 0; i < 101; ++i) [[[TestObject alloc] init] makeGlobal];
H A Dresurrect-local-weak.m27 @interface TestObject : NSObject {
35 TestObject *__weak target;
37 TestObject *global;
42 @implementation TestObject
71 global = [[TestObject alloc] init];
74 for (int i = 0; i < 101; ++i) [[TestObject alloc] init];
82 for (int i = 0; i < 101; ++i) [[[TestObject alloc] init] makeGlobal];
H A DrecoverLocalObjects.m29 @interface TestObject : NSObject {
30 TestObject *link;
32 @property(retain) TestObject *link;
34 @implementation TestObject
48 [[TestObject alloc] init];
H A Dresurrect-global-assoc.m34 @interface TestObject : NSObject {
42 TestObject *global;
47 @implementation TestObject
83 global = [[TestObject alloc] init];
86 for (int i = 0; i < 101; ++i) [[TestObject alloc] init];
94 for (int i = 0; i < 101; ++i) [[[TestObject alloc] init] makeGlobal];
H A Dresurrect-global-atomic.m27 @interface TestObject : NSObject {
35 TestObject *target;
42 @implementation TestObject
71 global = [[TestObject alloc] init];
74 for (int i = 0; i < 101; ++i) [[TestObject alloc] init];
82 for (int i = 0; i < 101; ++i) [[[TestObject alloc] init] makeGlobal];

Completed in 192 milliseconds

123