Home
last modified time | relevance | path

Searched refs:parentheses (Results 1 – 25 of 6830) sorted by relevance

12345678910>>...274

/dports/lang/rust/rustc-1.58.1-src/src/test/ui/lint/unused/
H A Dissue-54538-unused-parens-lint.stderr12 help: remove these parentheses
24 help: remove these parentheses
36 help: remove these parentheses
48 help: remove these parentheses
60 help: remove these parentheses
72 help: remove these parentheses
84 help: remove these parentheses
96 help: remove these parentheses
108 help: remove these parentheses
120 help: remove these parentheses
[all …]
H A Dissue-54538-unused-parens-lint.fixed16 let a = 0; //~ ERROR unnecessary parentheses around pattern
17 for a in 0..1 {} //~ ERROR unnecessary parentheses around pattern
18 if let a = 0 {} //~ ERROR unnecessary parentheses around pattern
19 while let a = 0 {} //~ ERROR unnecessary parentheses around pattern
20 fn foo(a: u8) {} //~ ERROR unnecessary parentheses around pattern
66 _ => {} //~ ERROR unnecessary parentheses around pattern
67 y => {} //~ ERROR unnecessary parentheses around pattern
76 &_ => {} //~ ERROR unnecessary parentheses around pattern
87 _ => {} //~ ERROR unnecessary parentheses around pattern
88 y => {} //~ ERROR unnecessary parentheses around pattern
[all …]
H A Dissue-74883-unused-paren-baren-yield.stderr1 error: unnecessary parentheses around `let` scrutinee expression
12 help: remove these parentheses
18 error: unnecessary parentheses around `let` scrutinee expression
24 help: remove these parentheses
47 error: unnecessary parentheses around block return value
53 help: remove these parentheses
59 error: unnecessary parentheses around block return value
65 help: remove these parentheses
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/lint/
H A Dlint-unnecessary-parens.stderr12 help: remove these parentheses
24 help: remove these parentheses
36 help: remove these parentheses
48 help: remove these parentheses
60 help: remove these parentheses
72 help: remove these parentheses
84 help: remove these parentheses
96 help: remove these parentheses
108 help: remove these parentheses
120 help: remove these parentheses
[all …]
H A Dlint-unnecessary-parens.fixed13 return 1; //~ ERROR unnecessary parentheses around `return` value
16 return X { y }; //~ ERROR unnecessary parentheses around `return` value
25 5 //~ ERROR unnecessary parentheses around block return value
27 5 //~ ERROR unnecessary parentheses around block return value
49 bar(true); //~ ERROR unnecessary parentheses around function argument
51 if true {} //~ ERROR unnecessary parentheses around `if` condition
52 while true {} //~ ERROR unnecessary parentheses around `while` condition
53 match true { //~ ERROR unnecessary parentheses around `match` scrutinee expression
75 let mut _a = 0; //~ ERROR unnecessary parentheses around assigned value
76 _a = 0; //~ ERROR unnecessary parentheses around assigned value
[all …]
H A Dunused_parens_remove_json_suggestion.stderr1 {"message":"unnecessary parentheses around `if` condition","code":{"code":"unused_parens","explanat…
12 help: remove these parentheses
19 {"message":"unnecessary parentheses around `if` condition","code":{"code":"unused_parens","explanat…
25 help: remove these parentheses
38 help: remove these parentheses
51 help: remove these parentheses
64 help: remove these parentheses
77 help: remove these parentheses
90 help: remove these parentheses
103 help: remove these parentheses
[all …]
H A Dunused_parens_remove_json_suggestion.fixed6 // replacement only removes one set of parentheses, rather than naïvely
17 if _b { //~ ERROR unnecessary parentheses
28 if c { //~ ERROR unnecessary parentheses
32 if c { //~ ERROR unnecessary parentheses
37 if c { //~ ERROR unnecessary parentheses
43 while true && false { //~ ERROR unnecessary parentheses
44 for _ in 0 .. 3 { //~ ERROR unnecessary parentheses
49 for _ in 0 .. 3 { //~ ERROR unnecessary parentheses
50 while true && false { //~ ERROR unnecessary parentheses
/dports/devel/emscripten/emscripten-2.0.3/tests/core/
H A Dtest_em_asm_2.out84 1. got int, extra parentheses 42
85 1. returned int, extra parentheses 3
86 2. got int, extra parentheses 42
87 2. returned int, extra parentheses 4
88 3. got int, extra parentheses 42
89 3. returned int, extra parentheses 5
90 4. got int, extra parentheses 42
91 4. returned int, extra parentheses 6
92 5. got int, extra parentheses 42
93 5. returned int, extra parentheses 7
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/src/ast/
H A Dtype_visitors.rs24 parentheses, in visit()
68 parentheses, in visit()
120 mut parentheses, in visit_mut()
125 parentheses.tokens.0 = parentheses.tokens.0.visit_mut(visitor); in visit_mut()
127 parentheses.tokens.1 = parentheses.tokens.1.visit_mut(visitor); in visit_mut()
132 parentheses, in visit_mut()
193 mut parentheses, in visit_mut()
197 parentheses.tokens.0 = parentheses.tokens.0.visit_mut(visitor); in visit_mut()
199 parentheses.tokens.1 = parentheses.tokens.1.visit_mut(visitor); in visit_mut()
212 parentheses.tokens.0 = parentheses.tokens.0.visit_mut(visitor); in visit_mut()
[all …]
/dports/databases/p5-GDBM/perl-5.14.2/t/lib/warnings/
H A Dperly11 Use of qw(...) as parentheses is deprecated
55 Use of qw(...) as parentheses is deprecated at - line 2.
56 Use of qw(...) as parentheses is deprecated at - line 3.
57 Use of qw(...) as parentheses is deprecated at - line 4.
59 Use of qw(...) as parentheses is deprecated at - line 5.
66 Use of qw(...) as parentheses is deprecated at - line 1.
76 Use of qw(...) as parentheses is deprecated at - line 2.
77 Use of qw(...) as parentheses is deprecated at - line 3.
78 Use of qw(...) as parentheses is deprecated at - line 4.
80 Use of qw(...) as parentheses is deprecated at - line 5.
[all …]
/dports/lang/v8/v8-9.6.180.12/test/fuzzer/
H A Dparser.cc27 std::vector<char> parentheses; in IsValidInput() local
39 parentheses.push_back(ptr[i]); in IsValidInput()
42 if (parentheses.empty() || parentheses.back() != '(') return false; in IsValidInput()
43 parentheses.pop_back(); in IsValidInput()
46 if (parentheses.empty() || parentheses.back() != '[') return false; in IsValidInput()
47 parentheses.pop_back(); in IsValidInput()
50 if (parentheses.empty() || parentheses.back() != '{') return false; in IsValidInput()
51 parentheses.pop_back(); in IsValidInput()
58 return parentheses.empty(); in IsValidInput()
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/parser/issues/
H A Dissue-35813-postfix-after-cast.stderr7 help: try surrounding the expression in parentheses
18 help: try surrounding the expression in parentheses
29 help: try surrounding the expression in parentheses
40 help: try surrounding the expression in parentheses
51 help: try surrounding the expression in parentheses
62 help: try surrounding the expression in parentheses
73 help: try surrounding the expression in parentheses
84 help: try surrounding the expression in parentheses
95 help: try surrounding the expression in parentheses
106 help: try surrounding the expression in parentheses
[all …]
/dports/textproc/texi2html/texi2html-5.0/test/sectionning/res_info/nodename_parentheses/
H A Dnodename_parentheses.info5 File: nodename_parentheses.info, Node: Top, Next: Node (with parentheses), Up: (dir)
12 * Node (with parentheses)::
17 File: nodename_parentheses.info, Node: Node (with parentheses), Next: Other node, Prev: Top, Up…
19 1 Section (nodename with parentheses)
25 File: nodename_parentheses.info, Node: Other node, Prev: Node (with parentheses), Up: Top
27 2 Section (nodename without parentheses)
30 Dummy link to *note Node (with parentheses)::.
43 Node: Node (with parentheses)290
/dports/multimedia/vlc/vlc-3.0.16/contrib/src/theora/
H A Dlibtheora-no-forceaddr.patch6 DEBUG="-g -Wall -Wno-parentheses -DDEBUG -D__NO_MATH_INLINES"
7 - CFLAGS="-Wall -Wno-parentheses -O3 -fforce-addr -fomit-frame-pointer -finline-func…
8 + CFLAGS="-Wall -Wno-parentheses -O3 -fomit-frame-pointer -finline-functions -funrol…
9 PROFILE="-Wall -Wno-parentheses -pg -g -O3 -fno-inline-functions -DDEBUG";;
17 DEBUG="-g -Wall -Wno-parentheses -DDEBUG -D__NO_MATH_INLINES"
18 - CFLAGS="-Wall -Wno-parentheses -O3 -fforce-addr -fomit-frame-pointer -finline-func…
19 + CFLAGS="-Wall -Wno-parentheses -O3 -fomit-frame-pointer -finline-functions -funrol…
20 PROFILE="-Wall -Wno-parentheses -pg -g -O3 -fno-inline-functions -DDEBUG";;
/dports/print/lilypond-devel/lilypond-2.23.5/input/regression/
H A Dparenthesize-singlenotes-chords-rests.ly10 note with staccato in parentheses; Measure 2: Chord and two rests in
11 parentheses (accent and markup not); Measure 3: note (no parentheses)
12 with @code{\p} in parentheses, with text in parentheses, and note in
13 parentheses with @code{\p} not in parentheses, rest (no parentheses);
27 % parentheses on single notes (with articulations), inside chord and articulation
/dports/print/lilypond/lilypond-2.22.1/input/regression/
H A Dparenthesize-singlenotes-chords-rests.ly5parentheses; Measure 2: Chord and two rests in parentheses (accent and markup not); Measure 3: not…
17 % parentheses on single notes (with articulations), inside chord and articulation
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/cpptools/
H A Dsemantichighlighter.cpp177 QPair<QTextBlock, Parentheses> parentheses; in onHighlighterResultAvailable() local
188 if (parentheses.first.isValid() && result.line - 1 > parentheses.first.blockNumber()) { in onHighlighterResultAvailable()
189 TextDocumentLayout::setParentheses(parentheses.first, parentheses.second); in onHighlighterResultAvailable()
190 parentheses = {}; in onHighlighterResultAvailable()
192 if (!parentheses.first.isValid()) { in onHighlighterResultAvailable()
194 parentheses.second = getClearedParentheses(parentheses.first); in onHighlighterResultAvailable()
204 parentheses.second.append(extraParen); in onHighlighterResultAvailable()
217 const auto it = std::lower_bound(parentheses.second.begin(), parentheses.second.end(), in onHighlighterResultAvailable()
219 parentheses.second.insert(it, paren); in onHighlighterResultAvailable()
221 if (parentheses.first.isValid()) in onHighlighterResultAvailable()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/impl-trait/
H A Dimpl-trait-plus-priority.stderr5 | ^^^^^^^^ help: use parentheses to disambiguate: `(impl A)`
11 | ^^^^^^^^^^ help: use parentheses to disambiguate: `(impl A + B)`
17 | ^^^^^^^^^ help: use parentheses to disambiguate: `(dyn A + B)`
23 | ^^^^^^^^^^^^^ perhaps you forgot parentheses?
29 | ^^^^^^^^ help: use parentheses to disambiguate: `(impl A)`
35 | ^^^^^^^^^^ help: use parentheses to disambiguate: `(impl A + B)`
41 | ^^^^^^^^^ help: use parentheses to disambiguate: `(dyn A + B)`
47 | ^^^^^^^^ help: use parentheses to disambiguate: `(impl A)`
53 | ^^^^^^^^^^ help: use parentheses to disambiguate: `(impl A + B)`
59 | ^^^^^^^^^ help: use parentheses to disambiguate: `(dyn A + B)`
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/try-block/
H A Dtry-block-unused-delims.stderr1 warning: unnecessary parentheses around function argument
12 help: remove these parentheses
35 warning: unnecessary parentheses around `match` scrutinee expression
41 help: remove these parentheses
47 warning: unnecessary parentheses around `let` scrutinee expression
53 help: remove these parentheses
59 warning: unnecessary parentheses around `match` scrutinee expression
65 help: remove these parentheses
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Ddouble_parens.stderr1 error: consider removing unnecessary double parentheses
9 error: consider removing unnecessary double parentheses
15 error: consider removing unnecessary double parentheses
21 error: consider removing unnecessary double parentheses
27 error: consider removing unnecessary double parentheses
33 error: consider removing unnecessary double parentheses
/dports/math/openfst/openfst-1.8.1/src/lib/
H A Dweight.cc32 std::pair<char, char> parentheses) in CompositeWeightIO() argument
34 open_paren_(parentheses.first), in CompositeWeightIO()
35 close_paren_(parentheses.second), in CompositeWeightIO()
78 std::pair<char, char> parentheses) in CompositeWeightWriter() argument
79 : internal::CompositeWeightIO(separator, parentheses), ostrm_(ostrm) { in CompositeWeightWriter()
102 std::pair<char, char> parentheses) in CompositeWeightReader() argument
103 : internal::CompositeWeightIO(separator, parentheses), istrm_(istrm) { in CompositeWeightReader()
/dports/lang/php73/php-7.3.33/ext/pcre/tests/
H A Dpreg_split_basic.phpt9 $string = 'this is a_list: value1, Test__, string; Hello, world!_(parentheses)';
12 …|PREG_SPLIT_NO_EMPTY)); //all text before (parentheses) is put into first element, ( into second, …
32 string(11) "parentheses"
38 string(28) " Hello, world!_(parentheses)"
46 string(11) "parentheses"
52 string(67) "this is a_list: value1, Test__, string; Hello, world!_(parentheses)"
/dports/www/mod_php81/php-8.1.1/ext/pcre/tests/
H A Dpreg_split_basic.phpt8 $string = 'this is a_list: value1, Test__, string; Hello, world!_(parentheses)';
11 …|PREG_SPLIT_NO_EMPTY)); //all text before (parentheses) is put into first element, ( into second, …
31 string(11) "parentheses"
37 string(28) " Hello, world!_(parentheses)"
45 string(11) "parentheses"
51 string(67) "this is a_list: value1, Test__, string; Hello, world!_(parentheses)"
/dports/lang/php80/php-8.0.15/ext/pcre/tests/
H A Dpreg_split_basic.phpt8 $string = 'this is a_list: value1, Test__, string; Hello, world!_(parentheses)';
11 …|PREG_SPLIT_NO_EMPTY)); //all text before (parentheses) is put into first element, ( into second, …
31 string(11) "parentheses"
37 string(28) " Hello, world!_(parentheses)"
45 string(11) "parentheses"
51 string(67) "this is a_list: value1, Test__, string; Hello, world!_(parentheses)"
/dports/lang/php81/php-8.1.1/ext/pcre/tests/
H A Dpreg_split_basic.phpt8 $string = 'this is a_list: value1, Test__, string; Hello, world!_(parentheses)';
11 …|PREG_SPLIT_NO_EMPTY)); //all text before (parentheses) is put into first element, ( into second, …
31 string(11) "parentheses"
37 string(28) " Hello, world!_(parentheses)"
45 string(11) "parentheses"
51 string(67) "this is a_list: value1, Test__, string; Hello, world!_(parentheses)"

12345678910>>...274