Searched defs:costInline (Results 26 - 39 of 39) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DThrowStatement.java103 public int costInline(int thresh, Environment env, Context ctx) { method in class:ThrowStatement
104 return 1 + expr.costInline(thresh, env, ctx);
H A DTryStatement.java226 public int costInline(int thresh, Environment env, Context ctx){ method in class:TryStatement
H A DUnaryExpression.java179 public int costInline(int thresh, Environment env, Context ctx) { method in class:UnaryExpression
180 return 1 + right.costInline(thresh, env, ctx);
H A DVarDeclarationStatement.java222 public int costInline(int thresh, Environment env, Context ctx) { method in class:VarDeclarationStatement
226 return (expr != null) ? expr.costInline(thresh, env, ctx) : 0;
H A DWhileStatement.java91 public int costInline(int thresh, Environment env, Context ctx) { method in class:WhileStatement
92 return 1 + cond.costInline(thresh, env, ctx)
93 + ((body != null) ? body.costInline(thresh, env, ctx) : 0);
H A DArrayAccessExpression.java198 public int costInline(int thresh, Environment env, Context ctx) { method in class:ArrayAccessExpression
199 // costInline() should not end up being called when the index is
203 return 1 + right.costInline(thresh, env, ctx)
204 + index.costInline(thresh, env, ctx);
H A DAssignOpExpression.java196 public int costInline(int thresh, Environment env, Context ctx) { method in class:AssignOpExpression
200 : (3 + super.costInline(thresh, env, ctx));
211 : right.costInline(thresh, env, ctx) +
212 left.costInline(thresh, env, ctx) + 4;
217 return right.costInline(thresh, env, ctx) +
218 updater.costInline(thresh, env, ctx, true) + 1;
H A DBinaryExpression.java198 public int costInline(int thresh, Environment env, Context ctx) { method in class:BinaryExpression
199 return 1 + ((left != null) ? left.costInline(thresh, env, ctx) : 0) +
200 ((right != null) ? right.costInline(thresh, env, ctx) : 0);
H A DMethodExpression.java712 (s.costInline(MAXINLINECOST, env, ctx) < MAXINLINECOST)) {
762 (s.costInline(MAXINLINECOST, env, ctx) < MAXINLINECOST)) {
778 public int costInline(int thresh, Environment env, Context ctx) { method in class:MethodExpression
780 return implementation.costInline(thresh, env, ctx);
787 return super.costInline(thresh, env, ctx);
H A DNewInstanceExpression.java444 || (s.costInline(MAXINLINECOST, env, ctx) < MAXINLINECOST)) {
459 public int costInline(int thresh, Environment env, Context ctx) { method in class:NewInstanceExpression
464 return 2 + super.costInline(thresh, env, ctx);
473 return 2 + super.costInline(thresh, env, ctx);
H A DFieldExpression.java1199 public int costInline(int thresh, Environment env, Context ctx) { method in class:FieldExpression
1201 return implementation.costInline(thresh, env, ctx);
1204 : right.costInline(thresh, env, ctx));
1218 return 3 + right.costInline(thresh, env, ctx);
H A DIdentifierExpression.java441 public int costInline(int thresh, Environment env, Context ctx) { method in class:IdentifierExpression
443 return implementation.costInline(thresh, env, ctx);
444 return super.costInline(thresh, env, ctx);
H A DStatement.java52 * An empty statement. Its costInline is infinite.
320 public int costInline(int thresh, Environment env, Context ctx) { method in class:Statement
H A DExpression.java414 public int costInline(int thresh, Environment env, Context ctx) { method in class:Expression

Completed in 49 milliseconds

12