Lines Matching full:from
8 …y0 = 1.2222F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1… in test0()
9 … = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1… in test0()
10 …((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1… in test0()
11 … y3 = 12E-1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1… in test0()
12 …y4 = 1.23E1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1… in test0()
14 … y5 = 1.2222; // expected-warning {{implicit conversion from 'double' to 'int' changes value from … in test0()
15 …t y6 = 12E-1; // expected-warning {{implicit conversion from 'double' to 'int' changes value from … in test0()
16 … y7 = 1.23E1; // expected-warning {{implicit conversion from 'double' to 'int' changes value from … in test0()
17 …8 = (1.23E1); // expected-warning {{implicit conversion from 'double' to 'int' changes value from … in test0()
20 …y8 = 2.22F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 2.2… in test0()
23 …int y9(1.23F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from … in test0()
26 …foo(1.2F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2 … in test0()
28 …y10 = -1.2F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from -… in test0()
45 …l b1 = 0.99f; // expected-warning {{implicit conversion from 'float' to 'bool' changes value from … in test1()
46 …l b2 = 0.99; // expected-warning {{implicit conversion from 'double' to 'bool' changes value from … in test1()
53 …short s = 32768.0; // expected-warning{{implicit conversion of out of range value from 'double' to… in test1()
54 …unsigned short us = 65536.0; // expected-warning{{implicit conversion of out of range value from '… in test1()
56 …short s2 = -32769.0; // expected-warning{{implicit conversion of out of range value from 'double' … in test1()
57 … -65537.0; // expected-warning{{implicit conversion of out of range value from 'double' to 'unsign… in test1()
60 …147483647.5; } // expected-warning{{implicit conversion from 'double' to 'int' changes value from … in a()
61 …rn -.5; } // expected-warning{{implicit conversion from 'double' to 'unsigned int' changes value f… in b()