Home
last modified time | relevance | path

Searched refs:_body_int (Results 1 – 1 of 1) sorted by relevance

/external/apache-commons-bcel/src/examples/Mini/
DASTExpr.java220 String _body_int = 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()
228 case AND: ASTFunDecl.push(buf, toInt(toBool(_body_int) + " && " + in code()
230 case OR: ASTFunDecl.push(buf, toInt(toBool(_body_int) + " || " + 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()
[all …]