Searched refs:JCStatement (Results 1 - 13 of 13) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DParser.java31 import com.sun.tools.javac.tree.JCTree.JCStatement;
59 JCStatement parseStatement();
H A DJavacParser.java1561 List<JCStatement> stats = blockStatements();
1586 List<JCStatement> blockStatements() {
1589 ListBuffer<JCStatement> stats = new ListBuffer<JCStatement>();
1611 new ListBuffer<JCStatement>()));
1647 JCStatement stat = parseStatement();
1657 new ListBuffer<JCStatement>()));
1702 public JCStatement parseStatement() {
1710 JCStatement thenpart = parseStatement();
1711 JCStatement elsepar
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DJCTree.java530 public static abstract class JCStatement extends JCTree implements StatementTree { class in class:JCTree
532 public JCStatement setType(Type type) {
537 public JCStatement setPos(int pos) {
566 public static class JCClassDecl extends JCStatement implements ClassTree {
707 public static class JCVariableDecl extends JCStatement implements VariableTree {
748 public static class JCSkip extends JCStatement implements EmptyStatementTree {
771 public static class JCBlock extends JCStatement implements BlockTree {
773 public List<JCStatement> stats;
776 protected JCBlock(long flags, List<JCStatement> stats) {
784 public List<JCStatement> getStatement
[all...]
H A DTreeMaker.java197 public JCBlock Block(long flags, List<JCStatement> stats) {
203 public JCDoWhileLoop DoLoop(JCStatement body, JCExpression cond) {
209 public JCWhileLoop WhileLoop(JCExpression cond, JCStatement body) {
215 public JCForLoop ForLoop(List<JCStatement> init,
218 JCStatement body)
225 public JCEnhancedForLoop ForeachLoop(JCVariableDecl var, JCExpression expr, JCStatement body) {
231 public JCLabeledStatement Labelled(Name label, JCStatement body) {
243 public JCCase Case(JCExpression pat, List<JCStatement> stats) {
283 public JCIf If(JCExpression cond, JCStatement thenpart, JCStatement elsepar
[all...]
H A DTreeCopier.java111 List<JCStatement> stats = copy(t.stats, p);
123 List<JCStatement> stats = copy(t.stats, p);
159 JCStatement body = copy(t.body, p);
180 JCStatement body = copy(t.body, p);
186 List<JCStatement> init = copy(t.init, p);
189 JCStatement body = copy(t.body, p);
201 JCStatement thenpart = copy(t.thenpart, p);
202 JCStatement elsepart = copy(t.elsepart, p);
221 JCStatement body = copy(t.body, p);
394 JCStatement bod
[all...]
H A DPretty.java584 for (List<JCStatement> l = tree.init.tail; l.nonEmpty(); l = l.tail) {
H A DTreeInfo.java200 List<JCStatement> stats = md.body.stats;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java434 ListBuffer<JCStatement> stmts = new ListBuffer<JCStatement>();
444 make.Block(0, List.<JCStatement>nil())));
454 JCStatement exec = make.Exec(assign);
455 JCStatement _try = make.Try(make.Block(0, List.of(exec)), catcher, null);
1248 JCStatement stat; // The statement accessing the private symbol.
1301 make.Block(0, List.<JCStatement>of(
1481 ListBuffer<JCStatement> stats = new ListBuffer<JCStatement>();
1523 JCStatement assig
[all...]
H A DFlow.java539 void scanStats(List<? extends JCStatement> trees) {
541 for (List<? extends JCStatement> l = trees; l.nonEmpty(); l = l.tail)
989 private static void addVars(List<JCStatement> stats, Bits inits,
H A DTransTypes.java246 JCStatement stat = (origErasure.getReturnType().tag == VOID)
835 JCStatement stat = (member.getReturnType().tag == VOID)
H A DMemberEnter.java1233 List<JCStatement> stats = List.nil();
H A DAttr.java1059 private static void addVars(List<JCStatement> stats, Scope switchScope) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java453 ListBuffer<JCStatement> initCode = new ListBuffer<JCStatement>();
454 ListBuffer<JCStatement> clinitCode = new ListBuffer<JCStatement>();
480 JCStatement init = make.at(vdef.pos()).
490 JCStatement init = make.at(vdef.pos).
508 List<JCStatement> inits = initCode.toList();
523 List<JCStatement> clinitStats = clinitCode.toList();
550 void normalizeMethod(JCMethodDecl md, List<JCStatement> initCode) {
554 List<JCStatement> stat
[all...]

Completed in 119 milliseconds