Searched defs:exp (Results 1 - 25 of 133) sorted by relevance

123456

/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/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 + ")";
H A DMatchQueryExp.java45 private AttributeValueExp exp; field in class:MatchQueryExp
64 exp = a;
73 return exp;
101 ValueExp val = exp.apply(name);
112 return exp + " like " + new StringValueExp(pattern);
/openjdk7/jdk/test/java/net/CookieHandler/
H A DNullUriCookieTest.java74 static void checkFail(String exp) { argument
76 throw new RuntimeException(exp);
/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/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 DBasicBoolean.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 DBasicBooleanObject.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 DBasicChar.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 DBasicCharObject.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 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);
H A DBasicBigDecimal.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 DBasicDateTime.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);
140 private static void testDateTime(String fs, String exp, Calendar c) { argument
141 testDateTime(fs, exp,
144 testDateTime(String fs, String exp, Calendar c, boolean upper) argument
[all...]
/openjdk7/jdk/test/javax/swing/SwingUtilities/7170657/
H A Dbug7170657.java73 private static void fail(final MouseEvent exp, final MouseEvent act) { argument
74 System.err.println("Expected: " + exp);
/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/jdk/test/java/awt/FullScreen/FullScreenInsets/
H A DFullScreenInsets.java98 private static void testSize(final Dimension actual, final Dimension exp) { argument
99 if (!exp.equals(actual)) {
101 " Expected: " + exp + " Actual: " + actual);
106 private static void testInsets(final Insets actual, final Insets exp) { argument
107 if (!actual.equals(exp)) {
109 " Expected: " + exp + " Actual: " + actual);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
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 DCaseStatement.java52 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
54 expr.checkValue(env, ctx, vset, exp);
H A DLengthExpression.java49 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
50 vset = right.checkValue(env, ctx, vset, exp);
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
/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: '"

Completed in 94 milliseconds

123456