Home
last modified time | relevance | path

Searched refs:imgclass (Results 1 – 25 of 87) sorted by relevance

1234

/dports/emulators/mess/mame-mame0226/src/tools/imgtool/
H A Dlibrary.cpp168 void library::add_class(const imgtool_class *imgclass) in add_class() argument
183 module->imgclass = *imgclass; in add_class()
215 int (*make_class)(int index, imgtool_class *imgclass); in add()
216 imgtool_class imgclass; in add() local
220 memset(&imgclass, 0, sizeof(imgclass)); in add()
221 imgclass.get_info = get_info; in add()
233 memset(&imgclass, 0, sizeof(imgclass)); in add()
234 imgclass.get_info = get_info; in add()
237 result = make_class(i++, &imgclass); in add()
239 add_class(&imgclass); in add()
[all …]
H A Diflopimg.cpp111 const imgtool_class *imgclass; in imgtool_floppy_open_internal() local
116 imgclass = &image.module().imgclass; in imgtool_floppy_open_internal()
117 format = (const struct FloppyFormat *) imgclass->derived_param; in imgtool_floppy_open_internal()
166 const imgtool_class *imgclass; in imgtool_floppy_create() local
172 imgclass = &image.module().imgclass; in imgtool_floppy_create()
173 format = (const struct FloppyFormat *) imgclass->derived_param; in imgtool_floppy_create()
269 derived_class.get_info = imgclass->derived_get_info; in imgtool_floppy_get_info()
299 default: imgclass->derived_get_info(imgclass, state, info); break; in imgtool_floppy_get_info()
316 imgclass->derived_get_info = imgclass->get_info; in imgtool_floppy_make_class()
317 imgclass->get_info = imgtool_floppy_get_info; in imgtool_floppy_make_class()
[all …]
H A Dlibrary.h358 partition_info(imgtool_class imgclass, uint64_t base_block, uint64_t block_count) in partition_info() argument
359 : m_imgclass(imgclass) in partition_info()
365 const imgtool_class &imgclass() const { return m_imgclass; } in imgclass() function
414 int (*make_class)(int index, imgtool_class *imgclass);
427 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_int()
431 static inline void *imgtool_get_info_ptr(const imgtool_class *imgclass, uint32_t state) in imgtool_get_info_ptr() argument
435 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_ptr()
443 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_fct()
451 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_string()
462 imgtool_class imgclass; member
[all …]
H A Dimgtool.cpp530 partitions.emplace_back(module().imgclass, 0, ~0); in list_partitions()
560 , m_imgclass(imgclass) in partition()
563 size_t extra_bytes_size = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_PARTITION_EXTRA_BYTES); in partition()
570 m_directory_extra_bytes = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_DIRECTORY_EXTRA_BYTES); in partition()
571 m_path_separator = (char)imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_PATH_SEPARATOR); in partition()
573 m_prefer_ucase = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_PREFER_UCASE) ? 1 : 0; in partition()
576 m_supports_bootblock = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_SUPPORTS_BOOTBLOCK) ? 1 : 0; in partition()
601 if (global_omit_untested && imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_WRITING_UNTESTED)) in partition()
639 …ions.size()) || (!partitions[partition_index].imgclass().get_info && !partitions[partition_index]. in open()
643 const imgtool_class &imgclass(partitions[partition_index].imgclass()); in open() local
[all …]
H A Dmodules.cpp18 #define MODULE(name) extern void name##_get_info(const imgtool_class *imgclass, uint32_t state, …
24 static void (*const modules[])(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *in…
/dports/emulators/mame/mame-mame0226/src/tools/imgtool/
H A Dlibrary.cpp168 void library::add_class(const imgtool_class *imgclass) in add_class() argument
183 module->imgclass = *imgclass; in add_class()
215 int (*make_class)(int index, imgtool_class *imgclass); in add()
216 imgtool_class imgclass; in add() local
220 memset(&imgclass, 0, sizeof(imgclass)); in add()
221 imgclass.get_info = get_info; in add()
233 memset(&imgclass, 0, sizeof(imgclass)); in add()
234 imgclass.get_info = get_info; in add()
237 result = make_class(i++, &imgclass); in add()
239 add_class(&imgclass); in add()
[all …]
H A Diflopimg.cpp111 const imgtool_class *imgclass; in imgtool_floppy_open_internal() local
116 imgclass = &image.module().imgclass; in imgtool_floppy_open_internal()
117 format = (const struct FloppyFormat *) imgclass->derived_param; in imgtool_floppy_open_internal()
166 const imgtool_class *imgclass; in imgtool_floppy_create() local
172 imgclass = &image.module().imgclass; in imgtool_floppy_create()
173 format = (const struct FloppyFormat *) imgclass->derived_param; in imgtool_floppy_create()
269 derived_class.get_info = imgclass->derived_get_info; in imgtool_floppy_get_info()
299 default: imgclass->derived_get_info(imgclass, state, info); break; in imgtool_floppy_get_info()
316 imgclass->derived_get_info = imgclass->get_info; in imgtool_floppy_make_class()
317 imgclass->get_info = imgtool_floppy_get_info; in imgtool_floppy_make_class()
[all …]
H A Dlibrary.h358 partition_info(imgtool_class imgclass, uint64_t base_block, uint64_t block_count) in partition_info() argument
359 : m_imgclass(imgclass) in partition_info()
365 const imgtool_class &imgclass() const { return m_imgclass; } in imgclass() function
414 int (*make_class)(int index, imgtool_class *imgclass);
427 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_int()
431 static inline void *imgtool_get_info_ptr(const imgtool_class *imgclass, uint32_t state) in imgtool_get_info_ptr() argument
435 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_ptr()
443 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_fct()
451 imgclass->get_info(imgclass, state, &info); in imgtool_get_info_string()
462 imgtool_class imgclass; member
[all …]
H A Dimgtool.cpp530 partitions.emplace_back(module().imgclass, 0, ~0); in list_partitions()
560 , m_imgclass(imgclass) in partition()
563 size_t extra_bytes_size = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_PARTITION_EXTRA_BYTES); in partition()
570 m_directory_extra_bytes = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_DIRECTORY_EXTRA_BYTES); in partition()
571 m_path_separator = (char)imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_PATH_SEPARATOR); in partition()
573 m_prefer_ucase = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_PREFER_UCASE) ? 1 : 0; in partition()
576 m_supports_bootblock = imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_SUPPORTS_BOOTBLOCK) ? 1 : 0; in partition()
601 if (global_omit_untested && imgtool_get_info_int(&imgclass, IMGTOOLINFO_INT_WRITING_UNTESTED)) in partition()
639 …ions.size()) || (!partitions[partition_index].imgclass().get_info && !partitions[partition_index]. in open()
643 const imgtool_class &imgclass(partitions[partition_index].imgclass()); in open() local
[all …]
H A Dmodules.cpp18 #define MODULE(name) extern void name##_get_info(const imgtool_class *imgclass, uint32_t state, …
24 static void (*const modules[])(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *in…
/dports/www/zenphoto/zenphoto-1.5.9/themes/zpmobile/
H A Dindex.php40 $imgclass = ' ui-block-a'; variable
43 $imgclass = ' ui-block-b'; variable
46 $imgclass = ' ui-block-c'; variable
49 $imgclass = ' ui-block-d'; variable
54 …<a class="image<?php echo $imgclass; ?>" href="<?php echo html_encode($image->getLink()); ?>" titl…
H A Dalbum.php49 $imgclass = ' ui-block-a'; variable
52 $imgclass = ' ui-block-b'; variable
55 $imgclass = ' ui-block-c'; variable
58 $imgclass = ' ui-block-d'; variable
63 …<a class="image<?php echo $imgclass; ?>" href="<?php echo html_encode(getImageURL());?>" title="<?…
H A Dsearch.php157 $imgclass = ' ui-block-a'; variable
160 $imgclass = ' ui-block-b'; variable
163 $imgclass = ' ui-block-c'; variable
166 $imgclass = ' ui-block-d'; variable
171 …<a class="image<?php echo $imgclass; ?>" href="<?php echo html_encode(getImageURL());?>" title="<?…
/dports/www/thirtybees/thirtybees-1.1.0/admin/themes/default/template/
H A Dpage_header_toolbar.tpl39 …page-header-desc-{$table}{if isset($toolbar_btn['back'].imgclass)}-{$toolbar_btn['back'].imgclass}…
84 …<a id="page-header-desc-{$table}-{if isset($btn.imgclass)}{$btn.imgclass|escape}{else}{$k}{/if}" c…
85 …($btn.icon)}{$btn.icon|escape}{else}process-icon-{if isset($btn.imgclass)}{$btn.imgclass|escape}{e…
93 …esc-{$table}-{if isset($toolbar_btn['modules-list'].imgclass)}{$toolbar_btn['modules-list'].imgcla…
94 …process-icon-{if isset($toolbar_btn['modules-list'].imgclass)}{$toolbar_btn['modules-list'].imgcla…
H A Dfooter_toolbar.tpl29 …<a id="desc-{$table}-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}" class="btn btn-defau…
30 …<i class="process-icon-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}{if isset($btn.class…
H A Dtoolbar.tpl32 …<a id="desc-{$table}-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}" class="toolbar_btn{i…
33 …<span class="process-icon-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}{if isset($btn.cl…
/dports/finance/prestashop/prestashop/admin/themes/default/template/
H A Dpage_header_toolbar.tpl69 …page-header-desc-{$table}{if isset($toolbar_btn['back'].imgclass)}-{$toolbar_btn['back'].imgclass}…
88 … <a id="page-header-desc-{$table}-{if isset($btn.imgclass)}{$btn.imgclass|escape}{else}{$k}{/if}"
92 …($btn.icon)}{$btn.icon|escape}{else}process-icon-{if isset($btn.imgclass)}{$btn.imgclass|escape}{e…
101 …esc-{$table}-{if isset($toolbar_btn['modules-list'].imgclass)}{$toolbar_btn['modules-list'].imgcla…
106 …process-icon-{if isset($toolbar_btn['modules-list'].imgclass)}{$toolbar_btn['modules-list'].imgcla…
H A Dfooter_toolbar.tpl29 …<a id="desc-{$table}-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}" class="btn btn-defau…
30 …<i class="process-icon-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}{if isset($btn.class…
H A Dtoolbar.tpl32 …<a id="desc-{$table}-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}" class="toolbar_btn{i…
33 …<span class="process-icon-{if isset($btn.imgclass)}{$btn.imgclass}{else}{$k}{/if}{if isset($btn.cl…
/dports/emulators/mess/mame-mame0226/src/tools/imgtool/modules/
H A Dpc_flop.cpp25 imgtool_class imgclass = { fat_get_info }; in fat_image_create() local
44 imgtool_get_info_fct(&imgclass, IMGTOOLINFO_PTR_CREATE_PARTITION); in fat_image_create()
152 void pc_floppy_get_info(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *info) in pc_floppy_get_info() argument
171 default: fat_get_info(imgclass, state, info); break; in pc_floppy_get_info()
H A Dpc_hard.cpp72 extern void fat_get_info(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *info);
129 imgtool_class imgclass = { fat_get_info }; in pc_chd_partition_create() local
141 imgtool_get_info_fct(&imgclass, IMGTOOLINFO_PTR_CREATE_PARTITION); in pc_chd_partition_create()
442 void pc_chd_get_info(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *info) in pc_chd_get_info() argument
/dports/emulators/mame/mame-mame0226/src/tools/imgtool/modules/
H A Dpc_flop.cpp25 imgtool_class imgclass = { fat_get_info }; in fat_image_create() local
44 imgtool_get_info_fct(&imgclass, IMGTOOLINFO_PTR_CREATE_PARTITION); in fat_image_create()
152 void pc_floppy_get_info(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *info) in pc_floppy_get_info() argument
171 default: fat_get_info(imgclass, state, info); break; in pc_floppy_get_info()
H A Dpc_hard.cpp72 extern void fat_get_info(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *info);
129 imgtool_class imgclass = { fat_get_info }; in pc_chd_partition_create() local
141 imgtool_get_info_fct(&imgclass, IMGTOOLINFO_PTR_CREATE_PARTITION); in pc_chd_partition_create()
442 void pc_chd_get_info(const imgtool_class *imgclass, uint32_t state, union imgtoolinfo *info) in pc_chd_get_info() argument
/dports/finance/prestashop/prestashop/admin/themes/new-theme/template/
H A Dpage_header_toolbar.tpl39 … id="page-header-desc-{$table}-{if isset($btn.imgclass)}{$btn.imgclass|escape}{else}{$k}{/if}"
57 …esc-{$table}-{if isset($toolbar_btn['modules-list'].imgclass)}{$toolbar_btn['modules-list'].imgcla…
137 …id="page-header-desc-floating-{$table}-{if isset($btn.imgclass)}{$btn.imgclass|escape}{else}{$k}{/…
/dports/mail/roundcube-sauserprefs/sauserprefs/
H A Dsauserprefs.php497 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
511 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
553 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
567 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
581 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
595 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
609 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
633 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
651 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…
665 …$help_button = html::img(array('class' => $imgclass, 'src' => $attrib['helpicon'], 'alt' => $this-…

1234