Searched refs:map (Results 51 - 75 of 2282) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/Shared/Plugins/Netscape/
H A DPluginInformation.cpp111 void getPluginModuleInformation(const PluginModuleInfo& plugin, ImmutableDictionary::MapType& map) argument
114 map.set(pluginInformationPathKey(), API::String::create(plugin.path));
115 map.set(pluginInformationDisplayNameKey(), API::String::create(plugin.info.name));
116 map.set(pluginInformationDefaultLoadPolicyKey(), API::UInt64::create(toWKPluginLoadPolicy(PluginInfoStore::defaultLoadPolicyForPlugin(plugin))));
118 getPlatformPluginModuleInformation(plugin, map);
121 UNUSED_PARAM(map);
127 ImmutableDictionary::MapType map; local
128 getPluginModuleInformation(plugin, map);
130 return ImmutableDictionary::create(WTF::move(map));
135 ImmutableDictionary::MapType map; local
155 ImmutableDictionary::MapType map; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/compat/
H A Dzconf.h254 # pragma map(deflateInit_,"DEIN")
255 # pragma map(deflateInit2_,"DEIN2")
256 # pragma map(deflateEnd,"DEEND")
257 # pragma map(inflateInit_,"ININ")
258 # pragma map(inflateInit2_,"ININ2")
259 # pragma map(inflateEnd,"INEND")
260 # pragma map(inflateSync,"INSY")
261 # pragma map(inflateSetDictionary,"INSEDI")
262 # pragma map(inflate_blocks,"INBL")
263 # pragma map(inflate_blocks_ne
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/vm/
H A Dvm_map.h64 * Virtual memory map module definitions.
89 extern void vm_map_reference(vm_map_t map);
92 /* Setup reserved areas in a new VM map */
114 #define current_map_fast() (current_thread()->map)
123 * vm_map_t the high-level address map data structure.
124 * vm_map_entry_t an entry in an address map.
125 * vm_map_version_t a timestamp of a map, for use with vm_map_lookup
126 * vm_map_copy_t represents memory copied from an address map,
127 * used for inter-map copy operations
138 * memory object or a sub map (o
173 vm_map_t map; /* map backing submap */ member in union:vm_named_entry::__anon15524
[all...]
H A Dvm_kern.h76 vm_map_t map,
96 vm_map_t map,
105 vm_map_t map,
110 vm_map_t map,
115 vm_map_t map,
120 vm_map_t map,
127 vm_map_t map,
141 vm_map_t map,
146 vm_map_t map,
151 vm_map_t map,
[all...]
H A Dvm32_user.c108 vm_map_t map,
117 result = mach_vm_allocate(map, &maddr, size, flags);
125 vm_map_t map,
129 if ((map == VM_MAP_NULL) || (start + size < start))
132 return mach_vm_deallocate(map, start, size);
137 vm_map_t map,
142 if ((map == VM_MAP_NULL) || (start + size < start))
145 return mach_vm_inherit(map, start, size, new_inheritance);
150 vm_map_t map,
156 if ((map
107 vm32_allocate( vm_map_t map, vm32_offset_t *addr, vm32_size_t size, int flags) argument
124 vm32_deallocate( vm_map_t map, vm32_offset_t start, vm32_size_t size) argument
136 vm32_inherit( vm_map_t map, vm32_offset_t start, vm32_size_t size, vm_inherit_t new_inheritance) argument
149 vm32_protect( vm_map_t map, vm32_offset_t start, vm32_size_t size, boolean_t set_maximum, vm_prot_t new_protection) argument
163 vm32_machine_attribute( vm_map_t map, vm32_address_t addr, vm32_size_t size, vm_machine_attribute_t attribute, vm_machine_attribute_val_t* value) argument
177 vm32_read( vm_map_t map, vm32_address_t addr, vm32_size_t size, pointer_t *data, mach_msg_type_number_t *data_size) argument
188 vm32_read_list( vm_map_t map, vm32_read_entry_t data_list, natural_t count) argument
213 vm32_read_overwrite( vm_map_t map, vm32_address_t address, vm32_size_t size, vm32_address_t data, vm32_size_t *data_size) argument
231 vm32_write( vm_map_t map, vm32_address_t address, pointer_t data, mach_msg_type_number_t size) argument
241 vm32_copy( vm_map_t map, vm32_address_t source_address, vm32_size_t size, vm32_address_t dest_address) argument
322 vm32_msync( vm_map_t map, vm32_address_t address, vm32_size_t size, vm_sync_t sync_flags) argument
332 vm32_behavior_set( vm_map_t map, vm32_offset_t start, vm32_size_t size, vm_behavior_t new_behavior) argument
345 vm32_region_64( vm_map_t map, vm32_offset_t *address, vm32_size_t *size, vm_region_flavor_t flavor, vm_region_info_t info, mach_msg_type_number_t *count, mach_port_t *object_name) argument
368 vm32_region( vm_map_t map, vm32_address_t *address, vm32_size_t *size, vm_region_flavor_t flavor, vm_region_info_t info, mach_msg_type_number_t *count, mach_port_t *object_name) argument
401 vm32_region_recurse_64( vm_map_t map, vm32_address_t *address, vm32_size_t *size, uint32_t *depth, vm_region_recurse_info_64_t info, mach_msg_type_number_t *infoCnt) argument
423 vm32_region_recurse( vm_map_t map, vm32_offset_t *address, vm32_size_t *size, natural_t *depth, vm_region_recurse_info_t info32, mach_msg_type_number_t *infoCnt) argument
477 vm32_purgable_control( vm_map_t map, vm32_offset_t address, vm_purgable_t control, int *state) argument
493 vm32_map_page_query( vm_map_t map, vm32_offset_t offset, int *disposition, int *ref_count) argument
543 vm32__task_wire( vm_map_t map, boolean_t must_wire) argument
[all...]
H A Dvm_map_store.h62 #define UPDATE_HIGHEST_ENTRY_END(map, highest_entry) \
66 UHEE_map = (map); \
73 #define VM_MAP_HIGHEST_ENTRY(map, entry, start) \
78 VMHE_map = (map); \
92 * future lookups. only a read lock is held on map,
97 #define SAVE_HINT_MAP_READ(map,value) \
99 OSCompareAndSwapPtr((map)->hint, value, &(map)->hint); \
107 * future lookups. write lock held on map,
112 #define SAVE_HINT_MAP_WRITE(map,valu
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/dev/vn/
H A Dshadow.c32 * Implement copy-on-write shadow map to allow a disk image to be
37 * The map has two parts:
38 * 1) a bit map to track which blocks have been written
39 * 2) a band map to map a "band" within the original file to a corresponding
42 * The band map is used to ensure that blocks that are contiguous in the
93 band_number_t * bands; /* band map array */
154 bitmap_set(u_char * map, uint32_t start_bit, uint32_t bit_count) argument
165 map[start.byte] |= byte_set_bits(start.bit, NBBY - 1);
175 *((uint32_t *)(map
212 bitmap_get(u_char * map, uint32_t start_bit, uint32_t bit_count, boolean_t * ret_is_set) argument
313 shadow_map_block_to_band(shadow_map_t * map, uint32_t block) argument
326 shadow_map_mapped_band(shadow_map_t * map, band_number_t band, boolean_t map_it, band_number_t * mapped_band) argument
365 shadow_map_contiguous(shadow_map_t * map, uint32_t start_block, uint32_t num_blocks, boolean_t is_write) argument
451 shadow_map_read(shadow_map_t * map, uint32_t block_offset, uint32_t block_count, uint32_t * incr_block_offset, uint32_t * incr_block_count) argument
503 shadow_map_write(shadow_map_t * map, uint32_t block_offset, uint32_t block_count, uint32_t * incr_block_offset, uint32_t * incr_block_count) argument
535 shadow_map_is_written(shadow_map_t * map, uint32_t block_offset) argument
550 shadow_map_shadow_size(shadow_map_t * map) argument
571 shadow_map_t * map; local
631 shadow_map_free(shadow_map_t * map) argument
660 shadow_map_t * map; local
[all...]
/macosx-10.10/swig-12/Lib/java/
H A Dstd_map.i7 * SWIG typemaps for std::map
13 // std::map
17 #include <map>
26 template<class K, class T> class map {
33 map();
34 map(const map<K,T> &);
41 std::map<K,T >::iterator i = self->find(key);
51 std::map<K,T >::iterator i = self->find(key);
58 std::map<
[all...]
/macosx-10.10/swig-12/Lib/ocaml/
H A Dstd_map.i7 * SWIG typemaps for std::map
13 // std::map
17 #include <map>
25 template<class K, class T> class map {
28 map();
29 map(const map<K,T> &);
36 std::map<K,T >::iterator i = self->find(key);
46 std::map<K,T >::iterator i = self->find(key);
53 std::map<
[all...]
/macosx-10.10/swig-12/Lib/perl5/
H A Dstd_map.i7 * SWIG typemaps for std::map
13 // std::map
17 #include <map>
26 template<class K, class T> class map {
29 map();
30 map(const map<K,T> &);
37 std::map<K,T >::iterator i = self->find(key);
47 std::map<K,T >::iterator i = self->find(key);
54 std::map<
[all...]
/macosx-10.10/swig-12/Lib/php/
H A Dstd_map.i7 * SWIG typemaps for std::map
13 // std::map
17 #include <map>
26 template<class K, class T> class map {
29 map();
30 map(const map<K,T> &);
38 std::map<K,T >::iterator i = self->find(key);
48 std::map<K,T >::iterator i = self->find(key);
55 std::map<
[all...]
/macosx-10.10/swig-12/Lib/tcl/
H A Dstd_map.i2 // SWIG typemaps for std::map
11 // std::map
15 #include <map>
24 template<class K, class T> class map {
27 map();
28 map(const map<K,T> &);
35 std::map<K,T >::iterator i = self->find(key);
45 std::map<K,T >::iterator i = self->find(key);
52 std::map<
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c++/
H A Dconfig.hpp33 #include <map>
55 //! Returns a name to value map containing all build-time configuration
58 const std::map< std::string, std::string >& get_all(void);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dexport_text.tcl53 # - map = maps symbolic references to actual file path. Optional.
61 array set map {}
62 if {[info exists config(map)]} {
63 array set map $config(map)
127 upvar 1 map map
128 if {![info exists map($id)]} { return $id }
129 return $map($id)
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/
H A Dexport_text.tcl53 # - map = maps symbolic references to actual file path. Optional.
61 array set map {}
62 if {[info exists config(map)]} {
63 array set map $config(map)
133 upvar 1 map map
134 if {![info exists map($id)]} { return $id }
135 return $map($id)
/macosx-10.10/vim-55/src/testdir/
H A Damiga.vim3 map! /tmp t:
/macosx-10.10/ruby-106/ruby/test/dtrace/
H A Dtest_object_create_start.rb7 saw = saw.map(&:split).find_all { |_, file, _|
16 saw = saw.map(&:split).find_all { |klass, file, line|
19 assert_equal(%w{ Hash }, saw.map(&:first))
20 assert_equal([rbfile], saw.map { |line| line[1] })
21 assert_equal(['1'], saw.map { |line| line[2] })
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dkeymaps.c80 rl_copy_keymap (map)
81 Keymap map;
89 temp[i].type = map[i].type;
90 temp[i].function = map[i].function;
125 rl_discard_keymap (map)
126 Keymap map;
130 if (!map)
135 switch (map[i].type)
141 rl_discard_keymap ((Keymap)map[i].function);
145 free ((char *)map[
[all...]
/macosx-10.10/tcl-105/tk/tk/library/ttk/
H A DclassicTheme.tcl40 ttk::style map "." -background \
42 ttk::style map "." -foreground \
45 ttk::style map "." -highlightcolor [list focus black]
49 ttk::style map TButton -relief [list {!disabled pressed} sunken]
52 ttk::style map TCheckbutton \
59 ttk::style map TRadiobutton \
68 ttk::style map TEntry -fieldbackground \
71 ttk::style map TCombobox -fieldbackground \
77 ttk::style map TSpinbox -fieldbackground \
83 ttk::style map TScrollba
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/x509v3/
H A Dpcy_map.c71 static void policy_map_free(X509_POLICY_REF *map) argument
73 OPENSSL_free(map);
94 POLICY_MAPPING *map; local
109 map = sk_POLICY_MAPPING_value(maps, i);
110 /* Reject if map to or from anyPolicy */
111 if ((OBJ_obj2nid(map->subjectDomainPolicy) == NID_any_policy)
112 || (OBJ_obj2nid(map->issuerDomainPolicy) == NID_any_policy))
119 if (policy_map_find(cache, map->subjectDomainPolicy) != NULL)
126 data = policy_cache_find_data(cache, map->issuerDomainPolicy);
127 /* If we don't have anyPolicy can't map */
[all...]
/macosx-10.10/emacs-93/emacs/lisp/
H A Dehelp.el36 ;; (define-key global-map "\C-h" 'ehelp-command)
37 ;; (define-key global-map [help] 'ehelp-command)
38 ;; (define-key global-map [f1] 'ehelp-command)
43 (defvar electric-help-map ()
64 (if electric-help-map
66 (let ((map (make-keymap)))
69 (suppress-keymap map)
70 (define-key map "\C-u" 'electric-help-undefined)
71 (define-key map [?\C-0] 'electric-help-undefined)
72 (define-key map [
[all...]
H A Dautoarg.el48 (defvar autoarg-mode-map
49 (let ((map (make-sparse-keymap)))
52 (define-key map `[,(+ ?0 i)] 'digit-argument)
53 (define-key map `[(control ,(+ ?0 i))] 'self-insert-command))
54 (define-key map " " 'autoarg-terminate)
55 map)
59 ;; (define-key autoarg-mode-map [?-] 'negative-argument)
60 ;; (define-key autoarg-mode-map [(control ?-)] 'self-insert-command)
62 ;; (define-key autoarg-mode-map [?\r] 'autoarg-terminate)
82 (setq overriding-terminal-local-map universa
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-LatentSemanticMapping/PyObjCTest/
H A Dtest_latentsemanticmapping.py60 map = LSMMapCreate(None, kLSMMapPairs)
61 self.failUnlessIsInstance(map, LSMMapRef)
63 v = LSMMapGetProperties(map)
66 LSMMapSetProperties(map, {u"key": u"value"})
67 v = LSMMapGetProperties(map)
70 v = LSMMapStartTraining(map)
73 cat = LSMMapAddCategory(map)
76 cat2 = LSMMapAddCategory(map)
79 v = LSMMapGetCategoryCount(map)
83 text = LSMTextCreate(None, map)
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-LatentSemanticMapping/PyObjCTest/
H A Dtest_latentsemanticmapping.py60 map = LSMMapCreate(None, kLSMMapPairs)
61 self.assertIsInstance(map, LSMMapRef)
63 v = LSMMapGetProperties(map)
66 LSMMapSetProperties(map, {u"key": u"value"})
67 v = LSMMapGetProperties(map)
70 v = LSMMapStartTraining(map)
73 cat = LSMMapAddCategory(map)
76 cat2 = LSMMapAddCategory(map)
79 v = LSMMapGetCategoryCount(map)
83 text = LSMTextCreate(None, map)
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-LatentSemanticMapping-2.5.1/PyObjCTest/
H A Dtest_latentsemanticmapping.py70 map = LSMMapCreate(None, kLSMMapPairs)
71 self.assertIsInstance(map, LSMMapRef)
73 v = LSMMapGetProperties(map)
76 LSMMapSetProperties(map, {b"key".decode('latin1'): b"value".decode('latin1')})
77 v = LSMMapGetProperties(map)
80 v = LSMMapStartTraining(map)
83 cat = LSMMapAddCategory(map)
86 cat2 = LSMMapAddCategory(map)
89 v = LSMMapGetCategoryCount(map)
93 text = LSMTextCreate(None, map)
[all...]

Completed in 501 milliseconds

1234567891011>>