Searched refs:object (Results 1 - 25 of 2072) sorted by relevance

1234567891011>>

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_object.cpp31 Ewk_Object* ewk_object_ref(Ewk_Object* object) argument
33 EINA_SAFETY_ON_NULL_RETURN_VAL(object, nullptr);
34 object->ref();
36 return object;
39 void ewk_object_unref(Ewk_Object* object) argument
41 EINA_SAFETY_ON_NULL_RETURN(object);
43 object->deref();
H A Dewk_object_private.h38 inline bool ewk_object_is_of_type(const EwkObject* object) argument
40 return (reinterpret_cast<T>(0)->className() == object->instanceClassName());
44 inline bool ewk_object_cast_check(const EwkObject* object) argument
46 EINA_SAFETY_ON_NULL_RETURN_VAL(object, false);
48 if (!ewk_object_is_of_type<T>(object)) {
49 EINA_LOG_CRIT("attempt to convert object of type %s to type %s",
50 object->instanceClassName(), reinterpret_cast<T>(0)->className());
59 inline const T ewk_object_cast(const EwkObject* object) argument
61 return ewk_object_cast_check<T>(object) ? static_cast<T>(object)
65 ewk_object_cast(EwkObject* object) argument
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/api/
H A DMakefile4 object.html
/macosx-10.10.1/Libc-1044.1.2/include/secure/
H A D_common.h38 #define __darwin_obsz0(object) __builtin_object_size (object, 0)
39 #define __darwin_obsz(object) __builtin_object_size (object, _USE_FORTIFY_LEVEL > 1 ? 1 : 0)
/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A DObjectType.cpp31 ObjectType objectType(void* object) argument
33 if (isSmallOrMedium(object)) {
34 if (isSmall(object))
39 BeginTag* beginTag = LargeChunk::beginTag(object);
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Strptime-1.52/t/
H A D002_dates.t10 my $object = DateTime::Format::Strptime->new(
48 $object->pattern($pattern);
50 $object->format_datetime( $object->parse_datetime($data) ), $expect,
61 $object->pattern('%l:%M:%S %p');
63 $object->format_datetime( $object->parse_datetime('12:34:56 AM') ),
75 $object->pattern('%H:%M:%S %z');
77 $object->format_datetime( $object
[all...]
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Strptime-1.54/t/
H A D002_dates.t10 my $object = DateTime::Format::Strptime->new(
48 $object->pattern($pattern);
50 $object->format_datetime( $object->parse_datetime($data) ), $expect,
61 $object->pattern('%l:%M:%S %p');
63 $object->format_datetime( $object->parse_datetime('12:34:56 AM') ),
75 $object->pattern('%H:%M:%S %z');
77 $object->format_datetime( $object
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/-test-/exception/
H A Densured.c4 begin(VALUE object) argument
6 return rb_funcall(object, rb_intern("try_method"), 0);
10 ensure(VALUE object) argument
12 return rb_funcall(object, rb_intern("ensured_method"), 0);
16 ensured(VALUE module, VALUE object) argument
18 return rb_ensure(begin, object, ensure, object);
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-references.h35 extern void _object_set_associative_reference(id object, void *key, id value, uintptr_t policy);
36 extern id _object_get_associative_reference(id object, void *key);
37 extern void _object_remove_assocations(id object);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D_context.py3 in ObjC, and an Integer value in Python. The 'context' object defined here
5 argument for any Python object, and retrieve that object later on using the
25 when you're done. The argument to unregister is the same object as was
31 class ContextRegistry (object):
35 def register(self, object):
36 uniq = id(object)
37 self._registry[uniq] = object
40 def unregister(self, object):
42 del self._registry[id(object)]
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/objc/
H A D_context.py3 in ObjC, and an Integer value in Python. The 'context' object defined here
5 argument for any Python object, and retrieve that object later on using the
25 when you're done. The argument to unregister is the same object as was
31 class ContextRegistry (object):
35 def register(self, object):
36 uniq = id(object)
37 self._registry[uniq] = object
40 def unregister(self, object):
42 del self._registry[id(object)]
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/objc/
H A D_context.py3 in ObjC, and an Integer value in Python. The 'context' object defined here
5 argument for any Python object, and retrieve that object later on using the
25 when you're done. The argument to unregister is the same object as was
31 class ContextRegistry (object):
35 def register(self, object):
36 uniq = id(object)
37 self._registry[uniq] = object
40 def unregister(self, object):
42 del self._registry[id(object)]
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonEnumerator.h8 +newWithPythonObject:(PyObject*)object;
9 -initWithPythonObject:(PyObject*)object;
H A Dobjc-object.h32 id PyObjCObject_GetObject(PyObject* object);
33 void PyObjCObject_ClearObject(PyObject* object);
34 #define PyObjCObject_GetObject(object) (((PyObjCObject*)(object))->objc_object)
37 #define PyObjCObject_GetFlags(object) (((PyObjCObject*)(object))->flags)
38 #define PyObjCObject_IsClassic(object) (PyObjCObject_GetFlags(object) & PyObjCObject_kCLASSIC)
39 #define PyObjCObject_IsBlock(object) (PyObjCObject_GetFlags(object)
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonEnumerator.h8 +enumeratorWithPythonObject:(PyObject*)object;
9 -initWithPythonObject:(PyObject*)object;
H A Dobjc-object.h32 id PyObjCObject_GetObject(PyObject* object);
33 void PyObjCObject_ClearObject(PyObject* object);
34 #define PyObjCObject_GetObject(object) (((PyObjCObject*)(object))->objc_object)
37 #define PyObjCObject_GetFlags(object) (((PyObjCObject*)(object))->flags)
38 #define PyObjCObject_IsClassic(object) (PyObjCObject_GetFlags(object) & PyObjCObject_kCLASSIC)
39 #define PyObjCObject_IsBlock(object) (PyObjCObject_GetFlags(object)
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dobjc-object.h32 id PyObjCObject_GetObject(PyObject* object);
33 void PyObjCObject_ClearObject(PyObject* object);
34 #define PyObjCObject_GetObject(object) (((PyObjCObject*)(object))->objc_object)
37 #define PyObjCObject_GetFlags(object) (((PyObjCObject*)(object))->flags)
38 #define PyObjCObject_IsClassic(object) (PyObjCObject_GetFlags(object) & PyObjCObject_kCLASSIC)
39 #define PyObjCObject_IsBlock(object) (PyObjCObject_GetFlags(object)
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Ddowhile-003.js6 * Test do while, when the while expression is a JavaScript Number object.
36 function DoWhile( object ) {
40 object.value = --object.value;
44 } while( object.value );
49 object.iterations,
55 "object.value",
56 object.endvalue,
57 Number( object.value )
H A Ddowhile-006.js28 function looping( object ) {
29 object.iterations--;
31 if ( object.iterations <= 0 ) {
44 function DoWhile( object ) {
51 if ( object.breakOut )
54 if ( object.breakIn )
57 } while ( looping(object) );
78 ( object.breakIn || object.breakOut ) ? false : true ,
84 ( object
[all...]
H A Dforin-002.js44 function ForIn_1( object) {
45 with ( object ) {
46 for ( property in object ) {
49 "with loop in a for...in loop. ("+object+")["+property +"] == "+
52 object[property] == eval(property) );
61 function ForIn_2(object) {
62 for ( property in object ) {
63 with ( object ) {
66 "with loop in a for...in loop. ("+object+")["+property +"] == "+
69 object[propert
[all...]
H A Ddowhile-007.js39 function DoWhile( object ) {
47 if ( object.breakOutOne ) {
54 if ( object.breakOutTwo ) {
59 if ( object.breakIn ) {
65 if ( object.breakOutThree ) {
74 (object.breakOutOne) ? false : true,
80 (object.breakOutOne||object.breakOutTwo) ? false : true,
86 (object.breakOutOne||object
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/json/lib/json/add/
H A Dtime.rb9 def self.json_create(object)
10 if usec = object.delete('u') # used to be tv_usec -> tv_nsec
11 object['n'] = usec * 1000
14 at(object['s'], Rational(object['n'], 1000))
16 at(object['s'], object['n'] / 1000)
20 # Returns a hash, that will be turned into a JSON object and represent this
21 # object.
/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dvm_compressor_pager.h63 #define VM_COMPRESSOR_PAGER_STATE_GET(object, offset) \
66 (object)->internal && \
67 (object)->pager != NULL && \
68 !(object)->terminating && \
69 (object)->alive) \
70 ? vm_compressor_pager_state_get((object)->pager, \
71 (offset) + (object)->paging_offset) \
74 #define VM_COMPRESSOR_PAGER_STATE_CLR(object, offset) \
78 (object)->internal && \
79 (object)
[all...]
H A Dvm_object.h63 * Virtual memory object module definitions.
111 * vm_object_t Virtual memory object.
148 * external object in cache
165 * temporary object that
166 * shadows this object, for
173 clock_sec_t vou_cache_ts; /* age of an external object
178 * that owns this purgeable object.
184 vm_object_offset_t paging_offset; /* Offset into memory object */
211 /* The memory object ports are
228 /* boolean_t */ pager_trusted:1,/* The pager for this object
453 vm_object_t object; /* back pointer */ member in struct:msync_req
[all...]
/macosx-10.10.1/DiskArbitration-268/DiskArbitrationAgent/
H A DDiskArbitrationAgent.m30 static void __DAAgentMessageCallback( xpc_object_t object );
32 static void __DAAgentConnectionCallback( xpc_object_t object )
36 type = xpc_get_type( object );
40 xpc_connection_set_event_handler( object, ^( xpc_object_t object ) { __DAAgentMessageCallback( object ); } );
42 xpc_connection_resume( object );
46 static void __DAAgentMessageCallback( xpc_object_t object )
50 type = xpc_get_type( object );
57 _disk = xpc_dictionary_get_data( object, _kDAAgentDiskKe
[all...]

Completed in 238 milliseconds

1234567891011>>