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

/external/clang/test/CodeGenCXX/
H A Dcopy-in-cplus-object.cpp8 struct TestObject struct
10 TestObject(const TestObject& inObj, int def = 100, const S &Silly = "silly");
11 TestObject();
12 ~TestObject();
13 TestObject& operator=(const TestObject& inObj);
19 TestObject one;
/external/compiler-rt/BlocksRuntime/tests/
H A Dcopyconstructor.C19 class TestObject class
22 TestObject(CONST TestObject& inObj);
23 TestObject();
24 ~TestObject();
26 TestObject& operator=(CONST TestObject& inObj);
33 TestObject::TestObject(CONST TestObject function in class:TestObject
42 TestObject::TestObject() function in class:TestObject
[all...]
H A Dreference.C22 class TestObject class
25 TestObject(CONST TestObject& inObj);
26 TestObject();
27 ~TestObject();
29 TestObject& operator=(CONST TestObject& inObj);
38 TestObject::TestObject(CONST TestObject function in class:TestObject
47 TestObject::TestObject() function in class:TestObject
[all...]
H A Djosh.C15 struct TestObject { struct
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
H A Dgetset-001.js25 function TestObject () function
30 TestObject.prototype._y = "<initial y>";
32 TestObject.prototype.y getter =
45 TestObject.prototype.y setter =
51 test(new TestObject());
28 TestObject.prototype._y = "<initial y>"; class
H A Dgetset-003.js106 function TestObject() function
109 TestObject.prototype.nameSETS = 0;
110 TestObject.prototype.nameGETS = 0;
111 TestObject.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
112 TestObject.prototype.name getter = function() {this.nameGETS++; return this._name;}
113 TestObject.prototype.name = cnDEFAULT;
115 obj = new TestObject();
139 obj2 = new TestObject();
140 status = 'obj2 = new TestObject() after 1 set, 0 gets';
147 status = 'obj2 = new TestObject() afte
108 TestObject.prototype.nameSETS = 0; class
[all...]
H A Dgetset-004.js106 function TestObject() function
109 TestObject.prototype.nameSETS = 0;
110 TestObject.prototype.nameGETS = 0;
111 TestObject.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
112 TestObject.prototype.__defineGetter__('name', function() {this.nameGETS++; return this._name;});
113 TestObject.prototype.name = cnDEFAULT;
115 obj = new TestObject();
139 obj2 = new TestObject();
140 status = 'obj2 = new TestObject() after 1 set, 0 gets';
147 status = 'obj2 = new TestObject() afte
108 TestObject.prototype.nameSETS = 0; class
[all...]
H A Dgetset-005.js115 function TestObject() function
118 TestObject.prototype.nameSETS = 0;
119 TestObject.prototype.nameGETS = 0;
120 TestObject.prototype.__defineSetter__(cnName, cnNameSetter);
121 TestObject.prototype.__defineGetter__(cnName, cnNameGetter);
122 TestObject.prototype.name = cnDEFAULT;
124 obj = new TestObject();
148 obj2 = new TestObject();
149 status = 'obj2 = new TestObject() after 1 set, 0 gets';
156 status = 'obj2 = new TestObject() afte
117 TestObject.prototype.nameSETS = 0; class
[all...]
H A Dgetset-006.js111 function TestObject() function
114 TestObject.prototype.nameSETS = 0;
115 TestObject.prototype.nameGETS = 0;
116 TestObject.prototype.__defineSetter__(cnName, cnNameSetter);
117 TestObject.prototype.__defineGetter__(cnName, cnNameGetter);
118 TestObject.prototype.name = cnDEFAULT;
120 obj = new TestObject();
113 TestObject.prototype.nameSETS = 0; class
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeObjectFromDestroyedPlugin.cpp39 class TestObject : public Object<TestObject> { }; class in class:NPRuntimeObjectFromDestroyedPlugin
54 NPObject* testObject = TestObject::create(pluginTest());
H A DNPDeallocateCalledBeforeNPShutdown.cpp41 class TestObject : public Object<TestObject> { class in class:NPDeallocateCalledBeforeNPShutdown
43 ~TestObject()
63 NPObject* testObject = TestObject::create(pluginTest());
H A DNPRuntimeRemoveProperty.cpp39 struct TestObject : Object<TestObject> { struct in class:NPRuntimeRemoveProperty
82 *(NPObject**)value = TestObject::create(this);
/external/guava/guava-tests/test/com/google/common/testing/
H A DEquivalenceTesterTest.java59 Object group1Item1 = new TestObject(1, 1);
60 Object group1Item2 = new TestObject(1, 2);
61 Object group2Item1 = new TestObject(2, 1);
62 Object group2Item2 = new TestObject(2, 2);
90 Object group1Item1 = new TestObject(1, 1);
91 Object group1Item2 = new TestObject(1, 2);
104 assertEquals("TestObject{group=1, item=2} [group 1, item 2] must be equivalent to "
105 + "TestObject{group=1, item=1} [group 1, item 1]", expected.getMessage());
112 Object group1Item1 = new TestObject(1, 1);
113 Object group1Item2 = new TestObject(
188 private static final class TestObject { class in class:EquivalenceTesterTest
192 TestObject(int group , int item) { method in class:EquivalenceTesterTest.TestObject
[all...]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DTestObject.cpp26 #include "TestObject.h"
72 } TestObject; typedef in typeref:struct:__anon16208
112 TestObject* newInstance = static_cast<TestObject*>(malloc(sizeof(TestObject)));
126 TestObject* testObject = reinterpret_cast<TestObject*>(obj);
177 TestObject* testObject = reinterpret_cast<TestObject*>(npobj);
/external/chromium/base/
H A Did_map_unittest.cc14 class TestObject { class in namespace:__anon1660
26 IDMap<TestObject> map;
30 TestObject obj1;
31 TestObject obj2;
60 IDMap<TestObject> map;
62 TestObject obj1;
63 TestObject obj2;
64 TestObject obj3;
71 IDMap<TestObject>::const_iterator iter(&map);
88 IDMap<TestObject> ma
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
H A D10.1.6.js60 "(new TestObject(0,1,2,3,4,5)).length",
62 (new TestObject(0,1,2,3,4,5)).length );
67 "(new TestObject(0,1,2,3,4,5))["+i+"]",
69 (new TestObject(0,1,2,3,4,5))[i]);
95 function TestObject() { class
/external/chromium/chrome/common/
H A Djson_schema_validator_unittest_base.h47 void TestObject();
H A Djson_schema_validator_unittest_base.cc74 TestObject();
183 void JSONSchemaValidatorTestBase::TestObject() { function in class:JSONSchemaValidatorTestBase
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
H A DReferenceTest.java84 class TestObject {
87 public TestObject() {
102 Object testObj = new TestObject();

Completed in 514 milliseconds