Searched defs:copyInline (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DNaryExpression.java51 public Expression copyInline(Context ctx) { method in class:NaryExpression
54 e.right = right.copyInline(ctx);
59 e.args[i] = args[i].copyInline(ctx);
H A DAssignExpression.java92 public Expression copyInline(Context ctx) { method in class:AssignExpression
94 return implementation.copyInline(ctx);
96 e.left = left.copyInline(ctx);
97 e.right = right.copyInline(ctx);
99 e.updater = updater.copyInline(ctx);
H A DInlineMethodExpression.java69 // When this node was constructed, "copyInline" walked the body
80 public Expression copyInline(Context ctx) { method in class:InlineMethodExpression
83 e.body = body.copyInline(ctx, true);
H A DInlineNewInstanceExpression.java74 public Expression copyInline(Context ctx) { method in class:InlineNewInstanceExpression
76 e.body = body.copyInline(ctx, true);
H A DInlineReturnStatement.java75 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:InlineReturnStatement
78 s.expr = expr.copyInline(ctx);
H A DNewArrayExpression.java85 public Expression copyInline(Context ctx) { method in class:NewArrayExpression
86 NewArrayExpression e = (NewArrayExpression)super.copyInline(ctx);
88 e.init = init.copyInline(ctx);
H A DBinaryAssignExpression.java90 public Expression copyInline(Context ctx) { method in class:BinaryAssignExpression
92 return implementation.copyInline(ctx);
93 return super.copyInline(ctx);
H A DCatchStatement.java120 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:CatchStatement
123 s.body = body.copyInline(ctx, valNeeded);
126 s.field = field.copyInline(ctx);
H A DCompoundStatement.java144 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:CompoundStatement
148 s.args[i] = args[i].copyInline(ctx, valNeeded);
H A DConditionalExpression.java178 public Expression copyInline(Context ctx) { method in class:ConditionalExpression
180 e.cond = cond.copyInline(ctx);
181 e.left = left.copyInline(ctx);
183 // If copyInline() is called after inlining is complete,
185 e.right = (right == null) ? null : right.copyInline(ctx);
H A DDeclarationStatement.java92 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:DeclarationStatement
95 s.type = type.copyInline(ctx);
100 s.args[i] = args[i].copyInline(ctx, valNeeded);
H A DDoStatement.java90 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:DoStatement
92 s.cond = cond.copyInline(ctx);
94 s.body = body.copyInline(ctx, valNeeded);
H A DExpressionStatement.java72 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:ExpressionStatement
74 s.expr = expr.copyInline(ctx);
H A DFieldUpdater.java105 public FieldUpdater copyInline(Context ctx) { method in class:FieldUpdater
106 return new FieldUpdater(where, field, base.copyInline(ctx), getter, setter);
H A DFinallyStatement.java222 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:FinallyStatement
225 s.tryTemp = tryTemp.copyInline(ctx);
228 s.init = init.copyInline(ctx, valNeeded);
231 s.body = body.copyInline(ctx, valNeeded);
234 s.finalbody = finalbody.copyInline(ctx, valNeeded);
H A DForStatement.java119 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:ForStatement
122 s.init = init.copyInline(ctx, valNeeded);
125 s.cond = cond.copyInline(ctx);
128 s.body = body.copyInline(ctx, valNeeded);
131 s.inc = inc.copyInline(ctx);
H A DIfStatement.java141 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:IfStatement
143 s.cond = cond.copyInline(ctx);
145 s.ifTrue = ifTrue.copyInline(ctx, valNeeded);
148 s.ifFalse = ifFalse.copyInline(ctx, valNeeded);
H A DReturnStatement.java143 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:ReturnStatement
144 Expression e = (expr != null) ? expr.copyInline(ctx) : null;
H A DSwitchStatement.java160 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:SwitchStatement
162 s.expr = expr.copyInline(ctx);
166 s.args[i] = args[i].copyInline(ctx, valNeeded);
H A DSynchronizedStatement.java86 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:SynchronizedStatement
88 s.expr = expr.copyInline(ctx);
90 s.body = body.copyInline(ctx, valNeeded);
H A DThisExpression.java140 e = e.copyInline(ctx);
151 public Expression copyInline(Context ctx) { method in class:ThisExpression
153 return implementation.copyInline(ctx);
163 e.outerArg = outerArg.copyInline(ctx);
H A DThrowStatement.java94 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:ThrowStatement
96 s.expr = expr.copyInline(ctx);
H A DTryStatement.java209 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:TryStatement
212 s.body = body.copyInline(ctx, valNeeded);
217 s.args[i] = args[i].copyInline(ctx, valNeeded);
H A DUnaryExpression.java168 public Expression copyInline(Context ctx) { method in class:UnaryExpression
171 e.right = right.copyInline(ctx);
H A DVarDeclarationStatement.java211 public Statement copyInline(Context ctx, boolean valNeeded) { method in class:VarDeclarationStatement
214 s.expr = expr.copyInline(ctx);

Completed in 42 milliseconds

12