Searched defs:checkValue (Results 1 - 25 of 30) sorted by relevance

12

/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/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/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynArrayImpl.java131 protected void checkValue(Object[] value) method in class:DynArrayImpl
H A DDynSequenceImpl.java242 protected void checkValue(Object[] value) method in class:DynSequenceImpl
H A DDynAnyCollectionImpl.java117 protected abstract void checkValue(Object[] value) method in class:DynAnyCollectionImpl
133 checkValue(value);
180 checkValue(value);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryLogicalExpression.java48 public Vset checkValue(Environment env, Context ctx, method in class:BinaryLogicalExpression
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 DArrayExpression.java50 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ArrayExpression
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 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 DTypeExpression.java56 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:TypeExpression
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 DIncDecExpression.java52 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:IncDecExpression
70 return 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 DThisExpression.java90 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ThisExpression
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 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 DAssignOpExpression.java152 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:AssignOpExpression
154 vset = right.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 DMethodExpression.java81 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:MethodExpression
201 vset = right.checkValue(env, ctx, vset, exp);
282 vset = args[i].checkValue(env, ctx, vset, exp);
450 vset = right.checkValue(env, ctx, vset, exp);
591 return checkValue(env, ctx, vset, exp);
H A DNewInstanceExpression.java86 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:NewInstanceExpression
94 vset = outerArg.checkValue(env, ctx, vset, exp);
180 vset = args[i].checkValue(env, ctx, vset, exp);
232 "NewInstanceExpression.checkValue: ANON CLASS " +
370 return checkValue(env, ctx, vset, exp);
/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

Completed in 67 milliseconds

12