Lines Matching refs:_body_int2
219 String _body_int2 = ASTFunDecl.pop(); in code() local
223 case PLUS: ASTFunDecl.push(buf, _body_int + " + " + _body_int2); break; in code()
224 case MINUS: ASTFunDecl.push(buf, _body_int + " - " + _body_int2); break; in code()
225 case MULT: ASTFunDecl.push(buf, _body_int + " * " + _body_int2); break; in code()
226 case DIV: ASTFunDecl.push(buf, _body_int + " / " + _body_int2); break; in code()
229 toBool(_body_int2))); break; in code()
231 toBool(_body_int2))); break; in code()
233 case EQ: ASTFunDecl.push(buf, toInt(_body_int + " == " + _body_int2)); in code()
235 case LEQ: ASTFunDecl.push(buf, toInt(_body_int + " <= " + _body_int2)); in code()
237 case GEQ: ASTFunDecl.push(buf, toInt(_body_int + " >= " + _body_int2)); in code()
239 case NEQ: ASTFunDecl.push(buf, toInt(_body_int + " != " + _body_int2)); in code()
241 case LT: ASTFunDecl.push(buf, toInt(_body_int + " < " + _body_int2)); in code()
243 case GT: ASTFunDecl.push(buf, toInt(_body_int + " > " + _body_int2)); in code()