Searched defs:vset (Results 1 - 25 of 56) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryLogicalExpression.java49 Vset vset, Hashtable exp) {
53 checkCondition(env, ctx, vset, exp, cvars);
63 public void checkCondition(Environment env, Context ctx, Vset vset, argument
48 checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) argument
H A DCaseStatement.java52 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
54 expr.checkValue(env, ctx, vset, exp);
58 return vset.clearDeadEnd();
H A DLengthExpression.java49 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
50 vset = right.checkValue(env, ctx, vset, exp);
54 return vset;
H A DSuperExpression.java64 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
65 vset = checkCommon(env, ctx, vset, exp);
70 return vset;
77 Vset vset, Hashtable exp,
79 return checkCommon(env, ctx, vset, exp);
83 private Vset checkCommon(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
88 return vset;
90 vset = super.checkValue(env, ctx, vset, ex
76 checkAmbigName(Environment env, Context ctx, Vset vset, Hashtable exp, UnaryExpression loc) argument
[all...]
H A DArrayExpression.java50 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
52 return vset;
54 public Vset checkInitializer(Environment env, Context ctx, Vset vset, Type t, Hashtable exp) { argument
59 return vset;
64 vset = args[i].checkInitializer(env, ctx, vset, t, exp);
67 return vset;
H A DAssignExpression.java53 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
57 vset = right.checkValue(env, ctx, vset, exp);
58 vset = left.checkLHS(env, ctx, vset, exp);
61 vset = left.checkLHS(env, ctx, vset, exp);
62 vset = right.checkValue(env, ctx, vset, exp);
70 return vset;
[all...]
H A DBreakStatement.java54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
55 reach(env, vset);
62 destctx.vsBreak = destctx.vsBreak.join(vset);
72 exitctx.vsTryExit = exitctx.vsTryExit.join(vset);
H A DCastExpression.java51 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
53 vset = right.checkValue(env, ctx, vset, exp);
57 return vset;
62 return vset;
68 return vset;
76 return vset;
H A DContinueStatement.java55 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
57 reach(env, vset);
70 destctx.vsContinue = destctx.vsContinue.join(vset);
84 exitctx.vsTryExit = exitctx.vsTryExit.join(vset);
H A DNewArrayExpression.java58 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
73 vset = dim.checkValue(env, ctx, vset, exp);
79 vset = init.checkInitializer(env, ctx, vset, type, exp);
82 return vset;
H A DTypeExpression.java56 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
59 return vset;
62 public Vset checkAmbigName(Environment env, Context ctx, Vset vset, Hashtable exp, argument
64 return vset;
H A DAndExpression.java56 public void checkCondition(Environment env, Context ctx, Vset vset, argument
59 left.checkCondition(env, ctx, vset, exp, cvars);
H A DBinaryAssignExpression.java70 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
71 return checkValue(env, ctx, vset, exp);
H A DBooleanExpression.java84 * already known value to vset. Set the side that corresponds to the
89 Vset vset, Hashtable exp, ConditionVars cvars) {
92 cvars.vsTrue = vset;
94 cvars.vsFalse = vset;
88 checkCondition(Environment env, Context ctx, Vset vset, Hashtable exp, ConditionVars cvars) argument
H A DCatchStatement.java70 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
71 vset = reach(env, vset);
94 vset.addVar(field.number);
96 return body.check(env, ctx, vset, exp);
99 return vset;
H A DCommaExpression.java49 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
50 vset = left.check(env, ctx, vset, exp);
51 vset = right.check(env, ctx, vset, exp);
52 return vset;
H A DCompoundStatement.java73 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
76 vset = reach(env, vset);
81 vset = args[i].checkBlockStatement(newenv, newctx, vset, exp);
83 vset = vset.join(newctx.vsBreak);
85 return ctx.removeAdditionalVars(vset);
H A DConditionalExpression.java67 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
68 ConditionVars cvars = cond.checkCondition(env, ctx, vset, exp);
69 vset = left.checkValue(env, ctx, cvars.vsTrue, exp).join(
76 return vset;
107 return vset;
110 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
111 vset = cond.checkValue(env, ctx, vset, exp);
113 return left.check(env, ctx, vset.copy(), exp).join(right.check(env, ctx, vset, ex
[all...]
H A DConvertExpression.java50 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
51 return right.checkValue(env, ctx, vset, exp);
H A DDeclarationStatement.java58 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
60 return checkBlockStatement(env, ctx, vset, exp);
62 Vset checkBlockStatement(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
66 vset = reach(env, vset);
70 vset = args[i].checkDeclaration(env, ctx, vset, mod, t, exp);
73 return vset;
H A DDoStatement.java56 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
60 Vset vsEntry = vset.copy();
61 vset = body.check(env, newctx, reach(env, vset), exp);
62 vset = vset.join(newctx.vsContinue);
66 cond.checkCondition(env, newctx, vset, exp);
71 vset = newctx.vsBreak.join(cvars.vsFalse);
72 return ctx.removeAdditionalVars(vset);
H A DExprExpression.java51 public void checkCondition(Environment env, Context ctx, Vset vset, argument
53 right.checkCondition(env, ctx, vset, exp, cvars);
63 Vset vset, Hashtable exp, Expression outside) {
64 vset = right.checkAssignOp(env, ctx, vset, exp, outside);
66 return vset;
83 // Vset vset, Hashtable exp) {
84 // vset = right.check(env, ctx, vset, exp);
86 // return vset;
62 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
[all...]
H A DExpressionStatement.java53 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
55 return expr.check(env, ctx, reach(env, vset), exp);
H A DFinallyStatement.java71 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
72 vset = reach(env, vset);
87 vset = tryExpr.checkValue(env, ctx, vset, exp);
91 vset = tryDecl.checkBlockStatement(env, ctx, vset, exp);
102 vset = init.check(env, ctx, vset, exp);
169 Vset vset1 = body.check(env, newctx1, vset
[all...]
H A DForStatement.java60 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
62 vset = reach(env, vset);
65 vset = init.checkBlockStatement(env, initctx, vset, exp);
69 Vset vsEntry = vset.copy();
72 cvars = cond.checkCondition(env, newctx, vset, exp);
78 cvars.vsTrue = vset;
80 vset = body.check(env, newctx, cvars.vsTrue, exp);
81 vset
[all...]

Completed in 90 milliseconds

123