Searched refs:obj (Results 26 - 50 of 2249) sorted by relevance

1234567891011>>

/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsmachport.py8 obj = Foundation.NSMachPort.alloc()
9 self.assert_(obj is not None)
11 obj = obj.init()
12 self.assert_(obj is not None)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsmachport.py8 obj = Foundation.NSMachPort.alloc()
9 self.assertIsNot(obj, None)
11 obj = obj.init()
12 self.assertIsNot(obj, None)
/macosx-10.10.1/ruby-106/ruby/ext/win32ole/lib/win32ole/
H A Dproperty.rb4 def initialize(obj, dispid, gettypes, settypes)
5 @obj = obj
11 @obj._getproperty(@dispid, args, @gettypes)
14 @obj._setproperty(@dispid, args, @settypes)
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/addtiffo/
H A DMakefile.vc12 addtiffo: addtiffo.obj tif_overview.obj tif_ovrcache.obj
13 $(CC) $(CFLAGS) addtiffo.obj tif_overview.obj tif_ovrcache.obj \
17 addtiffo.obj: addtiffo.c
20 tif_overview.obj: tif_overview.c
23 tif_ovrcache.obj: tif_ovrcache.c
27 -del *.obj
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/Function/
H A Dscope-001.js58 var obj = {a:2};
59 with (obj)
69 * f's associated scope chain now includes 'obj' before the global object.
73 var obj = {a:2};
74 with (obj)
93 var obj = {a:2};
94 with (obj)
112 var obj = {a:2, obj:{a:3}}; property in class:obj
113 with (obj)
[all...]
H A Dscope-002.js59 var obj = {a:2};
60 with (obj)
70 * f's associated scope chain now includes 'obj' before the global object.
74 var obj = {a:2};
75 with (obj)
90 var obj = {a:2};
91 with (obj)
105 var obj = {a:2, obj:{a:3}}; property in class:obj
106 with (obj)
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/GetSet/
H A Dgetset-003.js22 * SUMMARY: Testing obj.prop getter/setter
28 var summary = 'Testing obj.prop getter/setter';
38 var obj = {}; variable
44 obj = new Object(); class
45 obj.nameSETS = 0;
46 obj.nameGETS = 0;
47 obj.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
48 obj.name getter = function() {this.nameGETS++; return this._name;}
51 actual = [obj.nameSETS,obj
[all...]
H A Dgetset-004.js22 * SUMMARY: Testing obj.__defineSetter__(), obj.__defineGetter__()
28 var summary = 'Testing obj.__defineSetter__(), obj.__defineGetter__()';
38 var obj = {}; variable
44 obj = new Object(); class
45 obj.nameSETS = 0;
46 obj.nameGETS = 0;
47 obj.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
48 obj
[all...]
H A Dgetset-005.js22 * SUMMARY: Testing obj.__defineSetter__(), obj.__defineGetter__()
31 var summary = 'Testing obj.__defineSetter__(), obj.__defineGetter__()';
42 var obj = {}; variable
53 obj = new Object(); class
54 obj.nameSETS = 0;
55 obj.nameGETS = 0;
56 obj.__defineSetter__(cnName, cnNameSetter);
57 obj
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-XS-3.01/t/
H A D06_pc_pretty.t11 my ($js,$obj,$json);
14 $obj = {foo => "bar"};
15 $js = $pc->encode($obj);
18 $obj = [10, "hoge", {foo => "bar"}];
20 $js = $pc->encode($obj);
30 $obj = { foo => [ {a=>"b"}, 0, 1, 2 ] };
32 $js = $pc->encode($obj);
36 $obj = { foo => [ {a=>"b"}, 0, 1, 2 ] };
38 $js = $pc->encode($obj);
51 $obj
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-PP-2.27203/t/
H A D007_pc_esc.t25 my ($js,$obj,$str);
29 $obj = {test => qq|abc"def|};
30 $str = $pc->encode($obj);
33 $obj = {qq|te"st| => qq|abc"def|};
34 $str = $pc->encode($obj);
37 $obj = {test => qq|abc/def|}; # / => \/
38 $str = $pc->encode($obj); # but since version 0.99
40 $obj = $pc->decode($str);
41 is($obj->{test},q|abc/def|);
43 $obj
[all...]
/macosx-10.10.1/zlib-55/zlib/watcom/
H A Dwatcom_f.mak12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
14 infback.obj inffast.obj inflat
[all...]
/macosx-10.10.1/syslog-267/libsystem_asl.tproj/src/
H A Dasl_object.c52 asl_object_set_key_val_op(asl_object_private_t *obj, const char *key, const char *val, uint16_t op) argument
54 if (obj == NULL) return -1;
55 if (obj->asl_type >= ASL_TYPE_COUNT) return -1;
58 if (asl_jump[obj->asl_type]->set_key_val_op == NULL) return -1;
59 return asl_jump[obj->asl_type]->set_key_val_op(obj, key, val, op);
63 asl_object_unset_key(asl_object_private_t *obj, const char *key) argument
65 if (obj == NULL) return;
66 if (obj->asl_type >= ASL_TYPE_COUNT) return;
69 if (asl_jump[obj
74 asl_object_get_val_op_for_key(asl_object_private_t *obj, const char *key, const char **val, uint16_t *op) argument
85 asl_object_get_key_val_op_at_index(asl_object_private_t *obj, size_t n, const char **key, const char **val, uint16_t *op) argument
96 asl_object_count(asl_object_private_t *obj) argument
107 asl_object_next(asl_object_private_t *obj) argument
118 asl_object_prev(asl_object_private_t *obj) argument
129 asl_object_get_object_at_index(asl_object_private_t *obj, size_t n) argument
140 asl_object_set_iteration_index(asl_object_private_t *obj, size_t n) argument
151 asl_object_remove_object_at_index(asl_object_private_t *obj, size_t n) argument
162 asl_object_append(asl_object_private_t *obj, asl_object_private_t *newobj) argument
175 asl_object_prepend(asl_object_private_t *obj, asl_object_private_t *newobj) argument
186 asl_object_search(asl_object_private_t *obj, asl_object_private_t *query) argument
198 asl_object_match(asl_object_private_t *obj, asl_object_private_t *qlist, size_t *last, size_t start, size_t count, uint32_t duration, int32_t dir) argument
210 asl_retain(asl_object_t obj) argument
220 asl_release(asl_object_t obj) argument
246 asl_get_type(asl_object_t obj) argument
255 asl_get_value_for_key(asl_object_t obj, const char *key) argument
265 asl_set(asl_object_t obj, const char *key, const char *val) argument
277 asl_unset_key(asl_object_t obj, const char *key) argument
284 asl_set_key_val_op(asl_object_t obj, const char *key, const char *val, uint16_t op) argument
290 asl_count(asl_object_t obj) argument
302 asl_next(asl_object_t obj) argument
308 asl_prev(asl_object_t obj) argument
334 asl_key(asl_object_t obj, uint32_t n) argument
344 asl_get(asl_object_t obj, const char *key) argument
353 asl_fetch_key_val_op(asl_object_t obj, uint32_t n, const char **key, const char **val, uint32_t *op) argument
364 asl_set_query(asl_object_t obj, const char *key, const char *val, uint32_t op) argument
371 asl_unset(asl_object_t obj, const char *key) argument
378 asl_reset_iteration(asl_object_t obj, size_t position) argument
396 asl_free(asl_object_t obj) argument
402 aslresponse_free(asl_object_t obj) argument
408 aslresponse_next(asl_object_t obj) argument
420 asl_format(asl_object_t obj, const char *msg_fmt, const char *time_fmt, uint32_t text_encoding) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Scope/
H A Dscope-001.js24 * obj.__proto__ = this, 'five' should become a read-only propery of obj.
26 * If we then change obj.__proto__ to null, obj.five should initially be
27 * undefined. We should be able to define obj.five to whatever we want,
28 * and be able to access this value as obj.five.
30 * Bug 53268 was filed because obj.five could not be set or accessed after
31 * obj.__proto__ had been set to the global object and then to null.
35 var status = 'Testing scope after changing obj.__proto__';
38 var obj variable
[all...]
/macosx-10.10.1/apr-32/apr/apr/
H A Dlibapr.mak45 -@erase "$(INTDIR)\apr_atomic.obj"
46 -@erase "$(INTDIR)\apr_cpystrn.obj"
47 -@erase "$(INTDIR)\apr_fnmatch.obj"
48 -@erase "$(INTDIR)\apr_getpass.obj"
49 -@erase "$(INTDIR)\apr_hash.obj"
50 -@erase "$(INTDIR)\apr_pools.obj"
51 -@erase "$(INTDIR)\apr_random.obj"
52 -@erase "$(INTDIR)\apr_snprintf.obj"
53 -@erase "$(INTDIR)\apr_strings.obj"
54 -@erase "$(INTDIR)\apr_strnatcmp.obj"
[all...]
/macosx-10.10.1/Heimdal-398.1.2/base/
H A DNTMakefile39 $(OBJ)\array.obj \
40 $(OBJ)\bool.obj \
41 $(OBJ)\dict.obj \
42 $(OBJ)\error.obj \
43 $(OBJ)\heimbase.obj \
44 $(OBJ)\null.obj \
45 $(OBJ)\number.obj \
46 $(OBJ)\string.obj
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/Array/
H A D15.4.4.3-1.js43 var obj = {toLocaleString: function() {n++}};
44 var myArray = [obj, obj, obj];
/macosx-10.10.1/emacs-93/emacs/oldXMenu/
H A Ddescrip.mms27 EXTRA=insque.obj
39 RM_CMD = $(RM) *.BAK.*, *.obj.*
66 OBJS = Activate.obj, -
67 AddPane.obj, -
68 AddSel.obj, -
69 ChgPane.obj, -
70 ChgSel.obj, -
71 Create.obj, -
72 DelPane.obj, -
73 DelSel.obj,
[all...]
/macosx-10.10.1/syslog-267/libsystem_asl.tproj/include/
H A Dasl_object.h43 void (*dealloc)(asl_object_private_t *obj);
44 int (*set_key_val_op)(asl_object_private_t *obj, const char *key, const char *val, uint16_t op);
45 void (*unset_key)(asl_object_private_t *obj, const char *key);
46 int (*get_val_op_for_key)(asl_object_private_t *obj, const char *key, const char **val, uint16_t *op);
47 int (*get_key_val_op_at_index)(asl_object_private_t *obj, size_t n, const char **key, const char **val, uint16_t *op);
48 size_t (*count)(asl_object_private_t *obj);
49 asl_object_private_t *(*next)(asl_object_private_t *obj);
50 asl_object_private_t *(*prev)(asl_object_private_t *obj);
51 asl_object_private_t *(*get_object_at_index)(asl_object_private_t *obj, size_t n);
52 void (*set_iteration_index)(asl_object_private_t *obj, size_
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dinstance-var.h15 #define PyObjCInstanceVariable_Check(obj) PyObject_TypeCheck((obj), &PyObjCInstanceVariable_Type)
20 #define PyObjCInstanceVariable_IsOutlet(obj) \
21 (((PyObjCInstanceVariable*)(obj))->isOutlet)
22 #define PyObjCInstanceVariable_IsSlot(obj) \
23 (((PyObjCInstanceVariable*)(obj))->isSlot)
24 #define PyObjCInstanceVariable_GetName(obj) \
25 (((PyObjCInstanceVariable*)(obj))->name)
26 #define PyObjCInstanceVariable_GetType(obj) \
27 (((PyObjCInstanceVariable*)(obj))
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dinstance-var.h15 #define PyObjCInstanceVariable_Check(obj) PyObject_TypeCheck((obj), &PyObjCInstanceVariable_Type)
20 #define PyObjCInstanceVariable_IsOutlet(obj) \
21 (((PyObjCInstanceVariable*)(obj))->isOutlet)
22 #define PyObjCInstanceVariable_IsSlot(obj) \
23 (((PyObjCInstanceVariable*)(obj))->isSlot)
24 #define PyObjCInstanceVariable_GetName(obj) \
25 (((PyObjCInstanceVariable*)(obj))->name)
26 #define PyObjCInstanceVariable_GetType(obj) \
27 (((PyObjCInstanceVariable*)(obj))
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dinstance-var.h15 #define PyObjCInstanceVariable_Check(obj) PyObject_TypeCheck((obj), &PyObjCInstanceVariable_Type)
20 #define PyObjCInstanceVariable_IsOutlet(obj) \
21 (((PyObjCInstanceVariable*)(obj))->isOutlet)
22 #define PyObjCInstanceVariable_IsSlot(obj) \
23 (((PyObjCInstanceVariable*)(obj))->isSlot)
24 #define PyObjCInstanceVariable_GetName(obj) \
25 (((PyObjCInstanceVariable*)(obj))->name)
26 #define PyObjCInstanceVariable_GetType(obj) \
27 (((PyObjCInstanceVariable*)(obj))
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts/
H A Dadventure.sh176 read -e -p '-advsh> ' verb obj x # prompt is '-advsh> '
182 change) if [ "$obj" ]
183 then if ash_lk "$obs $hobs" "$obj"
192 then if mv $obj $2 # >&- 2>&-
193 then echo "The $obj shimmers and turns into $2."
194 obs=`ash_rm "$2 $obs" "$obj"`
195 else echo "There is a cloud of smoke but the $obj is unchanged."
201 *) echo "Change $obj to what?"
204 else if ash_lk "$kn" "$obj"
206 else echo "I see no $obj her
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dpex-one.c28 struct pex_obj *obj; local
31 obj = pex_init (0, pname, NULL);
32 errmsg = pex_run (obj, flags, executable, argv, outname, errname, err);
35 if (!pex_get_status (obj, 1, status))
41 pex_free (obj);
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-sync.h31 * Begin synchronizing on 'obj'.
32 * Allocates recursive pthread_mutex associated with 'obj' if needed.
34 * @param obj The object to begin synchronizing on.
38 OBJC_EXPORT int objc_sync_enter(id obj)
42 * End synchronizing on 'obj'.
44 * @param obj The objet to end synchronizing on.
48 OBJC_EXPORT int objc_sync_exit(id obj)
52 OBJC_EXPORT int objc_sync_wait(id obj, long long milliSecondsMaxWait)
54 OBJC_EXPORT int objc_sync_notify(id obj)
56 OBJC_EXPORT int objc_sync_notifyAll(id obj)
[all...]

Completed in 290 milliseconds

1234567891011>>