Home
last modified time | relevance | path

Searched refs:new_section (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/dports/devel/z88dk/z88dk/src/z80asm/t/
H A Dtest_codearea.c147 T( section_blank = new_section("") ); in test_sections()
239 T( section_code = new_section("code") ); in test_sections()
253 T( section_data = new_section("data") ); in test_sections()
264 T( new_section("data") ); in test_sections()
269 T( new_section("code") ); in test_sections()
274 T( new_section("") ); in test_sections()
309 T( new_section("code") ); T( new_section("data") ); T( new_section("bss") ); in test_sections()
310 T( new_section("bss") ); T( append_byte(3) ); T( next_PC() ); in test_sections()
317 T( new_section("code") ); T( new_section("data") ); T( new_section("bss") ); in test_sections()
318 T( new_section("data") ); T( append_byte(2) ); T( next_PC() ); in test_sections()
[all …]
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_import_dxf/dxfgrabber/
H A Dsections.py38 new_section = HeaderSection.from_tags(section)
39 drawing.dxfversion = new_section.get('$ACADVER', 'AC1009')
40 codepage = new_section.get('$DWGCODEPAGE', 'ANSI_1252')
46 new_section = section_class.from_tags(section, drawing)
48 new_section = None
49 if new_section is not None:
50 self._sections[new_section.name] = new_section
/dports/science/code_saturne/code_saturne-7.1.0/src/fvm/
H A Dfvm_nodal.c214 fvm_nodal_section_t *new_section; in _fvm_nodal_section_copy() local
238 new_section->_face_index = NULL; in _fvm_nodal_section_copy()
239 new_section->_face_num = NULL; in _fvm_nodal_section_copy()
240 new_section->_vertex_index = NULL; in _fvm_nodal_section_copy()
241 new_section->_vertex_num = NULL; in _fvm_nodal_section_copy()
243 new_section->gc_id = NULL; in _fvm_nodal_section_copy()
244 new_section->tag = NULL; in _fvm_nodal_section_copy()
262 new_section->global_element_num in _fvm_nodal_section_copy()
268 return (new_section); in _fvm_nodal_section_copy()
2566 qsort(new_section->_vertex_num, in fvm_nodal_copy_edges()
[all …]
H A Dfvm_nodal_append.c269 fvm_nodal_section_t *new_section = NULL; in fvm_nodal_append_by_transfer() local
280 new_section = _transfer_to_section(n_elements, in fvm_nodal_append_by_transfer()
288 this_nodal->sections[n_sections] = new_section; in fvm_nodal_append_by_transfer()
293 switch(new_section->entity_dim) { in fvm_nodal_append_by_transfer()
344 fvm_nodal_section_t *new_section = NULL; in fvm_nodal_append_shared() local
355 new_section = _map_to_section(n_elements, in fvm_nodal_append_shared()
363 this_nodal->sections[n_sections] = new_section; in fvm_nodal_append_shared()
368 switch(new_section->entity_dim) { in fvm_nodal_append_shared()
/dports/www/wwwoffle/wwwoffle-2.9j/conf/
H A Dupgrade-config-2.7-2.8.pl357 $new_section=$ {$moved_options{$section}}{$regexp_option};
359 print "$section\t- Moved option '$old_line' -> $new_section\n";
361 if(!defined $first{$new_section})
363 push(@{$options{$new_section}},"\n");
364 …push(@{$options{$new_section}},"# Options moved from $section section for WWWOFFLE version $versio…
365 push(@{$options{$new_section}},"\n");
366 $first{$new_section}=0;
369 push(@{$options{$new_section}},$line);
424 $first{$new_section}=0;
H A Dupgrade-config-2.6-2.7.pl351 $new_section=$ {$moved_options{$section}}{$regexp_option};
353 print "$section\t- Moved option '$old_line' -> $new_section\n";
355 if(!defined $first{$new_section})
357 push(@{$options{$new_section}},"\n");
358 …push(@{$options{$new_section}},"# Options moved from $section section for WWWOFFLE version $versio…
359 push(@{$options{$new_section}},"\n");
360 $first{$new_section}=0;
363 push(@{$options{$new_section}},$line);
417 $first{$new_section}=0;
H A Dupgrade-config.pl348 $new_section=$ {$moved_options{$section}}{$regexp_option};
350 print "$section\t- Moved option '$old_line' -> $new_section\n";
352 if(!defined $first{$new_section})
354 push(@{$options{$new_section}},"\n");
355 …push(@{$options{$new_section}},"# Options moved from $section section for WWWOFFLE version $versio…
356 push(@{$options{$new_section}},"\n");
357 $first{$new_section}=0;
360 push(@{$options{$new_section}},$line);
415 $first{$new_section}=0;
H A Dupgrade-config-2.5-2.6.pl591 $new_section=$ {$moved_options{$section}}{$regexp_option};
593 print "$section\t- Moved option '$old_line' -> $new_section\n";
595 if(!defined $first{$new_section})
597 push(@{$options{$new_section}},"\n");
598 …push(@{$options{$new_section}},"# Options moved from $section section for WWWOFFLE version $versio…
599 push(@{$options{$new_section}},"\n");
600 $first{$new_section}=0;
603 push(@{$options{$new_section}},$line);
630 $first{$new_section}=0;
/dports/math/clblast/CLBlast-1.1.0/scripts/database/database/
H A Ddb.py22 def add_section(database, new_section): argument
28 for attribute in new_section.keys():
30 if attribute not in old_section or new_section[attribute] != old_section[attribute]:
36 old_section["results"] = combine_results(old_section["results"], new_section["results"])
40 database["sections"].append(new_section)
H A Dio.py45 new_section = {}
50 new_section["parameter_names"] = parameter_names[0] # they are all be the same
54 new_section[field] = new_results
56 new_section[field] = section[field]
57 new_sections.append(new_section)
/dports/textproc/py-jc/jc-1.17.5/jc/parsers/
H A Dls.py172 new_section = False
200 new_section = True
207 new_section = False
211 if new_section and entry == '':
212 new_section = False
216 if not new_section \
/dports/games/libretro-paralleln64/parallel-n64-6e26fbb/mupen64plus-core/src/api/
H A Dconfig.c281 config_section *new_section; in section_deepcopy() local
290 if (new_section == NULL) in section_deepcopy()
343 return new_section; in section_deepcopy()
358 if (new_section == NULL) break; in copy_configlist_active_to_saved()
363 last_section = new_section; in copy_configlist_active_to_saved()
434 config_section *new_section; in ConfigOpenSection() local
451 if (new_section == NULL) in ConfigOpenSection()
455 new_section->next = *curr_section; in ConfigOpenSection()
456 *curr_section = new_section; in ConfigOpenSection()
458 *ConfigSectionHandle = new_section; in ConfigOpenSection()
[all …]
/dports/print/texinfo/texinfo-6.8/tp/Texinfo/
H A DTransformations.pm105 my $new_section = {'cmdname' =>
109 $new_section->{'contents'} = [{'type' => 'empty_line',
112 $new_section->{'args'} = [{'type' => 'line_arg',
113 'parent' => $new_section}];
114 $new_section->{'args'}->[0]->{'contents'} = [
116 'parent' => $new_section->{'args'}->[0]
120 'parent' => $new_section->{'args'}->[0]
122 $new_section->{'args'}->[0]->{'extra'}
124 $new_section->{'args'}->[0]->{'contents'}->[0]->{'args'}
128 push @contents, $new_section;
[all …]
/dports/sysutils/p5-Rex/Rex-1.13.4/lib/Rex/Inventory/
H A DDMIDecode.pm147 my $new_section = 0;
163 $new_section = 1;
184 $new_section = 0;
188 if ($new_section) {
190 $new_section = 0;
206 $new_section = 0;
/dports/emulators/pcem/pcem_emulator-pcem-faf5d6423060/src/
H A Dconfig.c174 section_t *new_section; in config_load() local
186 new_section = malloc(sizeof(section_t)); in config_load()
187 memset(new_section, 0, sizeof(section_t)); in config_load()
188 strncpy(new_section->name, name, 256); in config_load()
189 list_add(&new_section->list, head); in config_load()
191 current_section = new_section; in config_load()
279 section_t *new_section = malloc(sizeof(section_t)); in create_section() local
282 memset(new_section, 0, sizeof(section_t)); in create_section()
283 strncpy(new_section->name, name, 256); in create_section()
284 list_add(&new_section->list, head); in create_section()
[all …]
/dports/games/flare-engine/flare-engine-1.12/src/
H A DFileParser.cpp34 , new_section(false) in FileParser()
125 new_section = false; in next()
131 new_section = include_fp->new_section; in next()
158 new_section = true; in next()
211 new_section = true; in next()
/dports/net/samba412/samba-4.12.15/lib/util/
H A Dtiniparser.c263 struct tiniparser_section *new_section; in section_parser() local
307 new_section = malloc( in section_parser()
310 if (new_section == NULL) { in section_parser()
314 memcpy(new_section->section_name, section_name, section_name_len); in section_parser()
316 new_section->entry_list = NULL; in section_parser()
319 new_section->next_section = d->section_list; in section_parser()
320 d->section_list = new_section; in section_parser()
/dports/print/hplip/hplip-3.20.6/common/
H A Dutils.c104 char new_section[32]; in get_key_value() local
116 new_section[0] = 0; in get_key_value()
124 while ((rcbuf[i] != ']') && (j < (sizeof(new_section)-2))) in get_key_value()
125 new_section[j++] = rcbuf[i++]; in get_key_value()
126 new_section[j++] = rcbuf[i++]; /* ']' */ in get_key_value()
127 new_section[j] = 0; /* zero terminate */ in get_key_value()
133 if ((strcasecmp(new_section, section) == 0) && (strcasecmp(new_key, key) == 0)) in get_key_value()
/dports/emulators/libspectrum/libspectrum-1.5.0/
H A Daccessor.pl203 my $new_section = 0;
210 $new_section = 1;
220 if( $new_section ) {
222 $new_section = 0;
/dports/graphics/py-mcomix/mcomix3-9eb4fc7/mcomix/mcomix/
H A Dpreferences_dialog.py95 page.new_section(_('Background'))
107 page.new_section(_('Thumbnails'))
138 page.new_section(_('Transparency'))
183 page.new_section(_('Scroll'))
254 page.new_section(_('Files'))
278 page.new_section(_('Fullscreen'))
297 page.new_section(_('Slideshow'))
313 page.new_section(_('Rotation'))
362 page.new_section(_('Keyhandler'))
384 page.new_section(_('Hints'))
[all …]
/dports/devel/gobject-introspection/gobject-introspection-1.70.0/giscanner/
H A Dsectionparser.py124 def new_section(file_, title): function
135 general_section = new_section("main", "Main")
143 section = new_section(file_name, gtype_name)
152 section = new_section(None, node.name)
/dports/sysutils/py-salt/salt-3004.1/tests/pytests/unit/states/
H A Dtest_ini_manage.py96 new_section = copy.deepcopy(sections)
97 new_section["general"]["user"] = "saltuser"
102 assert ini_manage.options_present(name, new_section) == exp_ret
/dports/www/py-weboob/weboob-2.0/weboob/tools/config/
H A Diniconfig.py88new_section = ':'.join((root_section, k)) if (root_section != self.ROOTSECT or k == self.ROOTSECT)…
89 if not self.config.has_section(new_section):
90 self.config.add_section(new_section)
91 save_section(v, new_section)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/data/gencerts/
H A Dopenssl_conf.py132 new_section = Section(name)
133 self.sections.append(new_section)
134 return new_section
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/data/gencerts/
H A Dopenssl_conf.py132 new_section = Section(name)
133 self.sections.append(new_section)
134 return new_section

12345678910>>...18