Searched defs:exp (Results 76 - 100 of 133) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DWhileStatement.java56 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
64 cond.checkCondition(env, newctx, reach(env, vset), exp);
67 vset = body.check(env, newctx, cvars.vsTrue, exp);
H A DArrayAccessExpression.java65 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
66 vset = right.checkValue(env, ctx, vset, exp);
71 vset = index.checkValue(env, ctx, vset, exp);
86 Vset vset, Hashtable exp,
89 vset = right.checkAmbigName(env, ctx, vset, exp, this);
105 return super.checkAmbigName(env, ctx, vset, exp, loc);
112 Vset vset, Hashtable exp) {
113 return checkValue(env, ctx, vset, exp);
120 Vset vset, Hashtable exp, Expression outside) {
121 return checkValue(env, ctx, vset, exp);
85 checkAmbigName(Environment env, Context ctx, Vset vset, Hashtable exp, UnaryExpression loc) argument
111 checkLHS(Environment env, Context ctx, Vset vset, Hashtable exp) argument
119 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
[all...]
H A DAssignOpExpression.java152 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
153 vset = left.checkAssignOp(env, ctx, vset, exp, this);
154 vset = right.checkValue(env, ctx, vset, exp);
H A DBinaryExpression.java67 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
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) { argument
199 vset = right.checkAmbigName(env, ctx, vset, exp, this);
201 vset = right.checkValue(env, ctx, vset, exp);
204 vset = right.checkAmbigName(env, ctx, vset, exp, this);
282 vset = args[i].checkValue(env, ctx, vset, exp);
450 vset = right.checkValue(env, ctx, vset, exp);
564 if (exp.get(exceptions[i]) == null) {
565 exp.put(exceptions[i], this);
590 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
591 return checkValue(env, ctx, vset, exp);
[all...]
H A DNewInstanceExpression.java86 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
94 vset = outerArg.checkValue(env, ctx, vset, exp);
180 vset = args[i].checkValue(env, ctx, vset, exp);
329 if (exp.get(exceptions[i]) == null) {
330 exp.put(exceptions[i], this);
369 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
370 return checkValue(env, ctx, vset, exp);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java267 * The math:exp function returns e (the base of natural logarithms) raised to a power.
272 public static double exp(double num) method in class:ExsltMath
274 return Math.exp(num);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DFilterExprIterator.java179 public void setExpression(Expression exp) argument
181 exp.exprSetParent(FilterExprIterator.this);
182 m_expr = exp;
H A DFilterExprIteratorSimple.java264 public void setExpression(Expression exp) argument
266 exp.exprSetParent(FilterExprIteratorSimple.this);
267 m_expr = exp;
H A DWalkingIterator.java335 public void setExpression(Expression exp) argument
337 exp.exprSetParent(this);
338 m_firstWalker = (AxesWalker)exp;
H A DAxesWalker.java545 public void setExpression(Expression exp) argument
547 exp.exprSetParent(this);
548 m_nextWalker = (AxesWalker)exp;
H A DFilterExprWalker.java313 public void setExpression(Expression exp) argument
315 exp.exprSetParent(FilterExprWalker.this);
316 m_expr = exp;
/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/operations/
H A DOperation.java162 public void setExpression(Expression exp) argument
164 exp.exprSetParent(Operation.this);
165 m_left = exp;
192 public void setExpression(Expression exp) argument
194 exp.exprSetParent(this);
195 m_right = exp;
H A DUnaryOperation.java144 public void setExpression(Expression exp) argument
146 exp.exprSetParent(this);
147 m_right = 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/jdk/src/share/classes/java/beans/
H A DEncoder.java103 Object getValue(Expression exp) { argument
105 return (exp == null) ? null : exp.getValue();
109 throw new RuntimeException("failed to evaluate: " + exp.toString());
230 Expression exp = (Expression)bindings.remove(oldInstance);
231 return getValue(exp);
251 Expression exp = (Expression)bindings.get(oldInstance);
252 return getValue(exp);
/openjdk7/hotspot/test/compiler/7184394/
H A DTestAESBase.java133 void compareArrays(byte b[], byte exp[]) { argument
134 if (b.length != exp.length) {
137 showArray(exp, "exp : ");
140 for (int i=0; i< exp.length; i++) {
141 if (b[i] != exp[i]) {
142 System.out.format("output error at index %d: got %02x, expected %02x\n", i, b[i] & 0xff, exp[i] & 0xff);
144 showArray(exp, "exp : ");
/openjdk7/jdk/test/java/io/File/
H A DCons.java64 String exp; field in class:Cons.F
68 this.exp = cons(path);
73 this.exp = cons(parent, child);
78 if (parent == null) this.exp = cons((String)null, child);
79 else this.exp = cons(parent, child);
90 private static void ok(String ans, String exp) { argument
91 System.err.println(nos(ans) + " <== " + exp);
94 private static void err(String ans, String exp, String got) throws Exception { argument
95 System.err.println(nos(ans) + " <-- " + exp + " ==> " + nos(got));
97 throw new Exception("Mismatch: " + exp
102 ck(String ans, String exp, String got) argument
121 op(String exp, String opname) argument
[all...]
/openjdk7/jdk/test/java/lang/Appendable/
H A DBasic.java46 void init(Appendable a, String csq, String exp); argument
92 static void fail(String fs, String exp, String got) { argument
93 String s = "'" + fs + "': Expected '" + exp + "', got '" + got + "'";
100 static void ck(String s, String exp, String got) { argument
101 if (!exp.equals(got))
102 fail(s, exp, got);
109 private String csn, exp;
110 public void init(Appendable bw, String csn, String exp) {
117 this.exp = exp;
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DJavaDocExamplesTest.java219 static void assertEquals(Object exp, Object act) { argument
222 Assert.assertEquals(exp, act);
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSACore.java110 private static byte[] crypt(byte[] msg, BigInteger n, BigInteger exp) argument
113 BigInteger c = m.modPow(exp, n);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchParser.java250 IdentifierToken exp[], Node val) {
302 if (exp == null && t.isType(TC_METHOD)) {
303 exp = new IdentifierToken[0];
308 args, exp, val);
247 defineField(long where, ClassDefinition c, String doc, int mod, Type t, IdentifierToken name, IdentifierToken args[], IdentifierToken exp[], Node val) argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DPredicate.java117 public Predicate(Expression exp) { argument
118 _exp = exp;
242 Expression exp = path.getPath();
243 if (exp instanceof Step) {
244 _ptype = ((Step)exp).getNodeType();
250 final Expression exp = var.getExpression();
251 if (exp instanceof Step) {
252 _ptype = ((Step)exp).getNodeType();
466 EqualityExpr exp = (EqualityExpr)_exp;
467 Expression left = exp
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPath.java97 * @param exp the raw Expression object, which should not normally be null.
99 public void setExpression(Expression exp) argument
102 exp.exprSetParent(m_mainExp.exprGetParent()); // a bit bogus
103 m_mainExp = exp;

Completed in 57 milliseconds

123456