Searched refs:obj2 (Results 26 - 50 of 74) sorted by relevance

123

/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSSet.cpp272 const OSMetaClassBase *obj2; local
285 obj2 = members->getObject(i);
286 if ( !obj1 || !obj2 )
289 if ( !obj1->isEqualTo(obj2) )
H A DOSDictionary.cpp502 const OSMetaClassBase * obj2; local
520 obj2 = srcDict->getObject(aKey);
521 if ( !obj1 || !obj2 ) {
526 if ( !obj1->isEqualTo(obj2) ) {
H A DOSOrderedSet.cpp214 #define ORDER(obj1,obj2) \
215 (ordering ? ((*ordering)( (const OSObject *) obj1, (const OSObject *) obj2, orderingRef)) : 0)
/macosx-10.10/ruby-106/ruby/
H A Dobject.c56 rb_equal(VALUE obj1, VALUE obj2) argument
60 if (obj1 == obj2) return Qtrue;
61 result = rb_funcall(obj1, id_eq, 1, obj2);
67 rb_eql(VALUE obj1, VALUE obj2) argument
69 return RTEST(rb_funcall(obj1, id_eql, 1, obj2));
109 rb_obj_equal(VALUE obj1, VALUE obj2) argument
111 if (obj1 == obj2) return Qtrue;
164 rb_obj_not_equal(VALUE obj1, VALUE obj2) argument
166 VALUE result = rb_funcall(obj1, id_eq, 1, obj2);
960 rb_obj_infect(VALUE obj1, VALUE obj2) argument
1159 true_and(VALUE obj, VALUE obj2) argument
1181 true_or(VALUE obj, VALUE obj2) argument
1197 true_xor(VALUE obj, VALUE obj2) argument
1237 false_and(VALUE obj, VALUE obj2) argument
1253 false_or(VALUE obj, VALUE obj2) argument
1272 false_xor(VALUE obj, VALUE obj2) argument
1316 rb_obj_match(VALUE obj1, VALUE obj2) argument
1330 rb_obj_not_match(VALUE obj1, VALUE obj2) argument
1356 rb_obj_cmp(VALUE obj1, VALUE obj2) argument
[all...]
H A Dinsns.def1610 extern VALUE rb_obj_not_equal(VALUE obj1, VALUE obj2);
2083 (VALUE obj2, VALUE obj1)
2086 if (RB_TYPE_P(obj2, T_STRING)) {
2087 val = rb_reg_match(obj1, obj2);
2090 val = rb_funcall(obj2, idEqTilde, 1, obj1);
/macosx-10.10/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DSCSITargetProberAppDelegate.m66 domainComparator ( id obj1, id obj2, void * context );
545 domainComparator ( id obj1, id obj2, void * context )
552 if ( [ obj1 domainID ] < [ obj2 domainID ] )
557 if ( [ obj1 domainID ] > [ obj2 domainID ] )
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl.h110 #define OSSL_Check_Same_Class(obj1, obj2) do {\
111 if (!rb_obj_is_instance_of((obj1), rb_obj_class(obj2))) {\
H A Dossl_bn.c369 VALUE obj1, obj2; local
386 WrapBN(CLASS_OF(self), obj2, r2); local
388 return rb_ary_new3(2, obj1, obj2);
/macosx-10.10/swig-12/Source/DOH/
H A Ddohint.h84 int (*doh_cmp) (DOH *obj1, DOH *obj2);
87 int (*doh_equal) (DOH *obj1, DOH *obj2);
H A Dbase.c190 int DohCmp(const DOH *obj1, const DOH *obj2) { argument
195 b2 = (DohBase *) obj2;
198 /* most of the times, obj2 is a plain c string */
206 return strcmp((char *) (c1 ? RawData(b1) : (void *) obj1), (char *) (c2 ? RawData(b2) : (void *) obj2));
219 int DohEqual(const DOH *obj1, const DOH *obj2) { argument
221 DohBase *b2 = (DohBase *) obj2;
235 char *cobj = (char *) obj2;
243 return strcmp((char *) obj1, (char *) obj2) == 0;
247 return obj1 == obj2;
H A Ddoh.h190 extern int DohCmp(const DOH *obj1, const DOH *obj2);
191 extern int DohEqual(const DOH *obj1, const DOH *obj2);
/macosx-10.10/ppp-786.1.1/Controller/
H A Dppp_utils.h49 Boolean my_CFEqual(CFTypeRef obj1, CFTypeRef obj2);
H A Dppp_utils.c344 Boolean my_CFEqual(CFTypeRef obj1, CFTypeRef obj2) argument
346 if (obj1 == NULL && obj2 == NULL)
348 else if (obj1 == NULL || obj2 == NULL)
351 return CFEqual(obj1, obj2);
H A Dscnc_utils.h56 Boolean my_CFEqual(CFTypeRef obj1, CFTypeRef obj2);
/macosx-10.10/xnu-2782.1.97/libkern/libkern/c++/
H A DOSOrderedSet.h107 * @param obj2 The object being ordered within the ordered set.
114 * <li>a negative value if obj2 should precede obj1,</li>
115 * <li>a positive value if obj1 should precede obj2,</li>
116 * <li>and 0 if obj1 and obj2 have an equivalent ordering.</li>
120 const OSMetaClassBase * obj2,
/macosx-10.10/llvmCore-3425.0.34/unittests/ADT/
H A DImmutableSetTest.cpp164 MyIter obj2; local
165 S2.foreach<MyIter>(obj2);
167 ASSERT_EQ(3, obj2.counter);
H A DHashingTest.cpp101 NonPOD obj1(1, 2), obj2(3, 4), obj3(5, 6);
102 EXPECT_EQ(hash_combine(obj1, hash_combine(obj2, obj3)),
103 hash_value(std::make_pair(obj1, std::make_pair(obj2, obj3))));
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/yaml/
H A Dhuddle.tcl190 proc ::huddle::equal {obj1 obj2} {
192 checkHuddle $obj2
193 return [_equal_subs [lindex $obj1 1] [lindex $obj2 1]]
195 proc ::huddle::_equal_subs {obj1 obj2} {
199 foreach {tag2 src2} $obj2 break
/macosx-10.10/IOSCSIParallelFamily-300.0.2/TestTools/AppleSCSIHBAEmulator/
H A DAppleSCSITargetEmulator.cpp108 const OSMetaClassBase * obj2,
935 const OSMetaClassBase * obj2,
940 AppleSCSILogicalUnitEmulator * lun2 = ( AppleSCSILogicalUnitEmulator * ) obj2;
950 // Returns a comparison result of the object, a negative value if obj1 > obj2,
951 // 0 if obj1 == obj2, and a positive value if obj1 < obj2
933 CompareLUNs( const OSMetaClassBase * obj1, const OSMetaClassBase * obj2, void * ref ) argument
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/GetSet/
H A Dgetset-006.js47 var obj2 = {}; variable
/macosx-10.10/objc4-646/runtime/
H A DObject.mm304 - (id)perform:(SEL)aSelector with:obj1 with:obj2
307 return ((id(*)(id, SEL, id, id))objc_msgSend)(self, aSelector, obj1, obj2);
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dlock006.tcl76 set obj2 OBJECT2
85 set lockp [$env lock_vec $locker "get $obj2 $m"]
/macosx-10.10/tcl-105/tcl_ext/tclae/tclae/library/
H A Daebuild.tcl478 set obj2 "obj{ \
488 stop:$obj2 \
/macosx-10.10/emacs-93/emacs/lisp/play/
H A Ddunnet.el502 (defun dun-put-objs (obj1 obj2)
503 (if (and (= obj2 obj-drop) (not dun-nomail))
504 (setq obj2 obj-chute))
506 (if (= obj2 obj-disposal) (setq obj2 obj-chute))
508 (if (and (= obj1 obj-cpu) (= obj2 obj-computer))
515 (if (and (= obj1 obj-weight) (= obj2 obj-button))
517 (if (= obj2 obj-jar) ;; Put something in jar
525 (if (= obj2 obj-chute) ;; Put something in chute
531 (if (= obj2 ob
[all...]
/macosx-10.10/IONetworkingFamily-101/
H A DIONetworkStack.cpp866 const OSMetaClassBase * obj2,
870 const IONetworkInterface * netif2 = (const IONetworkInterface *) obj2;
864 orderNetworkInterfaces( const OSMetaClassBase * obj1, const OSMetaClassBase * obj2, void * ref ) argument

Completed in 160 milliseconds

123