Home | History | Annotate | Download | only in src

Lines Matching refs:ret_val

172     int ret_val = wholeSwitchDead(10);
173 if (ret_val != 100) {
174 throw new Error("Incorrect return value from wholeSwitchDead:" + ret_val);
177 ret_val = constantSwitch_InRange();
178 if (ret_val != 7) {
179 throw new Error("Incorrect return value from constantSwitch_InRange:" + ret_val);
182 ret_val = constantSwitch_AboveRange();
183 if (ret_val != 15) {
184 throw new Error("Incorrect return value from constantSwitch_AboveRange:" + ret_val);
187 ret_val = constantSwitch_BelowRange();
188 if (ret_val != -5) {
189 throw new Error("Incorrect return value from constantSwitch_BelowRange:" + ret_val);