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

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/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, 0);
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();
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/api/
H A DMakefile4 object.html
/macosx-10.9.5/Libc-997.90.3/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.9.5/cctools-845/misc/
H A Dinout.c41 struct object *object);
119 struct object *object; local
125 object = archs[i].members[j].object;
126 setup_object_symbolic_info(object);
141 if(archs[i].members[j].object != NULL){
142 size += archs[i].members[j].object->object_size
143 - archs[i].members[j].object
171 setup_object_symbolic_info( struct object *object) argument
[all...]
H A Dcodesign_allocate.c57 struct object *object);
253 archs[i].members[j].object);
268 if(archs[i].members[j].object != NULL){
269 size += archs[i].members[j].object->object_size
270 - archs[i].members[j].object->input_sym_info_size
271 + archs[i].members[j].object->output_sym_info_size;
290 setup_code_signature(archs + i, NULL, archs[i].object);
305 struct object *object)
302 setup_code_signature( struct arch *arch, struct member *member, struct object *object) argument
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Strptime/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.9.5/CPANInternal-140/DateTime-Format-Strptime-1.04/t/
H A D002_dates.t10 my $object = DateTime::Format::Strptime->new(
41 $object->pattern($pattern);
42 is($object->format_datetime( $object->parse_datetime( $data ) ), $expect, $pattern);
49 $object->pattern('%l:%M:%S %p');
50 is($object->format_datetime( $object->parse_datetime( '12:34:56 AM' ) ),
60 $object->pattern('%H:%M:%S %z');
61 is($object->format_datetime( $object
[all...]
/macosx-10.9.5/CPANInternal-140/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.9.5/cctools-845/libstuff/
H A Dcheckout.c33 struct object *object);
38 struct object *object);
43 struct object *object);
63 archs[i].members[j].object);
68 check_object(archs + i, NULL, archs[i].object);
78 struct object *object)
75 check_object( struct arch *arch, struct member *member, struct object *object) argument
308 dyld_order( struct arch *arch, struct member *member, struct object *object) argument
552 symbol_string_at_end( struct arch *arch, struct member *member, struct object *object) argument
[all...]
/macosx-10.9.5/ruby-104/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.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/
H A Dtest_ewk2_refptr_evas_object.cpp42 RefPtr<Evas_Object> object; local
43 ASSERT_FALSE(object);
45 object = adoptRef(evas_object_box_add(canvas()));
46 ASSERT_TRUE(object);
48 object = 0;
49 ASSERT_FALSE(object);
51 object = adoptRef(evas_object_box_add(canvas()));
52 ASSERT_TRUE(object);
54 object.clear();
55 ASSERT_FALSE(object);
60 RefPtr<Evas_Object> object = adoptRef(evas_object_box_add(canvas())); local
103 RefPtr<Evas_Object> object = adoptRef(evas_object_box_add(canvas())); local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSNotificationCenterExtras.h33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object;
34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
H A DWebNSNotificationCenterExtras.m33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object
35 [self postNotificationOnMainThreadWithName:name object:object userInfo:nil waitUntilDone:NO];
38 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo
40 [self postNotificationOnMainThreadWithName:name object:object userInfo:userInfo waitUntilDone:NO];
43 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInf
[all...]
/macosx-10.9.5/objc4-551.1/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.9.5/WebCore-7537.78.1/bindings/js/
H A DJSSVGPathSegCustom.cpp61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object) argument
63 if (!object)
66 if (JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), object))
69 switch (object->pathSegType()) {
71 return CREATE_DOM_WRAPPER(exec, globalObject, SVGPathSegClosePath, object);
73 return CREATE_DOM_WRAPPER(exec, globalObject, SVGPathSegMovetoAbs, object);
75 return CREATE_DOM_WRAPPER(exec, globalObject, SVGPathSegMovetoRel, object);
77 return CREATE_DOM_WRAPPER(exec, globalObject, SVGPathSegLinetoAbs, object);
79 return CREATE_DOM_WRAPPER(exec, globalObject, SVGPathSegLinetoRel, object);
81 return CREATE_DOM_WRAPPER(exec, globalObject, SVGPathSegCurvetoCubicAbs, object);
[all...]
/macosx-10.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/WebCore-7537.78.1/rendering/
H A DRenderTableCaption.h44 inline RenderTableCaption* toRenderTableCaption(RenderObject* object) argument
46 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption());
47 return static_cast<RenderTableCaption*>(object);
50 inline const RenderTableCaption* toRenderTableCaption(const RenderObject* object) argument
52 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption());
53 return static_cast<const RenderTableCaption*>(object);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonEnumerator.h8 +newWithPythonObject:(PyObject*)object;
9 -initWithPythonObject:(PyObject*)object;
/macosx-10.9.5/pyobjc-42/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.9.5/JavaScriptCore-7537.78.1/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...]
/macosx-10.9.5/ruby-104/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.

Completed in 468 milliseconds

1234567891011>>