Searched refs:object (Results 26 - 50 of 2072) sorted by relevance

1234567891011>>

/macosx-10.10.1/libdispatch-442.1.4/dispatch/
H A Dobject.h47 * See <os/object.h> for details.
51 #define DISPATCH_GLOBAL_OBJECT(type, object) ((OS_OBJECT_BRIDGE type)&(object))
55 _dispatch_object_validate(dispatch_object_t object) { argument
56 void *isa = *(void* volatile*)(OS_OBJECT_BRIDGE void*)object;
73 #define DISPATCH_GLOBAL_OBJECT(type, object) (&(object))
110 * When not building with Objective-C ARC, a block object allocated on or
151 * Increment the reference count of a dispatch object.
157 * @param object
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Dtry-006.js52 * This is the object that will be the "this" in a with block.
65 * object's "check" function is called. If the test object's exception
68 * the object.
70 function TryWith( object ) {
72 with ( object ) {
81 "TryWith( " + object.value +" )",
82 (object.exception ? EXCEPTION_STRING +": " + object.valueOf() : object
[all...]
H A Dtry-007.js52 * This is the object that will be the "this" in a with block.
72 function TryForIn( object ) {
74 for ( p in object ) {
75 if ( typeof object[p] == "function" ) {
76 result = object[p]();
85 "TryForIn( " + object+ " )",
86 (object.exception ? EXCEPTION_STRING +": " + object.value : object.value),
H A Dtry-009.js43 function TryInWhile( object ) {
47 object.thrower();
48 result = NO_EXCEPTION_STRING + object.value;
58 "( "+ object +".thrower() )",
59 (object.result
60 ? EXCEPTION_STRING + object.value :
61 NO_EXCEPTION_STRING + object.value),
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regress/
H A Dregress-7703.js54 function inspect(object) {
55 for (prop in object) {
56 var x = object[prop];
70 function inspect_again(object) {
71 for (prop in object) {
72 types_2[types_2.length] = (typeof object[prop]);
/macosx-10.10.1/WebKit-7600.1.25/mac/Misc/
H A DWebNSDictionaryExtras.m36 id object = [self objectForKey:key];
37 return [object isKindOfClass:[NSNumber class]] ? object : nil;
48 id object = [self objectForKey:key];
49 return [object isKindOfClass:[NSString class]] ? object : nil;
54 id object = [self objectForKey:key];
55 return [object isKindOfClass:[NSArray class]] ? object : nil;
88 NSNumber *object
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKTypeRefWrapper.mm41 - (id)initWithObject:(WKTypeRef)object
47 _object = object;
52 - (WKTypeRef)object
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitWebViewBaseAccessible.h28 #define WEBKIT_WEB_VIEW_BASE_ACCESSIBLE(object) (G_TYPE_CHECK_INSTANCE_CAST((object), WEBKIT_TYPE_WEB_VIEW_BASE_ACCESSIBLE, WebKitWebViewBaseAccessible))
30 #define WEBKIT_IS_WEB_VIEW_BASE_ACCESSIBLE(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), WEBKIT_TYPE_WEB_VIEW_BASE_ACCESSIBLE))
32 #define WEBKIT_WEB_VIEW_BASE_ACCESSIBLE_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), WEBKIT_TYPE_WEB_VIEW_BASE_ACCESSIBLE, WebKitWebViewBaseAccessibleClass))
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DGCIncomingRefCountedSetInlines.h48 bool GCIncomingRefCountedSet<T>::addReference(JSCell* cell, T* object) argument
50 if (!object->addIncomingReference(cell)) {
51 ASSERT(object->isDeferred());
52 ASSERT(object->numberOfIncomingReferences());
55 m_vector.append(object);
56 m_bytes += object->gcSizeEstimateInBytes();
57 ASSERT(object->isDeferred());
58 ASSERT(object->numberOfIncomingReferences());
66 T* object = m_vector[i]; local
67 size_t size = object
[all...]
/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A Dbmalloc.h41 inline void free(void* object) argument
43 return Cache::deallocate(object);
46 inline void* realloc(void* object, size_t newSize) argument
49 if (!object)
53 switch(objectType(object)) {
56 void* end = roundUpToMultipleOf<smallLineSize>(static_cast<char*>(object) + 1);
57 oldSize = static_cast<char*>(end) - static_cast<char*>(object);
62 void* end = roundUpToMultipleOf<mediumLineSize>(static_cast<char*>(object) + 1);
63 oldSize = static_cast<char*>(end) - static_cast<char*>(object);
67 BeginTag* beginTag = LargeChunk::beginTag(object);
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleTupleBinding.java47 public void objectToKey(Object object, DatabaseEntry key) { argument
49 TupleOutput output = getTupleOutput(object);
50 objectToKey(object, output);
55 public void objectToData(Object object, DatabaseEntry data) { argument
57 TupleOutput output = getTupleOutput(object);
58 objectToData(object, output);
65 * Constructs an entity object from {@link TupleInput} key and data
68 * @param keyInput is the {@link TupleInput} key entry object.
70 * @param dataInput is the {@link TupleInput} data entry object.
72 * @return the entity object constructe
85 objectToKey(Object object, TupleOutput output) argument
95 objectToData(Object object, TupleOutput output) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_object.h46 * @param object the Ewk_Object instance to increase the reference count
48 * @return a pointer to the object on success, @c NULL otherwise.
50 EAPI Ewk_Object *ewk_object_ref(Ewk_Object *object);
57 * @param object the Ewk_Object instance to decrease the reference count
59 EAPI void ewk_object_unref(Ewk_Object *object);
/macosx-10.10.1/libdispatch-442.1.4/os/
H A DMakefile.am8 object.h
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImage.h1 //===---- ObjectImage.h - Format independent executuable object image -----===//
25 object::ObjectFile *ObjFile;
28 ObjectImage(object::ObjectFile *Obj) { ObjFile = Obj; }
31 virtual object::symbol_iterator begin_symbols() const
33 virtual object::symbol_iterator end_symbols() const
36 virtual object::section_iterator begin_sections() const
38 virtual object::section_iterator end_sections() const
46 virtual void updateSectionAddress(const object::SectionRef &Sec,
48 virtual void updateSymbolAddress(const object::SymbolRef &Sym, uint64_t Addr)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A DOC_PythonEnumerator.h8 +(instancetype)enumeratorWithPythonObject:(PyObject*)object;
9 -(id)initWithPythonObject:(PyObject*)object;
/macosx-10.10.1/swig-12/Lib/guile/
H A Dswigrun.i38 SWIG_IsPointer(SCM object);
41 SWIG_IsPointerOfType(SCM object, swig_type_info *type);
44 SWIG_PointerAddress(SCM object);
47 SWIG_PointerType(SCM object);
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-ISO8601-0.07/t/
H A D01_load.t16 my $object = DateTime::Format::ISO8601->new;
17 isa_ok( $object, 'DateTime::Format::ISO8601' );
/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dvm_object.c62 * Virtual memory object module.
151 * page of memory exists within exactly one object.
153 * An object is only deallocated when all "references"
156 * Associated with each object is a list of all resident
157 * memory pages belonging to that object; this list is
158 * maintained by the "vm_page" module, but locked by the object's
161 * Each object also records the memory object reference
163 * back data (the memory object, field "pager"), etc...
167 * memory object int
360 vm_object_t object; /* corresponding object */ member in struct:vm_object_hash_entry
485 vm_object_hash_insert( vm_object_hash_entry_t entry, vm_object_t object) argument
529 _vm_object_allocate( vm_object_size_t size, vm_object_t object) argument
565 register vm_object_t object; local
898 vm_object_deallocate( register vm_object_t object) argument
1260 vm_object_page_grab( vm_object_t object) argument
1352 vm_object_cache_remove_locked( vm_object_t object) argument
1363 vm_object_cache_remove( vm_object_t object) argument
1375 vm_object_cache_add( vm_object_t object) argument
1403 vm_object_t object = VM_OBJECT_NULL; local
1635 register vm_object_t object = VM_OBJECT_NULL; local
1733 vm_object_terminate( vm_object_t object) argument
1870 vm_object_reap( vm_object_t object) argument
2058 vm_object_reap_pages( vm_object_t object, int reap_type) argument
2277 vm_object_reap_async( vm_object_t object) argument
2300 vm_object_t object, shadow_object; local
2431 vm_object_destroy( vm_object_t object, __unused kern_return_t reason) argument
2512 vm_object_deactivate_all_pages( register vm_object_t object) argument
2638 page_is_paged_out( vm_object_t object, vm_object_offset_t offset) argument
2730 deactivate_pages_in_object( vm_object_t object, vm_object_offset_t offset, vm_object_size_t size, boolean_t kill_page, boolean_t reusable_page, boolean_t all_reusable, chunk_state_t *chunk_state, pmap_flush_context *pfc) argument
2922 vm_object_t object; local
2994 vm_object_deactivate_pages( vm_object_t object, vm_object_offset_t offset, vm_object_size_t size, boolean_t kill_page, boolean_t reusable_page) argument
3066 vm_object_reuse_pages( vm_object_t object, vm_object_offset_t start_offset, vm_object_offset_t end_offset, boolean_t allow_partial_reuse) argument
3186 vm_object_pmap_protect( register vm_object_t object, register vm_object_offset_t offset, vm_object_size_t size, pmap_t pmap, vm_map_offset_t pmap_start, vm_prot_t prot) argument
3199 vm_object_pmap_protect_options( register vm_object_t object, register vm_object_offset_t offset, vm_object_size_t size, pmap_t pmap, vm_map_offset_t pmap_start, vm_prot_t prot, int options) argument
3642 vm_object_t object = *_object; local
4271 vm_object_shadow( vm_object_t *object, vm_object_offset_t *offset, vm_object_size_t length) argument
4448 register vm_object_t object; local
4670 vm_object_pager_create( register vm_object_t object) argument
4790 vm_object_compressor_pager_create( register vm_object_t object) argument
4903 vm_object_remove( vm_object_t object) argument
4940 vm_object_do_collapse_compressor( vm_object_t object, vm_object_t backing_object) argument
5026 vm_object_do_collapse( vm_object_t object, vm_object_t backing_object) argument
5292 vm_object_do_bypass( vm_object_t object, vm_object_t backing_object) argument
5436 vm_object_collapse( register vm_object_t object, register vm_object_offset_t hint_offset, boolean_t can_bypass) argument
5921 vm_object_page_remove( register vm_object_t object, register vm_object_offset_t start, register vm_object_offset_t end) argument
6088 vm_object_page_map( vm_object_t object, vm_object_offset_t offset, vm_object_size_t size, vm_object_offset_t (*map_fn)(void *map_fn_data, vm_object_offset_t offset), void *map_fn_data) argument
6134 vm_object_populate_with_private( vm_object_t object, vm_object_offset_t offset, ppnum_t phys_page, vm_size_t size) argument
6255 register vm_object_t object = VM_OBJECT_NULL; local
6325 vm_object_t object; local
6379 vm_object_t object; local
6454 vm_object_release_name( vm_object_t object, int flags) argument
6541 vm_object_lock_request( vm_object_t object, vm_object_offset_t offset, vm_object_size_t size, memory_object_return_t should_return, int flags, vm_prot_t prot) argument
6598 vm_object_purge(vm_object_t object, int flags) argument
6777 vm_object_purgable_control( vm_object_t object, vm_purgable_t control, int *state) argument
7093 vm_object_get_page_counts( vm_object_t object, vm_object_offset_t offset, vm_object_size_t size, unsigned int *resident_page_count, unsigned int *dirty_page_count) argument
7204 vm_object_res_deallocate( vm_object_t object) argument
7247 vm_object_res_reference( vm_object_t object) argument
7280 vm_object_reference( register vm_object_t object) argument
7668 vm_object_cluster_size(vm_object_t object, vm_object_offset_t *start, vm_size_t *length, vm_object_fault_info_t fault_info, uint32_t *io_streaming) argument
8006 vm_object_page_op( vm_object_t object, vm_object_offset_t offset, int ops, ppnum_t *phys_entry, int *flags) argument
8166 vm_object_range_op( vm_object_t object, vm_object_offset_t offset_beg, vm_object_offset_t offset_end, int ops, uint32_t *range) argument
8255 pager_map_to_phys_contiguous( memory_object_control_t object, memory_object_offset_t offset, addr64_t base_vaddr, vm_size_t size) argument
8294 vm_object_lock(vm_object_t object) argument
8304 vm_object_lock_avoid(vm_object_t object) argument
8314 _vm_object_lock_try(vm_object_t object) argument
8320 vm_object_lock_try(vm_object_t object) argument
8332 vm_object_lock_shared(vm_object_t object) argument
8341 vm_object_lock_try_shared(vm_object_t object) argument
8356 vm_object_change_wimg_mode(vm_object_t object, unsigned int wimg_mode) argument
8515 vm_object_pageout( vm_object_t object) argument
8618 vm_object_pagein( vm_object_t object) argument
8686 vm_object_t object; local
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts/
H A Dvtree345 local object # Local variable
49 for object in $PWD/.??* $PWD/*
51 if [ -d $object ]; # It is a directory
53 echo "${indent}|___${object##*/}/"
55 if [ -x $object ];
57 ExpandDirectory $object
60 elif [ -e $object ]; then
63 echo "${indent}|___${object##*/}"
H A Dvtree3a45 local object # Local variable
49 for object in $PWD/.??* $PWD/*
51 if [ -d $object ]; # It is a directory
53 echo "${indent}|___${object##*/}/"
55 if [ -x $object ];
57 ExpandDirectory $object
60 elif [ -e $object ]; then
63 echo "${indent}|___${object##*/}"
/macosx-10.10.1/ruby-106/ruby/ext/json/lib/json/add/
H A Dcomplex.rb7 def self.json_create(object)
8 Complex(object['r'], object['i'])
H A Drational.rb7 def self.json_create(object)
8 Rational(object['n'], object['d'])
H A Dregexp.rb8 # Deserializes JSON string by constructing new Regexp object with source
11 def self.json_create(object)
12 new(object['s'], object['o'])
15 # Returns a hash, that will be turned into a JSON object and represent this
16 # object.
/macosx-10.10.1/xnu-2782.1.97/libkern/kxld/
H A Dkxld_object.c112 static kern_return_t get_target_machine_info(KXLDObject *object,
114 static kern_return_t get_macho_slice_for_arch(KXLDObject *object,
117 static u_long get_macho_header_size(const KXLDObject *object);
118 static u_long get_macho_data_size(const KXLDObject *object) __unused;
120 static kern_return_t init_from_execute(KXLDObject *object);
121 static kern_return_t init_from_final_linked_image(KXLDObject *object,
124 static boolean_t target_supports_protected_segments(const KXLDObject *object)
126 static void set_is_object_linked(KXLDObject *object);
129 static boolean_t target_supports_bundle(const KXLDObject *object)
131 static kern_return_t init_from_bundle(KXLDObject *object);
203 kxld_object_init_from_macho(KXLDObject *object, u_char *file, u_long size, const char *name, KXLDArray *section_order __unused, cpu_type_t cputype, cpu_subtype_t cpusubtype, KXLDFlags flags __unused) argument
318 get_target_machine_info(KXLDObject *object, cpu_type_t cputype __unused, cpu_subtype_t cpusubtype __unused) argument
420 get_macho_slice_for_arch(KXLDObject *object, u_char *file, u_long size) argument
507 init_from_final_linked_image(KXLDObject *object, u_int *filetype_out, struct symtab_command **symtab_hdr_out) argument
715 init_from_execute(KXLDObject *object) argument
798 init_from_bundle(KXLDObject *object) argument
832 target_supports_object(const KXLDObject *object) argument
840 init_from_object(KXLDObject *object) argument
1055 get_macho_header_size(const KXLDObject *object) argument
1099 get_macho_data_size(const KXLDObject *object) argument
1167 kxld_object_get_seg_by_name(const KXLDObject *object, const char *segname) argument
1186 kxld_object_get_relocator(const KXLDObject * object) argument
1196 kxld_object_get_sect_by_name(const KXLDObject *object, const char *segname, const char *sectname) argument
1220 kxld_object_get_reloc_at_symbol(const KXLDObject *object, const KXLDSym *sym) argument
1251 kxld_object_get_symbol_of_reloc(const KXLDObject *object, const KXLDReloc *reloc, const KXLDSect *sect) argument
1268 kxld_object_get_section_by_index(const KXLDObject *object, u_int sectnum) argument
1284 kxld_object_get_extrelocs(const KXLDObject *object) argument
1300 kxld_object_get_symtab(const KXLDObject *object) argument
1311 add_section(KXLDObject *object, KXLDSect **sect) argument
1335 resolve_common_symbols(KXLDObject *object) argument
1410 target_has_got(const KXLDObject *object) argument
1453 populate_got(KXLDObject *object) argument
1487 target_supports_protected_segments(const KXLDObject *object) argument
1498 set_is_object_linked(KXLDObject *object) argument
1621 kxld_object_get_file(const KXLDObject *object) argument
1631 kxld_object_get_name(const KXLDObject *object) argument
1641 kxld_object_is_32_bit(const KXLDObject *object) argument
1651 kxld_object_is_final_image(const KXLDObject *object) argument
1661 kxld_object_is_kernel(const KXLDObject *object) argument
1671 kxld_object_is_linked(const KXLDObject *object) argument
1681 kxld_object_target_supports_strict_patching(const KXLDObject *object) argument
1691 kxld_object_target_supports_common_symbols(const KXLDObject *object) argument
1701 kxld_object_get_vmsize(const KXLDObject *object, u_long *header_size, u_long *vmsize) argument
1721 kxld_object_set_linked_object_size(KXLDObject *object, u_long vmsize) argument
1730 kxld_object_export_linked_object(const KXLDObject *object, u_char *linked_object) argument
1831 export_macho_header(const KXLDObject *object, u_char *buf, u_int ncmds, u_long *header_offset, u_long header_size) argument
1842 object, buf, ncmds, header_offset, header_size); local
1855 export_macho_header_32(const KXLDObject *object, u_char *buf, u_int ncmds, u_long *header_offset, u_long header_size) argument
1890 export_macho_header_64(const KXLDObject *object, u_char *buf, u_int ncmds, u_long *header_offset, u_long header_size) argument
1924 kxld_object_index_symbols_by_name(KXLDObject *object) argument
1932 kxld_object_index_cxx_symbols_by_value(KXLDObject *object) argument
1940 kxld_object_relocate(KXLDObject *object, kxld_addr_t link_address) argument
1968 get_mutable_sym(const KXLDObject *object, const KXLDSym *sym) argument
1987 kxld_object_resolve_symbol(KXLDObject *object, const KXLDSym *sym, kxld_addr_t addr) argument
2007 kxld_object_patch_symbol(KXLDObject *object, const struct kxld_sym *sym) argument
2024 kxld_object_add_symbol(KXLDObject *object, char *name, kxld_addr_t link_addr, const KXLDSym **sym_out) argument
2042 kxld_object_process_relocations(KXLDObject *object, const KXLDDict *patched_vtables) argument
2104 process_symbol_pointers(KXLDObject *object) argument
2181 get_seg_by_base_addr(KXLDObject *object, kxld_addr_t base_addr) argument
2202 process_relocs_from_tables(KXLDObject *object) argument
2257 process_relocs_from_sections(KXLDObject *object) argument
2278 populate_kmod_info(KXLDObject *object) argument
2343 target_supports_slideable_kexts(const KXLDObject *object) argument
[all...]
/macosx-10.10.1/DiskArbitration-268/diskarbitrationd/
H A DDADisk.c72 static CFStringRef __DADiskCopyDescription( CFTypeRef object );
73 static CFStringRef __DADiskCopyFormattingDescription( CFTypeRef object, CFDictionaryRef options );
74 static void __DADiskDeallocate( CFTypeRef object );
76 static CFHashCode __DADiskHash( CFTypeRef object );
95 static CFStringRef __DADiskCopyDescription( CFTypeRef object )
97 DADiskRef disk = ( DADiskRef ) object;
99 return CFStringCreateWithFormat( CFGetAllocator( object ), NULL, CFSTR( "<DADisk %p [%p]>{id = %s}" ), object, CFGetAllocator( object ), disk->_id );
102 static CFStringRef __DADiskCopyFormattingDescription( CFTypeRef object, CFDictionaryRe argument
250 CFTypeRef object; local
957 CFTypeRef object; local
[all...]

Completed in 188 milliseconds

1234567891011>>