Home
last modified time | relevance | path

Searched refs:new_parts (Results 1 – 25 of 138) sorted by relevance

123456

/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/tools/
H A Dvehicle_reformatter.py43 def really_add_parts(xpoint, ypoint, xparts, new_parts): argument
79 def add_parts(revised_parts, xpoint, last_center, new_parts): argument
80 xparts = new_parts.get(xpoint, {})
90 really_add_parts(xpoint, last_center, xparts, new_parts)
92 really_add_parts(xpoint, ypoint, xparts, new_parts)
96 really_add_parts(xpoint, ypoint, xparts, new_parts)
112 new_parts = {} variable
118 new_parts.setdefault(part_x, {})
119 new_parts[part_x].setdefault(part_y, {"parts": []})
140 new_parts)
[all …]
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/tools/
H A Dvehicle_reformatter.py43 def really_add_parts(xpoint, ypoint, xparts, new_parts): argument
79 def add_parts(revised_parts, xpoint, last_center, new_parts): argument
80 xparts = new_parts.get(xpoint, {})
90 really_add_parts(xpoint, last_center, xparts, new_parts)
92 really_add_parts(xpoint, ypoint, xparts, new_parts)
96 really_add_parts(xpoint, ypoint, xparts, new_parts)
112 new_parts = {} variable
118 new_parts.setdefault(part_x, {})
119 new_parts[part_x].setdefault(part_y, {"parts": []})
140 new_parts)
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/rustfix-0.6.0/src/
H A Dreplace.rs101 let new_parts = { in replace_range() localVariable
163 let mut new_parts = Vec::with_capacity(self.parts.len() + 2); in replace_range() localVariable
167 new_parts.extend_from_slice(&ps); in replace_range()
172 new_parts.push(Span { in replace_range()
180 new_parts.push(Span { in replace_range()
192 new_parts.push(Span { in replace_range()
201 new_parts.extend_from_slice(&ps); in replace_range()
204 new_parts in replace_range()
207 self.parts = new_parts; in replace_range()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/rustfix-0.5.1/src/
H A Dreplace.rs105 let new_parts = { in replace_range() localVariable
167 let mut new_parts = Vec::with_capacity(self.parts.len() + 2); in replace_range() localVariable
171 new_parts.extend_from_slice(&ps); in replace_range()
176 new_parts.push(Span { in replace_range()
184 new_parts.push(Span { in replace_range()
196 new_parts.push(Span { in replace_range()
205 new_parts.extend_from_slice(&ps); in replace_range()
208 new_parts in replace_range()
211 self.parts = new_parts; in replace_range()
/dports/lang/rust/rustc-1.58.1-src/vendor/rustfix/src/
H A Dreplace.rs101 let new_parts = { in replace_range() localVariable
163 let mut new_parts = Vec::with_capacity(self.parts.len() + 2); in replace_range() localVariable
167 new_parts.extend_from_slice(&ps); in replace_range()
172 new_parts.push(Span { in replace_range()
180 new_parts.push(Span { in replace_range()
192 new_parts.push(Span { in replace_range()
201 new_parts.extend_from_slice(&ps); in replace_range()
204 new_parts in replace_range()
207 self.parts = new_parts; in replace_range()
/dports/lang/rust/rustc-1.58.1-src/vendor/rustfix-0.5.1/src/
H A Dreplace.rs105 let new_parts = { in replace_range() localVariable
167 let mut new_parts = Vec::with_capacity(self.parts.len() + 2); in replace_range() localVariable
171 new_parts.extend_from_slice(&ps); in replace_range()
176 new_parts.push(Span { in replace_range()
184 new_parts.push(Span { in replace_range()
196 new_parts.push(Span { in replace_range()
205 new_parts.extend_from_slice(&ps); in replace_range()
208 new_parts in replace_range()
211 self.parts = new_parts; in replace_range()
/dports/www/ffsend/ffsend-ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98/cargo-crates/websocket-base-0.26.2/src/ws/util/
H A Dmod.rs22 let mut new_parts = FramedParts::new(old_parts.io, codec); in update_framed_codec() localVariable
23 new_parts.read_buf = old_parts.read_buf; in update_framed_codec()
24 new_parts.write_buf = old_parts.write_buf; in update_framed_codec()
25 Framed::from_parts(new_parts) in update_framed_codec()
/dports/www/websocat/websocat-1.9.0/cargo-crates/websocket-base-0.26.2/src/ws/util/
H A Dmod.rs22 let mut new_parts = FramedParts::new(old_parts.io, codec); in update_framed_codec() localVariable
23 new_parts.read_buf = old_parts.read_buf; in update_framed_codec()
24 new_parts.write_buf = old_parts.write_buf; in update_framed_codec()
25 Framed::from_parts(new_parts) in update_framed_codec()
/dports/devel/py-google-pasta/google-pasta-0.1.7/pasta/augment/
H A Drename.py100 new_parts = new_name.split('.')
104 node.module = '.'.join(new_parts + module_parts[len(old_parts):])
114 alias_to_change.name = new_parts[-1]
117 if module_parts != new_parts[:-1]:
120 new_import.module = '.'.join(new_parts[:-1])
122 node.module = '.'.join(new_parts[:-1])
/dports/mail/nocc/nocc-1.9.10/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/mail/nextcloud-mail/mail/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/finance/prestashop/prestashop/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/webtrees/webtrees-1.7.18/webtrees/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/devel/pear-htmlpurifier/HTMLPurifier-4.9.2/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/thirtybees/thirtybees-1.1.0/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/moodle39/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/moodle310/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);
/dports/www/moodle311/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/
H A DColor.php86 $new_parts = array();
105 $new_parts[] = (string)$result;
131 $new_parts[] = (int)max(min($part, $max_value), 0);
133 $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
137 $new_values = implode(',', $new_parts);

123456