Lines Matching refs:copy

14  * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
34 * Creates a copy of a tree, using a given TreeMaker.
50 public <T extends JCTree> T copy(T tree) {
51 return copy(tree, null);
55 public <T extends JCTree> T copy(T tree, P p) {
61 public <T extends JCTree> List<T> copy(List<T> trees) {
62 return copy(trees, null);
65 public <T extends JCTree> List<T> copy(List<T> trees, P p) {
70 lb.append(copy(tree, p));
76 JCTree annotationType = copy(t.annotationType, p);
77 List<JCExpression> args = copy(t.args, p);
83 JCExpression cond = copy(t.cond, p);
84 JCExpression detail = copy(t.detail, p);
90 JCExpression lhs = copy(t.lhs, p);
91 JCExpression rhs = copy(t.rhs, p);
97 JCTree lhs = copy(t.lhs, p);
98 JCTree rhs = copy(t.rhs, p);
104 JCExpression lhs = copy(t.lhs, p);
105 JCExpression rhs = copy(t.rhs, p);
111 List<JCStatement> stats = copy(t.stats, p);
122 JCExpression pat = copy(t.pat, p);
123 List<JCStatement> stats = copy(t.stats, p);
129 JCVariableDecl param = copy(t.param, p);
130 JCBlock body = copy(t.body, p);
136 JCModifiers mods = copy(t.mods, p);
137 List<JCTypeParameter> typarams = copy(t.typarams, p);
138 JCExpression extending = copy(t.extending, p);
139 List<JCExpression> implementing = copy(t.implementing, p);
140 List<JCTree> defs = copy(t.defs, p);
146 JCExpression cond = copy(t.cond, p);
147 JCExpression truepart = copy(t.truepart, p);
148 JCExpression falsepart = copy(t.falsepart, p);
159 JCStatement body = copy(t.body, p);
160 JCExpression cond = copy(t.cond, p);
166 List<? extends JCTree> errs = copy(t.errs, p);
172 JCExpression expr = copy(t.expr, p);
178 JCVariableDecl var = copy(t.var, p);
179 JCExpression expr = copy(t.expr, p);
180 JCStatement body = copy(t.body, p);
186 List<JCStatement> init = copy(t.init, p);
187 JCExpression cond = copy(t.cond, p);
188 List<JCExpressionStatement> step = copy(t.step, p);
189 JCStatement body = copy(t.body, p);
200 JCExpression cond = copy(t.cond, p);
201 JCStatement thenpart = copy(t.thenpart, p);
202 JCStatement elsepart = copy(t.elsepart, p);
208 JCTree qualid = copy(t.qualid, p);
214 JCExpression indexed = copy(t.indexed, p);
215 JCExpression index = copy(t.index, p);
221 JCStatement body = copy(t.body, p);
232 JCModifiers mods = copy(t.mods, p);
233 JCExpression restype = copy(t.restype, p);
234 List<JCTypeParameter> typarams = copy(t.typarams, p);
235 List<JCVariableDecl> params = copy(t.params, p);
236 List<JCExpression> thrown = copy(t.thrown, p);
237 JCBlock body = copy(t.body, p);
238 JCExpression defaultValue = copy(t.defaultValue, p);
244 List<JCExpression> typeargs = copy(t.typeargs, p);
245 JCExpression meth = copy(t.meth, p);
246 List<JCExpression> args = copy(t.args, p);
252 List<JCAnnotation> annotations = copy(t.annotations, p);
258 JCExpression elemtype = copy(t.elemtype, p);
259 List<JCExpression> dims = copy(t.dims, p);
260 List<JCExpression> elems = copy(t.elems, p);
266 JCExpression encl = copy(t.encl, p);
267 List<JCExpression> typeargs = copy(t.typeargs, p);
268 JCExpression clazz = copy(t.clazz, p);
269 List<JCExpression> args = copy(t.args, p);
270 JCClassDecl def = copy(t.def, p);
276 JCExpression expr = copy(t.expr, p);
282 JCExpression expr = copy(t.expr, p);
288 JCExpression selected = copy(t.selected, p);
299 JCExpression selector = copy(t.selector, p);
300 List<JCCase> cases = copy(t.cases, p);
306 JCExpression lock = copy(t.lock, p);
307 JCBlock body = copy(t.body, p);
313 JCTree expr = copy(t.expr, p);
319 List<JCAnnotation> packageAnnotations = copy(t.packageAnnotations, p);
320 JCExpression pid = copy(t.pid, p);
321 List<JCTree> defs = copy(t.defs, p);
327 List<JCTree> resources = copy(t.resources, p);
328 JCBlock body = copy(t.body, p);
329 List<JCCatch> catchers = copy(t.catchers, p);
330 JCBlock finalizer = copy(t.finalizer, p);
336 JCExpression clazz = copy(t.clazz, p);
337 List<JCExpression> arguments = copy(t.arguments, p);
343 List<JCExpression> components = copy(t.alternatives, p);
349 JCExpression elemtype = copy(t.elemtype, p);
355 JCTree clazz = copy(t.clazz, p);
356 JCExpression expr = copy(t.expr, p);
367 List<JCExpression> bounds = copy(t.bounds, p);
373 JCExpression expr = copy(t.expr, p);
374 JCTree clazz = copy(t.clazz, p);
380 JCExpression arg = copy(t.arg, p);
386 JCModifiers mods = copy(t.mods, p);
387 JCExpression vartype = copy(t.vartype, p);
388 JCExpression init = copy(t.init, p);
394 JCStatement body = copy(t.body, p);
395 JCExpression cond = copy(t.cond, p);
402 JCTree inner = copy(t.inner, p);
411 List<JCVariableDecl> defs = copy(t.defs, p);
412 JCTree expr = copy(t.expr, p);