Lines Matching defs:result
88 Vector<T, Size> result;
90 result[i] = leftShift(value[i], amount[i]);
91 return result;
96 Vector<T, Size> result;
98 result[i] = rightShift(value[i], amount[i]);
99 return result;
276 string result;
278 result += (i > 0 ? delim : "") + elems[i];
279 return result;
530 SIDE_EFFECT_OPERATOR // Test the side-effect (as opposed to the result) of a side-effect operator.
1616 // Pre/post incr/decr result cases.
1635 for (int binaryOperatorType = 0; binaryOperatorType <= 2; binaryOperatorType++) // 0: normal op test, 1: assignment op side-effect test, 2: assignment op result test