Lines Matching refs:noContraction
11 result = a * b + c * d; // c * d, a * b and rvalue1 + rvalue2 should be 'noContraction'.
19 result = a = b + 4; // b + 4 should be 'noContraction'.
26 b = a + b; // a + b should be 'noContraction'.
27 result = double(b); // convert operation should not be 'noContraction'.
37 r1 += 3.12 + b + i; // 'noContration', this make i++ also 'noContraction'
40 a += 1; // a + 1 should not be 'noContraction'.
52 result += float(x) + float(y); // x + y should be 'noContraction' also result + rvalue.
55 // a's dereference + 2 should be 'noContraction'.
57 // result + 1 and 3 - rvalue should be 'noContraction'.
67 result += 3.12 + b; // result + 3.12 should be 'noContraction'.
78 b = b + c; // b + c should be decorated with 'noContraction'
86 return a + b; // the ADD operation should be 'noContraction'
92 float result = a + b; // the ADD operation should be 'noContraction'
99 return a - b; // Not noContraction
105 result = (a + c) * b; // should be noContraction