Searched refs:checkValue (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/jdk/test/java/util/StringTokenizer/
H A DResetPos.java35 static void checkValue(String val, String checkVal) { method in class:ResetPos
45 checkValue("a", st1.nextToken("b"));
47 checkValue("b", st1.nextToken(""));
52 checkValue("a", st2.nextToken("bc"));
54 checkValue("b", st2.nextToken());
56 checkValue("cd", st2.nextToken(" ef"));
58 checkValue(" ", st2.nextToken(" "));
60 checkValue("ef", st2.nextToken("g"));
62 checkValue("g", st2.nextToken("g"));
67 checkValue("thi
[all...]
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DBug4396021.java40 checkValue("special_key", "special_value");
41 checkValue("general_key", "general_value");
44 private static void checkValue(String key, String expected) throws Exception { method in class:Bug4396021
/openjdk7/jdk/test/java/lang/ThreadLocal/
H A DTLRemoveTest.java93 int checkValue = i;
99 checkValue = INITIAL_VALUE;
105 checkValue = REMOVE_SET_VALUE;
111 if(x[i] != checkValue)
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DLengthExpression.java49 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:LengthExpression
50 vset = right.checkValue(env, ctx, vset, exp);
H A DSuperExpression.java64 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:SuperExpression
82 /** Common code for checkValue and checkAmbigName */
90 vset = super.checkValue(env, ctx, vset, exp);
H A DBinaryLogicalExpression.java48 public Vset checkValue(Environment env, Context ctx, method in class:BinaryLogicalExpression
H A DCaseStatement.java54 expr.checkValue(env, ctx, vset, exp);
H A DTypeExpression.java56 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:TypeExpression
H A DArrayAccessExpression.java65 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ArrayAccessExpression
66 vset = right.checkValue(env, ctx, vset, exp);
71 vset = index.checkValue(env, ctx, vset, exp);
113 return checkValue(env, ctx, vset, exp);
121 return checkValue(env, ctx, vset, exp);
H A DAssignExpression.java53 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:AssignExpression
57 vset = right.checkValue(env, ctx, vset, exp);
62 vset = right.checkValue(env, ctx, vset, exp);
H A DCastExpression.java51 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:CastExpression
53 vset = right.checkValue(env, ctx, vset, exp);
H A DUnaryExpression.java72 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:UnaryExpression
73 vset = right.checkValue(env, ctx, vset, exp);
H A DConditionalExpression.java67 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ConditionalExpression
69 vset = left.checkValue(env, ctx, cvars.vsTrue, exp).join(
70 right.checkValue(env, ctx, cvars.vsFalse, exp) );
111 vset = cond.checkValue(env, ctx, vset, exp);
H A DConvertExpression.java50 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ConvertExpression
51 return right.checkValue(env, ctx, vset, exp);
H A DInstanceOfExpression.java51 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:InstanceOfExpression
52 vset = left.checkValue(env, ctx, vset, exp);
H A DNewArrayExpression.java58 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:NewArrayExpression
73 vset = dim.checkValue(env, ctx, vset, exp);
H A DBinaryAssignExpression.java71 return checkValue(env, ctx, vset, exp);
H A DBinaryExpression.java67 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:BinaryExpression
68 vset = left.checkValue(env, ctx, vset, exp);
69 vset = right.checkValue(env, ctx, vset, exp);
H A DIdentifierExpression.java234 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:IdentifierExpression
244 vset = implementation.checkValue(env, ctx, vset, exp);
258 vset = implementation.checkValue(env, ctx, vset, exp);
271 vset = implementation.checkValue(env, ctx, vset, exp);
301 return checkValue(env, ctx, vset, exp);
H A DExpression.java195 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:Expression
199 return checkValue(env, ctx, vset, exp);
271 return checkValue(env, ctx, vset, exp);
293 * The default action is to simply call checkValue on the expression, and
299 cvars.vsTrue = cvars.vsFalse = checkValue(env, ctx, vset, exp);
H A DThrowStatement.java57 expr.checkValue(env, ctx, vset, exp);
/openjdk7/jdk/test/java/lang/InheritableThreadLocal/
H A DITLRemoveTest.java63 int checkValue = i+INITIAL_VALUE;
69 checkValue = INITIAL_VALUE;
75 checkValue = REMOVE_SET_VALUE;
81 if(x[i] != checkValue)
/openjdk7/jdk/src/share/classes/sun/net/
H A DInetAddressCachePolicy.java178 checkValue(newPolicy, cachePolicy);
199 // checkValue(newPolicy, negativeCachePolicy);
204 private static void checkValue(int newPolicy, int oldPolicy) { method in class:InetAddressCachePolicy
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyCollectionImpl.java117 protected abstract void checkValue(Object[] value) method in class:DynAnyCollectionImpl
133 checkValue(value);
180 checkValue(value);
H A DDynArrayImpl.java131 protected void checkValue(Object[] value) method in class:DynArrayImpl

Completed in 86 milliseconds

12