Searched refs:obj2 (Results 1 - 25 of 81) sorted by relevance

1234

/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_vm1_neq.rb3 obj2 = Object.new
7 obj1 != obj2
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Object/
H A Dregress-96284-001.js28 * Method: define obj2 = eval(obj1.toSource()) and verify that
29 * obj2.toSource() == obj1.toSource().
42 var obj2 = {}; variable
49 obj2 = eval(obj1.toSource());
50 actual = obj2.toSource();
56 obj2 = eval(obj1.toSource());
57 actual = obj2.toSource();
63 obj2 = eval(obj1.toSource());
64 actual = obj2.toSource();
70 obj2
[all...]
H A Dregress-96284-002.js28 * Method: define obj2 = eval(uneval(obj1)) and verify that
29 * obj2.toSource() == obj1.toSource().
42 var obj2 = {}; variable
49 obj2 = eval(uneval(obj1));
50 actual = obj2.toSource();
56 obj2 = eval(uneval(obj1));
57 actual = obj2.toSource();
63 obj2 = eval(uneval(obj1));
64 actual = obj2.toSource();
70 obj2
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Regress/
H A Dregress-44009.js45 var obj2 = {};
51 testThis(obj2);
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_3/RegExp/
H A D15.10.4.1-1.js42 * We check that a new RegExp object obj2 defined from these parameters
47 * parameter for obj2 will be undefined in the sense of not being provided.
56 var obj1 = {}; var obj2 = {}; variable
87 obj2 = new RegExp(obj1);
89 for (prop in obj2)
92 actual = obj2[prop];
H A D15.10.4.1-2.js42 * We check that a new RegExp object obj2 defined from these parameters
49 * obj2 = new RegExp(obj1, undefined);
53 * obj2 = new RegExp(obj1);
62 var obj1 = {}; var obj2 = {}; variable
93 obj2 = new RegExp(obj1, undefined); // see introduction to bug
95 for (prop in obj2)
98 actual = obj2[prop];
H A D15.10.4.1-3.js42 * We check that a new RegExp object obj2 defined from these parameters
47 * parameter for obj2 will be undefined in the sense of not being provided.
57 var obj1 = {}; var obj2 = {}; variable
99 obj2 = new RegExp(obj1);
101 for (prop in obj2)
104 actual = obj2[prop];
H A D15.10.4.1-4.js42 * We check that a new RegExp object obj2 defined from these parameters
49 * obj2 = new RegExp(obj1, undefined);
53 * obj2 = new RegExp(obj1);
63 var obj1 = {}; var obj2 = {}; variable
105 obj2 = new RegExp(obj1, undefined); // see introduction to bug
107 for (prop in obj2)
110 actual = obj2[prop];
H A D15.10.4.1-5-n.js53 var obj1 = {}; var obj2 = {}; variable
93 obj2 = new RegExp(obj1, f); // this should cause an exception
/macosx-10.9.5/CPANInternal-140/Class-Std/demo/
H A Ddemo_perlify.pl31 my $obj2 = Other->new();
32 print $obj2->_DUMP();
/macosx-10.9.5/CPANInternal-140/Class-Std-0.011/demo/
H A Ddemo_perlify.pl31 my $obj2 = Other->new();
32 print $obj2->_DUMP();
/macosx-10.9.5/CPANInternal-140/Test-Simple/t/
H A Dis_deeply_dne_bug.t43 my $obj2 = Foo->new();
45 eval { is_deeply([$obj1, $obj2], [$obj1, $obj2]); };
/macosx-10.9.5/ruby-104/ruby/test/win32ole/
H A Dtest_word.rb58 obj2 = WIN32OLE.connect("Word.Application")
59 assert_instance_of(WIN32OLE, obj2)
60 obj2.visible = true
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/diagrams/
H A Ddraw_circle.tcl78 # obj2 Point, line, ...
82 proc distance {obj1 obj2} {
86 if { [lindex $obj2 0] == "POINT" } {
87 set px2 [lindex $obj2 1]
88 set py2 [lindex $obj2 2]
196 # obj2 line, circle, ...
200 proc intersect {obj1 obj2} {
208 if { [lindex $obj2 0] == "LINE" } {
210 # Get the parametrisation of the line obj2
212 set v2 [vectorfromline $obj2]
[all...]
/macosx-10.9.5/CPANInternal-140/XML-LibXML/
H A Dxpath.c12 xmlXPathObjectPtr obj = NULL, obj2 = NULL; local
31 obj2 = valuePop(ctxt);
52 valuePush(ctxt, xmlXPathObjectCopy(obj2));
66 if (obj2 != NULL)
67 xmlXPathFreeObject(obj2);
80 if (obj2 != NULL)
81 xmlXPathFreeObject(obj2);
92 if ((obj2 != NULL) && (obj2->nodesetval != NULL) &&
93 (obj2
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/GetSet/
H A Dgetset-003.js39 var obj2 = {}; variable
139 obj2 = new TestObject();
140 status = 'obj2 = new TestObject() after 1 set, 0 gets';
141 actual = [obj2.nameSETS,obj2.nameGETS];
145 // Use both obj and obj2 -
146 obj2.name = obj.name + obj2.name;
147 status = 'obj2 = new TestObject() after 2 sets, 1 get';
148 actual = [obj2
[all...]
H A Dgetset-004.js39 var obj2 = {}; variable
139 obj2 = new TestObject();
140 status = 'obj2 = new TestObject() after 1 set, 0 gets';
141 actual = [obj2.nameSETS,obj2.nameGETS];
145 // Use both obj and obj2 -
146 obj2.name = obj.name + obj2.name;
147 status = 'obj2 = new TestObject() after 2 sets, 1 get';
148 actual = [obj2
[all...]
H A Dgetset-005.js43 var obj2 = {}; variable
148 obj2 = new TestObject();
149 status = 'obj2 = new TestObject() after 1 set, 0 gets';
150 actual = [obj2.nameSETS,obj2.nameGETS];
154 // Use both obj and obj2 -
155 obj2.name = obj.name + obj2.name;
156 status = 'obj2 = new TestObject() after 2 sets, 1 get';
157 actual = [obj2
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nscalendardate.py8 obj2 = NSCalendarDate.dateWithYear_month_day_hour_minute_second_timeZone_(
19 years, months, days, hours, minutes, seconds = obj.years_months_days_hours_minutes_seconds_sinceDate_(None, None, None, None, None, None, obj2)
H A Dtest_nszone.py16 obj2 = NSObject.allocWithZone_(zone).init()
17 zone2 = obj2.zone()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nscalendardate.py8 obj2 = NSCalendarDate.dateWithYear_month_day_hour_minute_second_timeZone_(
19 years, months, days, hours, minutes, seconds = obj.years_months_days_hours_minutes_seconds_sinceDate_(None, None, None, None, None, None, obj2)
H A Dtest_nszone.py16 obj2 = NSObject.allocWithZone_(zone).init()
17 zone2 = obj2.zone()
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A Dfunctions.c227 xmlXPathObjectPtr obj, obj2 = NULL; local
253 obj2 = valuePop(ctxt);
269 valuePush(ctxt, xmlXPathObjectCopy(obj2));
285 if (obj2 != NULL)
286 xmlXPathFreeObject(obj2);
298 if (obj2 != NULL)
299 xmlXPathFreeObject(obj2);
308 if ((obj2 != NULL) && (obj2->nodesetval != NULL) &&
309 (obj2
360 xmlXPathObjectPtr obj1, obj2; local
[all...]
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DSCSIInitiator.m65 deviceComparator ( id obj1, id obj2, void * context );
416 deviceComparator ( id obj1, id obj2, void * context )
423 if ( [ [ obj1 deviceIdentifier ] intValue ] < [ [ obj2 deviceIdentifier ] intValue ] )
428 else if ( [ [ obj1 deviceIdentifier ] intValue ] > [ [ obj2 deviceIdentifier ] intValue ] )
/macosx-10.9.5/IONetworkingFamily-100/
H A DIONetworkStack.h57 const OSMetaClassBase * obj2,

Completed in 142 milliseconds

1234