Home | History | Annotate | Download | only in src

Lines Matching refs:result

19     int result = 0;
23 result += array[i];
29 result += array[j];
32 return result;
36 int result = 0;
38 result += array[i];
40 result += array[j];
44 result += array[0];
45 result += array[1];
46 result += array[2];
49 return result;
54 int result = foo(1, a);
55 if (result != 11) {
56 throw new Error("Got " + result + ", expected " + 11);
59 result = bar(1, a);
60 if (result != 35) {
61 throw new Error("Got " + result + ", expected " + 35);