Searched refs:exp (Results 1 - 25 of 237) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/javax/management/
H A DBadBinaryOpValueExpException.java46 private ValueExp exp; field in class:BadBinaryOpValueExpException
52 * @param exp the expression whose value was inappropriate.
54 public BadBinaryOpValueExpException(ValueExp exp) { argument
55 this.exp = exp;
65 return exp;
72 return "BadBinaryOpValueExpException: " + exp;
H A DNotQueryExp.java45 private QueryExp exp; field in class:NotQueryExp
58 exp = q;
66 return exp;
83 return exp.apply(name) == false;
91 return "not (" + exp + ")";
/openjdk7/jdk/test/javax/script/
H A DRhinoExceptionTest.java47 } catch (ScriptException exp) {
48 if (exp.getMessage().indexOf(ERROR_MSG) == -1) {
49 throw exp;
54 } catch (ScriptException exp) {
55 if (exp.getMessage().indexOf(ERROR_MSG) == -1) {
56 throw exp;
62 } catch (ScriptException exp) {
63 if (exp.getMessage().indexOf(ERROR_MSG) == -1) {
64 throw exp;
70 } catch (ScriptException exp) {
[all...]
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_ldexp.c31 double ldexp(double value, int exp) argument
33 double ldexp(value, exp)
34 double value; int exp;
38 value = scalbn(value,exp);
H A Dw_exp.c28 * wrapper exp(x)
42 double exp(double x) /* wrapper exp */ function
44 double exp(x) /* wrapper exp */
56 return __kernel_standard(x,x,6); /* exp overflow */
58 return __kernel_standard(x,x,7); /* exp underflow */
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DOQLHelp.java56 } catch (Exception exp) {
57 out.println(exp.getMessage());
59 exp.printStackTrace(out);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DExpressionOwner.java41 * @param exp the raw Expression object, which should not normally be null.
43 public void setExpression(Expression exp); argument
/openjdk7/jdk/test/java/net/URL/
H A DTestRFC2732.java44 } catch(Exception exp) {
45 throw new RuntimeException(exp.getMessage() +
/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/security/Security/signedfirst/
H A Dexp.jar ... .RSA META-INF/ com/ com/sun/ com/sun/exp/ com/sun/exp/provider/ com/sun/exp/provider/EXP$ ...
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAbstractHeapGraphWriter.java55 } catch (IOException exp) {
56 throw new RuntimeException(exp);
100 } catch (IOException exp) {
101 throw new RuntimeException(exp);
109 } catch (IOException exp) {
110 throw new RuntimeException(exp);
155 } catch (IOException exp) {
156 throw new RuntimeException(exp);
228 } catch (IOException exp) {
229 throw new RuntimeException(exp);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJPrimitiveType.java105 public JExpression wrap( JExpression exp ) {
106 return JExpr._new(boxify()).arg(exp);
114 public JExpression unwrap( JExpression exp ) {
117 return exp.invoke(typeName+"Value");
/openjdk7/jdk/test/java/math/BigInteger/
H A DModPow.java40 BigInteger exp = new BigInteger(8, rnd);
42 BigInteger z = base.modPow(exp, m);
43 BigInteger w = base.pow(exp.intValue()).mod(m);
45 System.err.println(base +" ** " + exp + " mod "+ m);
/openjdk7/jdk/src/share/demo/jvmti/minst/
H A DMinst.java63 Exception exp = new Exception();
64 StackTraceElement[] stack = exp.getStackTrace();
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DSuperExpression.java64 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
65 vset = checkCommon(env, ctx, vset, exp);
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
90 vset = super.checkValue(env, ctx, vset, exp);
76 checkAmbigName(Environment env, Context ctx, Vset vset, Hashtable exp, UnaryExpression loc) argument
H A DBinaryLogicalExpression.java49 Vset vset, Hashtable exp) {
53 checkCondition(env, ctx, vset, exp, cvars);
64 Hashtable exp, ConditionVars cvars);
48 checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) argument
63 checkCondition(Environment env, Context ctx, Vset vset, Hashtable exp, ConditionVars cvars) argument
H A DExprExpression.java52 Hashtable exp, ConditionVars cvars) {
53 right.checkCondition(env, ctx, vset, exp, cvars);
63 Vset vset, Hashtable exp, Expression outside) {
64 vset = right.checkAssignOp(env, ctx, vset, exp, outside);
83 // Vset vset, Hashtable exp) {
84 // vset = right.check(env, ctx, vset, exp);
51 checkCondition(Environment env, Context ctx, Vset vset, Hashtable exp, ConditionVars cvars) argument
62 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
/openjdk7/jdk/test/java/util/Formatter/
H A DBasic.java54 static void fail(String fs, String exp, String got) { argument
55 String s = "'" + fs + "': Expected '" + exp + "', got '" + got + "'";
70 static void ck(String fs, String exp, String got) { argument
71 if (!exp.equals(got))
72 fail(fs, exp, got);
/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/javax/management/ObjectInstance/
H A DToStringMethodTest.java58 final String exp = name + " = " + value;
62 if (!exp.equals(at.toString())) {
64 "of the Attribute class, expected to get "+exp+
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DRMIHelper.java71 } catch (Exception exp) {
72 throw new DebuggerException(exp);
77 } catch (Exception exp) {
78 throw new DebuggerException(exp);
86 } catch (Exception exp) {
87 throw new DebuggerException(exp);
114 } catch (Exception exp) {
115 throw new DebuggerException(exp);
/openjdk7/jdk/src/share/classes/javax/script/
H A DScriptEngineManager.java218 } catch (Exception exp) {
219 if (DEBUG) exp.printStackTrace();
227 } catch (Exception exp) {
228 if (DEBUG) exp.printStackTrace();
238 } catch (Exception exp) {
239 if (DEBUG) exp.printStackTrace();
269 } catch (Exception exp) {
270 if (DEBUG) exp.printStackTrace();
278 } catch (Exception exp) {
279 if (DEBUG) exp
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DNotCall.java53 final Expression exp = argument();
54 exp.translateDesynthesized(classGen, methodGen);
56 _trueList = exp._falseList; // swap flow lists
57 _falseList = exp._trueList;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Debug.h70 #define VERIFY(exp) DASSERT(exp)
86 #define VERIFY(exp) ((void)(exp))
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java400 // carryout! High-order 1, rest 0s, larger exp.
451 // carryout! High-order 1, rest 0s, larger exp.
999 int exp = decExponent;
1004 exp = checkExponent(decExponent + precision);
1008 exp = checkExponent(precision + 1);
1012 exp = checkExponent(precision);
1015 // the real exponent to be output is actually exp - 1, not exp
1016 if (exp - 1 < -4 || exp
[all...]

Completed in 112 milliseconds

12345678910