Home
last modified time | relevance | path

Searched full:warning (Results 1 – 25 of 7244) sorted by relevance

12345678910>>...290

/third_party/glslang/Test/
Dhlsl.type.type.conversion.valid.frag46 float var1 = float2(zeros2);// warning X3206: implicit truncation of vector type
47 float var2 = float3(zeros3);// warning X3206: implicit truncation of vector type
48 float var3 = float4(zeros4);// warning X3206: implicit truncation of vector type
49 float var4 = float2x2(zeros4);// warning X3206: implicit truncation of vector type
50 float var5 = float2x3(zeros6);// warning X3206: implicit truncation of vector type
51 float var6 = float2x4(zeros8);// warning X3206: implicit truncation of vector type
52 float var7 = float3x2(zeros6);// warning X3206: implicit truncation of vector type
53 float var8 = float3x3(zeros9);// warning X3206: implicit truncation of vector type
54 float var9 = float3x4(zeros12);// warning X3206: implicit truncation of vector type
55 float var10 = float4x2(zeros8);// warning X3206: implicit truncation of vector type
[all …]
/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_nopfuncs.c46 warning(const char *name) in warning() function
55 warning(__func__); in nop_glBindMultiTextureEXT()
61 warning(__func__); in nop_glColor3hNV()
67 warning(__func__); in nop_glColor3hvNV()
73 warning(__func__); in nop_glColor4hNV()
79 warning(__func__); in nop_glColor4hvNV()
85 warning(__func__); in nop_glDisableClientStateIndexedEXT()
91 warning(__func__); in nop_glEnableClientStateIndexedEXT()
97 warning(__func__); in nop_glFogCoordhNV()
103 warning(__func__); in nop_glFogCoordhvNV()
[all …]
/third_party/rust/rust/tests/ui/lint/unused/
Dmust-use-ops.rs1 // Issue #50124 - Test warning for unused operator expressions
18 val == 1; //~ WARNING unused comparison in main()
19 val < 1; //~ WARNING unused comparison in main()
20 val <= 1; //~ WARNING unused comparison in main()
21 val != 1; //~ WARNING unused comparison in main()
22 val >= 1; //~ WARNING unused comparison in main()
23 val > 1; //~ WARNING unused comparison in main()
26 val + 2; //~ WARNING unused arithmetic operation in main()
27 val - 2; //~ WARNING unused arithmetic operation in main()
28 val / 2; //~ WARNING unused arithmetic operation in main()
[all …]
Dissue-47390-unused-variable-in-struct-pattern.rs26 let i_think_continually = 2; //~ WARNING unused variable: `i_think_continually` in main()
34 //~^ WARNING unused variable: `mut_unused_var` in main()
35 //~| WARNING variable does not need to be mutable in main()
38 //~^ WARNING unused variable: `var` in main()
39 //~| WARNING unused variable: `unused_var` in main()
40 //~| WARNING variable does not need to be mutable in main()
41 // NOTE: `var` comes after `unused_var` lexicographically yet the warning in main()
45 if let SoulHistory { corridors_of_light, //~ WARNING unused variable: `corridors_of_light` in main()
46 mut hours_are_suns, //~ WARNING `hours_are_suns` is assigned to, but in main()
48 hours_are_suns = false; //~ WARNING unused_assignments in main()
[all …]
/third_party/rust/rust/tests/ui/check-cfg/
Dmix.rs12 //~^ WARNING unexpected `cfg` condition name
16 //~^ WARNING unexpected `cfg` condition value
23 //~^ WARNING unexpected `cfg` condition value
27 //~^ WARNING unexpected `cfg` condition value
31 //~^ WARNING unexpected `cfg` condition name
40 //~^ WARNING unexpected `cfg` condition name in test_cfg_macro()
43 //~^ WARNING unexpected `cfg` condition value in test_cfg_macro()
45 //~^ WARNING unexpected `cfg` condition value in test_cfg_macro()
47 //~^ WARNING unexpected `cfg` condition name in test_cfg_macro()
49 //~^ WARNING unexpected `cfg` condition name in test_cfg_macro()
[all …]
Dmix.stderr1 warning: unexpected `cfg` condition name
9 warning: unexpected `cfg` condition value
17 warning: unexpected `cfg` condition value
25 warning: unexpected `cfg` condition value
33 warning: unexpected `cfg` condition name
39 warning: unexpected condition value `bar` for condition name `feature`
43 warning: unexpected `unknown_name` as condition name
47 warning: unexpected `cfg` condition name
53 warning: unexpected `cfg` condition value
61 warning: unexpected `cfg` condition value
[all …]
/third_party/rust/rust/tests/rustdoc-ui/intra-doc/
Dwarning.stderr1 warning: unresolved link to `Foo::baz`
2 --> $DIR/warning.rs:3:23
9 warning: unresolved link to `Bar::foo`
10 --> $DIR/warning.rs:3:35
15 warning: unresolved link to `Uniooon::X`
16 --> $DIR/warning.rs:6:13
21 warning: unresolved link to `Qux::Z`
22 --> $DIR/warning.rs:6:30
27 warning: unresolved link to `Uniooon::X`
28 --> $DIR/warning.rs:10:14
[all …]
Dwarning.rs4 //~^ WARNING `Foo::baz`
5 //~| WARNING `Bar::foo`
7 //~^ WARNING `Uniooon::X`
8 //~| WARNING `Qux::Z`
11 //~^ WARNING `Uniooon::X`
12 //~| WARNING `Qux::Z`
15 //~^ WARNING `Qux:Y`
21 /// bar [BarA] bar //~ WARNING `BarA`
27 * bar [BarB] bar //~ WARNING `BarB`
34 bar [BarC] bar //~ WARNING `BarC`
[all …]
/third_party/rust/rust/tests/ui/macros/
Dissue-99265.fixed6 //~^ WARNING named argument `a` is not used by name [named_arguments_used_positionally]
10 //~^ WARNING named argument `a` is not used by name [named_arguments_used_positionally]
11 //~| WARNING named argument `b` is not used by name [named_arguments_used_positionally]
12 //~| WARNING named argument `c` is not used by name [named_arguments_used_positionally]
13 //~| WARNING named argument `d` is not used by name [named_arguments_used_positionally]
20 //~^ WARNING named argument `width` is not used by name [named_arguments_used_positionally
24 //~^ WARNING named argument `width` is not used by name [named_arguments_used_positionally
25 //~| WARNING named argument `precision` is not used by name [named_arguments_used_positionally]
26 //~| WARNING named argument `f` is not used by name [named_arguments_used_positionally]
32 //~^ WARNING named argument `width` is not used by name [named_arguments_used_positionally
[all …]
Dissue-99265.rs6 //~^ WARNING named argument `a` is not used by name [named_arguments_used_positionally] in main()
10 //~^ WARNING named argument `a` is not used by name [named_arguments_used_positionally] in main()
11 //~| WARNING named argument `b` is not used by name [named_arguments_used_positionally] in main()
12 //~| WARNING named argument `c` is not used by name [named_arguments_used_positionally] in main()
13 //~| WARNING named argument `d` is not used by name [named_arguments_used_positionally] in main()
20 //~^ WARNING named argument `width` is not used by name [named_arguments_used_positionally in main()
24 //~^ WARNING named argument `width` is not used by name [named_arguments_used_positionally in main()
25 //~| WARNING named argument `precision` is not used by name [named_arguments_used_positionally] in main()
26 //~| WARNING named argument `f` is not used by name [named_arguments_used_positionally] in main()
32 //~^ WARNING named argument `width` is not used by name [named_arguments_used_positionally in main()
[all …]
/third_party/curl/lib/
Dwarnless.c72 # pragma warning(push) in curlx_ultous()
73 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_ultous()
80 # pragma warning(pop) in curlx_ultous()
91 # pragma warning(push) in curlx_ultouc()
92 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_ultouc()
99 # pragma warning(pop) in curlx_ultouc()
110 # pragma warning(push) in curlx_uztoso()
111 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_uztoso()
113 # pragma warning(push) in curlx_uztoso()
114 # pragma warning(disable:4310) /* cast truncates constant value */ in curlx_uztoso()
[all …]
/third_party/rust/rust/tests/ui/iterators/
Dinto-iter-on-arrays-lint.rs12 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter` in main()
13 //~| WARNING this changes meaning in main()
15 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter` in main()
16 //~| WARNING this changes meaning in main()
18 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter` in main()
19 //~| WARNING this changes meaning in main()
21 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter` in main()
22 //~| WARNING this changes meaning in main()
25 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter` in main()
26 //~| WARNING this changes meaning in main()
[all …]
Dinto-iter-on-arrays-lint.fixed12 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter`
13 //~| WARNING this changes meaning
15 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter`
16 //~| WARNING this changes meaning
18 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter`
19 //~| WARNING this changes meaning
21 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter`
22 //~| WARNING this changes meaning
25 //~^ WARNING this method call resolves to `<&[T; N] as IntoIterator>::into_iter`
26 //~| WARNING this changes meaning
[all …]
/third_party/rust/rust/tests/ui/feature-gates/
Dissue-43106-gating-of-builtin-attrs.stderr1 warning: `#[macro_escape]` is a deprecated synonym for `#[macro_use]`
9 warning: `#[macro_escape]` is a deprecated synonym for `#[macro_use]`
15 warning: unknown lint: `x5400`
27 warning: unknown lint: `x5300`
33 warning: unknown lint: `x5200`
39 warning: unknown lint: `x5100`
45 warning: unknown lint: `x5400`
51 warning: unknown lint: `x5400`
57 warning: unknown lint: `x5400`
63 warning: unknown lint: `x5400`
[all …]
/third_party/rust/rust/tests/ui/lint/
Dlint-stability-deprecated.stderr1 warning: use of deprecated function `lint_stability::deprecated`: text
13 warning: use of deprecated method `lint_stability::Trait::trait_deprecated`: text
19 warning: use of deprecated method `lint_stability::Trait::trait_deprecated`: text
25 warning: use of deprecated function `lint_stability::deprecated_text`: text
31 warning: use of deprecated method `lint_stability::Trait::trait_deprecated_text`: text
37 warning: use of deprecated method `lint_stability::Trait::trait_deprecated_text`: text
43 warning: use of deprecated function `lint_stability::deprecated_unstable`: text
49 warning: use of deprecated method `lint_stability::Trait::trait_deprecated_unstable`: text
55 warning: use of deprecated method `lint_stability::Trait::trait_deprecated_unstable`: text
61 warning: use of deprecated function `lint_stability::deprecated_unstable_text`: text
[all …]
Dfunction-item-references.rs45 //~^ WARNING taking a reference to a function item does not give a function pointer in _call_pointer_fmt()
82 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
84 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
86 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
89 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
91 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
93 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
95 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
98 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
100 //~^ WARNING taking a reference to a function item does not give a function pointer in main()
[all …]
Dlint-exceeding-bitshifts.opt_with_overflow_checks.stderr1 warning: this arithmetic operation will overflow
13 warning: this arithmetic operation will overflow
19 warning: this arithmetic operation will overflow
25 warning: this arithmetic operation will overflow
31 warning: this arithmetic operation will overflow
37 warning: this arithmetic operation will overflow
43 warning: this arithmetic operation will overflow
49 warning: this arithmetic operation will overflow
55 warning: this arithmetic operation will overflow
61 warning: this arithmetic operation will overflow
[all …]
Dlint-exceeding-bitshifts.noopt.stderr1 warning: this arithmetic operation will overflow
13 warning: this arithmetic operation will overflow
19 warning: this arithmetic operation will overflow
25 warning: this arithmetic operation will overflow
31 warning: this arithmetic operation will overflow
37 warning: this arithmetic operation will overflow
43 warning: this arithmetic operation will overflow
49 warning: this arithmetic operation will overflow
55 warning: this arithmetic operation will overflow
61 warning: this arithmetic operation will overflow
[all …]
/third_party/rust/rust/src/tools/rustfmt/tests/writemode/target/
Dcheckstyle.xml2warning" message="Should be `fn foo_expr() { 1 }`" /><error line="7" severity="warning" message="S…
/third_party/rust/rust/src/tools/clippy/tests/ui/
Dmanual_string_new.rs16 let _ = "no warning".to_string(); in main()
19 let _ = "no warning".to_owned(); in main()
22 let _: String = "no warning".into(); in main()
24 let _: SomeOtherStruct = "no warning".into(); in main()
25 let _: SomeOtherStruct = "".into(); // No warning too. We are not converting into String. in main()
30 let _ = String::from("no warning"); in main()
31 let _ = SomeOtherStruct::from("no warning"); in main()
32 let _ = SomeOtherStruct::from(""); // Again: no warning. in main()
35 let _ = String::try_from("no warning").unwrap(); in main()
36 let _ = String::try_from("no warning").expect("this should not warn"); in main()
[all …]
Dmanual_string_new.fixed16 let _ = "no warning".to_string();
19 let _ = "no warning".to_owned();
22 let _: String = "no warning".into();
24 let _: SomeOtherStruct = "no warning".into();
25 let _: SomeOtherStruct = "".into(); // No warning too. We are not converting into String.
30 let _ = String::from("no warning");
31 let _ = SomeOtherStruct::from("no warning");
32 let _ = SomeOtherStruct::from(""); // Again: no warning.
35 let _ = String::try_from("no warning").unwrap();
36 let _ = String::try_from("no warning").expect("this should not warn");
[all …]
Dempty_line_after_doc_comments.rs14 //! This doc comment should *NOT* produce a warning
21 /// This should produce a warning
25 // This should *NOT* produce a warning
31 // This should *NOT* produce a warning
37 // This should *NOT* produce a warning
42 // This should *NOT* produce a warning
49 // This should *NOT* produce a warning
57 // This should *NOT* produce a warning
65 // This should *NOT* produce a warning
71 /// This doc comment should produce a warning
[all …]
/third_party/python/Doc/library/
Dwarnings.rst1 :mod:`warnings` --- Warning control
5 :synopsis: Issue warning messages and control their disposition.
13 Warning messages are typically issued in situations where it is useful to alert
16 might want to issue a warning when a program uses an obsolete module.
22 Warning messages are normally written to :data:`sys.stderr`, but their disposition
24 exceptions. The disposition of warnings can vary based on the :ref:`warning category
25 <warning-categories>`, the text of the warning message, and the source location where it
26 is issued. Repetitions of a particular warning for the same source location are
29 There are two stages in warning control: first, each time a warning is issued, a
33 The determination whether to issue a warning message is controlled by the
[all …]
/third_party/rust/rust/tests/ui/liveness/
Dliveness-upvars.stderr1 warning: value assigned to `last` is never read
15 warning: unused variable: `last`
24 warning: unused variable: `sum`
32 warning: value captured by `c` is never read
40 warning: value captured by `c` is never read
48 warning: unused variable: `c`
56 warning: value assigned to `c` is never read
64 warning: unused variable: `c`
72 warning: value assigned to `c` is never read
80 warning: value assigned to `c` is never read
[all …]
/third_party/curl/tests/data/
Dtest118589 ./%LOGDIR/code1185.c:4:82: warning: Longer than 79 columns (LONGLINE)
94 ./%LOGDIR/code1185.c:7:13: warning: func with space (SPACEBEFOREPAREN)
97 ./%LOGDIR/code1185.c:8:14: warning: space after open parenthesis (SPACEAFTERPAREN)
100 ./%LOGDIR/code1185.c:9:16: warning: space before close parenthesis (SPACEBEFORECLOSE)
103 ./%LOGDIR/code1185.c:10:11: warning: space before comma (SPACEBEFORECOMMA)
106 ./%LOGDIR/code1185.c:14:9: warning: return without space before paren (RETURNNOSPACE)
109 ./%LOGDIR/code1185.c:16:11: warning: comma without following space (COMMANOSPACE)
112 ./%LOGDIR/code1185.c:18:12: warning: wrongly placed open brace (BRACEPOS)
115 ./%LOGDIR/code1185.c:20:1: warning: else after closing brace on same line (BRACEELSE)
118 ./%LOGDIR/code1185.c:24:11: warning: missing space after close paren (PARENBRACE)
[all …]

12345678910>>...290