Home
last modified time | relevance | path

Searched refs:replacing (Results 1 – 25 of 6972) sorted by relevance

12345678910>>...279

/dports/www/mod_php81/php-8.1.1/ext/standard/tests/strings/
H A Dstr_replace_variation2.phpt67 -- String after replacing the search value is => --
74 -- String after replacing the search value is => --
81 -- String after replacing the search value is => --
88 -- String after replacing the search value is => --
95 -- String after replacing the search value is => --
102 -- String after replacing the search value is => --
109 -- String after replacing the search value is => --
116 -- String after replacing the search value is => --
123 -- String after replacing the search value is => --
130 -- String after replacing the search value is => --
[all …]
/dports/lang/php81/php-8.1.1/ext/standard/tests/strings/
H A Dstr_replace_variation2.phpt67 -- String after replacing the search value is => --
74 -- String after replacing the search value is => --
81 -- String after replacing the search value is => --
88 -- String after replacing the search value is => --
95 -- String after replacing the search value is => --
102 -- String after replacing the search value is => --
109 -- String after replacing the search value is => --
116 -- String after replacing the search value is => --
123 -- String after replacing the search value is => --
130 -- String after replacing the search value is => --
[all …]
/dports/sysutils/fluxengine/fluxengine-61ff48c/lib/
H A Dreader.cc162 static void replace_sector(std::unique_ptr<Sector>& replacing, Sector& replacement) in replace_sector() argument
164 if (replacing && conflictable(replacing->status) && conflictable(replacement.status)) in replace_sector()
166 if (replacement.data != replacing->data) in replace_sector()
171 replacing->status = Sector::CONFLICT; in replace_sector()
175 if (!replacing || ((replacing->status != Sector::OK) && (replacement.status == Sector::OK))) in replace_sector()
177 if (!replacing) in replace_sector()
178 replacing.reset(new Sector); in replace_sector()
179 *replacing = replacement; in replace_sector()
210 auto& replacing = readSectors[sector.logicalSector]; in readDiskCommand() local
211 replace_sector(replacing, sector); in readDiskCommand()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Dmem_replace.stderr1 error: replacing an `Option` with `None`
9 error: replacing an `Option` with `None`
15 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
23 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
29 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
35 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
41 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
47 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
53 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
59 error: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`
[all …]
H A Dlossy_float_literal.stderr5 …| ^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_216…
13 …| ^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220…
19 …| ^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220.…
25 …| ^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_2…
31 …| ^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_220_f32`
37 …| ^^^^^^^^^^^^ help: consider changing the type or replacing it with: `16_777_22…
43 …| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: …
49 …| ^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `…
55 …| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with:…
61 …| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or replacing it with: `9_0…
[all …]
H A Dassign_ops2.stderr8 help: did you mean `a = a + 1` or `a = a + a + 1`? Consider replacing it with
23 help: did you mean `a = a + 1` or `a = a + 1 + a`? Consider replacing it with
38 help: did you mean `a = a - 1` or `a = a - (a - 1)`? Consider replacing it with
53 help: did you mean `a = a * 99` or `a = a * a * 99`? Consider replacing it with
68 help: did you mean `a = a * 42` or `a = a * 42 * a`? Consider replacing it with
83 help: did you mean `a = a / 2` or `a = a / (a / 2)`? Consider replacing it with
98 help: did you mean `a = a % 5` or `a = a % (a % 5)`? Consider replacing it with
113 help: did you mean `a = a & 1` or `a = a & a & 1`? Consider replacing it with
128 help: did you mean `a = a * a` or `a = a * a * a`? Consider replacing it with
H A Dunicode.stderr5 …| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{…
13 …| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/…
19 …| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{2…
25 | ^^^^^ help: consider replacing the string with: `"̀àh?"`
33 | ^^^^^^^ help: consider replacing the string with: `"/u{dc}ben!"`
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/manual_memcpy/
H A Dwithout_loop_counters.stderr7 | |_____^ help: try replacing the loop by: `dst[..src.len()].clone_from_slice(&src[..]);`
17 … | |_____^ help: try replacing the loop by: `dst[10..(src.len() + 10)].clone_from_slice(&src[..]);`
25 …| |_____^ help: try replacing the loop by: `dst[..src.len()].clone_from_slice(&src[10..(src.len() …
33 …| |_____^ help: try replacing the loop by: `dst[11..src.len()].clone_from_slice(&src[(11 - 10)..(s…
41 | |_____^ help: try replacing the loop by: `dst.clone_from_slice(&src[..dst.len()]);`
52 help: try replacing the loop by
72 …| |_____^ help: try replacing the loop by: `dst_vec[..src_vec.len()].clone_from_slice(&src_vec[..]…
88 …| |_____^ help: try replacing the loop by: `dst[from..(from + 3)].clone_from_slice(&src[..(from + …
96 | |_____^ help: try replacing the loop by: `dst[..5].clone_from_slice(&src[..5]);`
104 | |_____^ help: try replacing the loop by: `dst[..0].clone_from_slice(&src[..0]);`
[all …]
H A Dwith_loop_counters.stderr8 …| |_____^ help: try replacing the loop by: `dst[3..src.len()].clone_from_slice(&src[..(src.len() -…
19 | |_____^ help: try replacing the loop by: `dst[..(src.len() - 3)].clone_from_slice(&src[3..]);`
28 | |_____^ help: try replacing the loop by: `dst[3..(src.len() + 3)].clone_from_slice(&src[..]);`
37 …| |_____^ help: try replacing the loop by: `dst[..src.len()].clone_from_slice(&src[3..(src.len() +…
46 …| |_____^ help: try replacing the loop by: `dst[3..(3 + src.len())].clone_from_slice(&src[..((3 + …
55 …| |_____^ help: try replacing the loop by: `dst[5..src.len()].clone_from_slice(&src[(3 - 2)..((src…
64 | |_____^ help: try replacing the loop by: `dst.clone_from_slice(&src[2..(dst.len() + 2)]);`
73 | |_____^ help: try replacing the loop by: `dst[3..10].clone_from_slice(&src[5..(10 + 5 - 3)]);`
86 help: try replacing the loop by
99 …| |_____^ help: try replacing the loop by: `dst[(0 << 1)..((1 << 1) + (0 << 1))].clone_from_slice(…
[all …]
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/core/config/zone/
H A DPortalSetupDescriptor.java45 protected boolean replacing; field in PortalSetupDescriptor
65 replacing = false; in PortalSetupDescriptor()
106 return replacing; in isReplacing()
128 public void setReplacing(final boolean replacing) { in setReplacing() argument
129 this.replacing = replacing; in setReplacing()
/dports/www/gallery2/gallery2/lib/tools/po/
H A Dpremerge-messages.pl40 my $replacing = 0;
45 $replacing = 1;
49 $replacing = 0;
52 unless ($replacing) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/liblouis/src/tables/
H A Dhu-hu-g1.ctb80 always cs 146 General need replacing cs letters with a combined dot combination
81 always ccs 146-146 General need replacing ccs letters with a combined dot combination
85 always gy 1456 General need replacing gy letters with a combined dot combination
86 always ggy 1456-1456 General need replacing ggy letters with a combined dot combination
88 always lly 456-456 General need replacing ly letters with a combined dot combination
89 always ny 1246 General need replacing ny letters with a combined dot combination
90 always nny 1246-1246 General need replacing nny letters with a combined dot combination
91 always ty 1256 General need replacing ty letter pairs with a combined dot combination
93 always sz 156 General need replacing sz letters with a combined dot combination
97 always zs 345 General need replacing zs letters with a combined dot combination
[all …]
/dports/devel/liblouis/liblouis-3.20.0/tables/
H A Dhu-hu-g1.ctb80 always cs 146 General need replacing cs letters with a combined dot combination
81 always ccs 146-146 General need replacing ccs letters with a combined dot combination
85 always gy 1456 General need replacing gy letters with a combined dot combination
86 always ggy 1456-1456 General need replacing ggy letters with a combined dot combination
88 always lly 456-456 General need replacing ly letters with a combined dot combination
89 always ny 1246 General need replacing ny letters with a combined dot combination
90 always nny 1246-1246 General need replacing nny letters with a combined dot combination
91 always ty 1256 General need replacing ty letter pairs with a combined dot combination
93 always sz 156 General need replacing sz letters with a combined dot combination
97 always zs 345 General need replacing zs letters with a combined dot combination
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/web-platform/meta/custom-elements/reactions/
H A DElement.html.ini6 [id on Element must enqueue an attributeChanged reaction when replacing an existing attribute]
12 …[className on Element must enqueue an attributeChanged reaction when replacing an existing attribu…
18 [slot on Element must enqueue an attributeChanged reaction when replacing an existing attribute]
27 …[setAttribute on Element must enqueue an attributeChanged reaction when replacing an existing attr…
30 …[setAttribute on Element must enqueue an attributeChanged reaction when replacing an existing unob…
39 …[setAttributeNS on Element must enqueue an attributeChanged reaction when replacing an existing at…
42 …[setAttributeNS on Element must enqueue an attributeChanged reaction when replacing an existing un…
75 …[setAttributeNode on Element must enqueue an attributeChanged reaction when replacing an existing …
78 …[setAttributeNode on Element must enqueue an attributeChanged reaction when replacing an existing …
87 …[setAttributeNodeNS on Element must enqueue an attributeChanged reaction when replacing an existin…
[all …]
/dports/devel/monotone/monotone-1.1/test/func/resolve_conflicts_content/
H A Dmerge-14 mtn: replacing content of 'files/baz', 'files/baz' with '_MTN/result/baz'
5 mtn: replacing content of 'files/foo', 'files/foo' with 'files/foo'
6 mtn: replacing content of 'files/inter1', 'files/inter1' with '_MTN/resolutions/files/inter1'
7 mtn: replacing content of 'files/inter2', 'files/inter2' with '_MTN/resolutions/inter_merged'
/dports/editors/featherpad/FeatherPad-1.0.1/featherpad/highlighter/
H A Dhighlighter-perl-regex.cpp278 replacing = true; in isInsidePerlRegex()
284 if (ro) replacing = true; in isInsidePerlRegex()
384 replacing = true; in isInsidePerlRegex()
387 replacing = false; in isInsidePerlRegex()
494 replacing = true; in multiLinePerlRegex()
497 replacing = true; in multiLinePerlRegex()
564 if (ro && !replacing) in multiLinePerlRegex()
587 replacing = true; in multiLinePerlRegex()
615 if (ro && !replacing) in multiLinePerlRegex()
617 replacing = true; in multiLinePerlRegex()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/js/src/devtools/release/
H A Drelease-notes113 my $replacing;
126 $replacing = $name;
137 } elsif ($replacing) {
138 push @replaced, [ $replacing, $name ];
139 undef $replacing;
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/devtools/release/
H A Drelease-notes113 my $replacing;
126 $replacing = $name;
137 } elsif ($replacing) {
138 push @replaced, [ $replacing, $name ];
139 undef $replacing;
/dports/www/firefox/firefox-99.0/js/src/devtools/release/
H A Drelease-notes113 my $replacing;
126 $replacing = $name;
137 } elsif ($replacing) {
138 push @replaced, [ $replacing, $name ];
139 undef $replacing;
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/devtools/release/
H A Drelease-notes113 my $replacing;
126 $replacing = $name;
137 } elsif ($replacing) {
138 push @replaced, [ $replacing, $name ];
139 undef $replacing;
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/devtools/release/
H A Drelease-notes113 my $replacing;
126 $replacing = $name;
137 } elsif ($replacing) {
138 push @replaced, [ $replacing, $name ];
139 undef $replacing;
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/devtools/release/
H A Drelease-notes113 my $replacing;
126 $replacing = $name;
137 } elsif ($replacing) {
138 push @replaced, [ $replacing, $name ];
139 undef $replacing;
/dports/audio/festival/speech_tools/doc/man/
H A Ddp_man.dox.body21 replacing a symbol in sequence 1 with each possible symbol in the
55 Each row of foo shows the cost of replacing an input symbol
58 the vocabulary file). In the example, replacing 'a' with 'a' costs 0,
59 replacing 'a' with any of 'b' 'c' or 'd' costs 3 (a substitution), and
60 replacing 'a' with the place holder symbol 'null' costs 2 (a
61 deletion). The cost of replacing 'null' with anything other than
64 for example, replacing 'a' with 'a' need not cost 0. The entries in
/dports/devel/monotone/monotone-1.1/test/func/resolve_conflicts_all_resolutions/
H A Dmerge-14 mtn: replacing content of 'checkout_left.sh' with 'resolutions/checkout_left.sh'
5 mtn: replacing content of 'checkout_right.sh' with 'resolutions/checkout_right.sh'
13 mtn: replacing content of 'interactive_file', 'interactive_file' with '_MTN/resolutions/interactive…
15 mtn: replacing content of 'user_file', 'user_file' with 'resolutions/user_file'
/dports/lang/ferite/ferite-1.0.2/modules/regexp/
H A Dregexp_Regexp.c32 double replacing; in FE_NATIVE_FUNCTION() local
36 ferite_get_parameters( params, 4, &match, &replace, &all, &replacing ); in FE_NATIVE_FUNCTION()
74 if( replacing ) in FE_NATIVE_FUNCTION()
166 if( replacing && replace->length > 0 ) in FE_NATIVE_FUNCTION()
182 else if( !replacing ) in FE_NATIVE_FUNCTION()
189 … else if( replacing && current_yield_block == NULL ) /* We only do this if there is no block */ in FE_NATIVE_FUNCTION()
240 FUD(( "are we replacing? %d\n", (int)replacing )); in FE_NATIVE_FUNCTION()
242 if( !replacing ) in FE_NATIVE_FUNCTION()
297 if( replacing ) in FE_NATIVE_FUNCTION()

12345678910>>...279