HomeSort by relevance Sort by last modified time
    Searched refs:TestObject (Results 1 - 14 of 14) sorted by null

  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-001.js 25 function TestObject ()
30 TestObject.prototype._y = "<initial y>";
32 TestObject.prototype.y getter =
45 TestObject.prototype.y setter =
51 test(new TestObject());
getset-003.js 106 function TestObject()
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() after 2 sets, 1 get'
    [all...]
getset-004.js 106 function TestObject()
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() after 2 sets, 1 get'
    [all...]
getset-005.js 115 function TestObject()
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() after 2 sets, 1 get'
    [all...]
getset-006.js 111 function TestObject()
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();
  /external/bluetooth/glib/tests/gobject/
accumulator.c 43 * TestObject, a parent class for TestObject
46 typedef struct _TestObject TestObject;
57 gchar* (*test_signal1) (TestObject *tobject,
59 gboolean (*test_signal2) (TestObject *tobject,
88 test_object_signal1_callback_before (TestObject *tobject,
96 test_object_real_signal1 (TestObject *tobject,
103 test_object_signal1_callback_after (TestObject *tobject,
111 test_object_signal2_callback_before (TestObject *tobject,
127 test_object_real_signal2 (TestObject *tobject
    [all...]
references.c 45 * TestObject, a parent class for TestObject
48 typedef struct _TestObject TestObject;
60 G_DEFINE_TYPE (TestObject, test_object, G_TYPE_OBJECT);
79 test_object_init (TestObject *test_object)
ifaceinit.c 114 * BaseObject, a parent class for TestObject
130 * TestObject, a parent class for TestObject
133 typedef struct _TestObject TestObject;
342 /* The second time this is called is for TestObject */
369 static DEFINE_TYPE(TestObject, test_object,
377 TestObject *object;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.6.js 60 "(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() {
  /external/bluetooth/glib/gobject/
testgobject.c 23 #define G_LOG_DOMAIN "TestObject"
122 /* --- TestObject --- */
124 #define TEST_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), TEST_TYPE_OBJECT, TestObject))
130 typedef struct _TestObject TestObject;
141 gchar* (*test_signal) (TestObject *tobject,
151 static void test_object_init (TestObject *tobject);
156 static gchar* test_object_test_signal (TestObject *tobject,
174 sizeof (TestObject),
180 test_object_type = g_type_register_static (G_TYPE_OBJECT, "TestObject", &test_object_info, 0);
204 test_object_init (TestObject *tobject
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceTest.java 184 class TestObject {
187 public TestObject() {
203 Object testObj = new TestObject();
275 class TestObject {
293 TestObject testObj = new TestObject();
401 class TestObject {
404 public TestObject(String referent) {
429 TestObject testObj = new TestObject(new String("sup /b/"))
    [all...]
SoftReferenceTest.java 114 class TestObject {
116 public TestObject() {
129 Object testObj = new TestObject();
  /packages/apps/Browser/tests/src/com/android/browser/
JNIBindingsTest.java 269 public class TestObject {
277 public TestObject returnObject() { return new TestObject(); }
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 86 class TestObject extends Object {
99 TestObject to = new TestObject();

Completed in 449 milliseconds