Searched refs:exp (Results 76 - 100 of 237) sorted by relevance

12345678910

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DCastCall.java72 Expression exp = argument(0);
73 if (exp instanceof LiteralExpr) {
74 _className = ((LiteralExpr) exp).getValue();
H A DConcatCall.java51 final Expression exp = argument(i);
52 if (!exp.typeCheck(stable).identicalTo(Type.String)) {
53 setArgument(i, new CastExpr(exp, Type.String));
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFunctionMultiArgs.java185 public void setExpression(Expression exp) argument
187 exp.exprSetParent(FunctionMultiArgs.this);
188 m_args[m_argIndex] = exp;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DUnionPattern.java167 public void setExpression(Expression exp) argument
169 exp.exprSetParent(UnionPattern.this);
170 m_patterns[m_index] = (StepPattern)exp;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUnionEntry.java165 Expression exp = (Expression)eLabels.nextElement ();
166 if (exp.equals (label) || exp.value ().equals (label.value ()))
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DStackTrace.java53 } catch (Exception exp) {
54 exp.printStackTrace();
55 tty.println("Can't print deadlocks:" + exp.getMessage());
/openjdk7/jdk/src/share/classes/sun/tools/tree/
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);
H A DDoStatement.java56 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
61 vset = body.check(env, newctx, reach(env, vset), exp);
66 cond.checkCondition(env, newctx, vset, exp);
H A DExpression.java195 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
198 public Vset checkInitializer(Environment env, Context ctx, Vset vset, Type t, Hashtable exp) { argument
199 return checkValue(env, ctx, vset, exp);
201 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
206 Vset vset, Hashtable exp) {
246 Vset vset, Hashtable exp, Expression outside) {
269 public Vset checkAmbigName(Environment env, Context ctx, Vset vset, Hashtable exp, argument
271 return checkValue(env, ctx, vset, exp);
280 Vset vset, Hashtable exp) {
282 checkCondition(env, ctx, vset, exp, cvar
205 checkLHS(Environment env, Context ctx, Vset vset, Hashtable exp) argument
245 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
279 checkCondition(Environment env, Context ctx, Vset vset, Hashtable exp) argument
297 checkCondition(Environment env, Context ctx, Vset vset, Hashtable exp, ConditionVars cvars) argument
[all...]
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
70 vset = args[i].checkDeclaration(env, ctx, vset, mod, t, exp);
H A DIfStatement.java58 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
63 cond.checkCondition(env, newctx, reach(env, vset), exp);
89 vsTrue = ifTrue.check(env, newctx, vsTrue, exp);
91 vsFalse = ifFalse.check(env, newctx, vsFalse, exp);
H A DBinaryAssignExpression.java70 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
71 return checkValue(env, ctx, vset, exp);
/openjdk7/jdk/test/java/util/Formattable/
H A DStockName.java107 private static void test(CharBuffer cb, String exp) { argument
110 if (!cb.toString().equals(exp))
111 throw new RuntimeException("expect: '" + exp + "'; got: '"
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexp.java42 public String exp; field in class:Regexp
60 exp = s;
110 exp.regionMatches(ignoreCase, 0, s, offset, len);
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DScriptJConsolePlugin.java193 } catch (Exception exp) {
194 exp.printStackTrace();
217 } catch (Exception exp) {
218 exp.printStackTrace();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DSAJDIClassLoader.java148 } catch (Exception exp) {
149 throw (ClassNotFoundException) new ClassNotFoundException().initCause(exp);
/openjdk7/jdk/test/java/util/Formatter/
H A DBasicBigInteger.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicByte.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicByteObject.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicInt.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicIntObject.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicLong.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicLongObject.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicShort.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);
H A DBasicShortObject.java51 private static void test(String fs, String exp, Object ... args) { argument
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args) argument
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) { argument
87 byte [] ba = new byte[exp.length()];
91 fail(fs, exp, got);
92 ck(fs, exp, got);

Completed in 69 milliseconds

12345678910