Searched refs:exp (Results 126 - 150 of 237) sorted by relevance

12345678910

/openjdk7/jdk/test/java/util/Formatter/
H A DBasicFloatObject.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 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 DBasicDouble.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);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStepPattern.java92 final Predicate exp = (Predicate)_predicates.elementAt(i);
93 exp.setParser(parser);
94 exp.setParent(this);
300 Expression exp = pred.getExpr();
301 exp.translateDesynthesized(classGen, methodGen);
302 _trueList.append(exp._trueList);
303 _falseList.append(exp._falseList);
388 Expression exp = pred.getExpr();
389 exp.translateDesynthesized(classGen, methodGen);
394 exp
[all...]
H A DFunctionCall.java294 final Expression exp = (Expression)_arguments.elementAt(i);
295 exp.setParser(parser);
296 exp.setParent(this);
423 final Expression exp = (Expression)_arguments.elementAt(i);
424 if (!argType.identicalTo(exp.getType())) {
426 _arguments.setElementAt(new CastExpr(exp, argType), i);
667 final Expression exp = (Expression)e.nextElement();
668 result.addElement(exp.typeCheck(stable));
685 protected final void setArgument(int i, Expression exp) { argument
686 _arguments.setElementAt(exp,
[all...]
H A DProcessingInstructionPattern.java139 Expression exp = pred.getExpr();
140 exp.translateDesynthesized(classGen, methodGen);
141 _trueList.append(exp._trueList);
142 _falseList.append(exp._falseList);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaInstance.java79 } catch (NoSuchFieldException exp) {
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Djfdlibm.h43 #define exp jexp macro
/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/jdk/src/share/classes/sun/tools/jconsole/
H A DFormatter.java180 int exp = (int)Math.log10((double)vMax);
182 if (exp < 3) {
184 } else if (exp < 6) {
186 } else if (exp < 9) {
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBooleanExpression.java89 Vset vset, Hashtable exp, ConditionVars cvars) {
88 checkCondition(Environment env, Context ctx, Vset vset, Hashtable exp, ConditionVars cvars) argument
H A DIncDecExpression.java52 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
53 vset = right.checkAssignOp(env, ctx, vset, exp, this);
69 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
70 return checkValue(env, ctx, vset, exp);
H A DSwitchStatement.java57 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
60 vset = expr.checkValue(env, newctx, reach(env, vset), exp);
76 vs = s.check(env, newctx, vs.join(vset.copy()), exp);
132 vs = s.checkBlockStatement(env, newctx, vs, exp);
H A DCatchStatement.java70 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
96 return body.check(env, ctx, vset, exp);
H A DConvertExpression.java50 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
51 return right.checkValue(env, ctx, vset, exp);
H A DInstanceOfExpression.java51 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
52 vset = left.checkValue(env, ctx, vset, exp);
H A DReturnStatement.java54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
58 vset = expr.checkValue(env, ctx, vset, exp);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DObjectFactoryGeneratorImpl.java217 JInvocation exp = JExpr._new(exposedElementType);
219 exp.arg(getQNameInvocation(ei));
220 exp.arg(declaredType);
221 exp.arg(scopeClass);
224 exp.arg($value);
226 exp.arg(JExpr.cast(implType,$value));
228 m.body()._return( exp );
/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormatSymbols.java447 void setExponentialSymbol(char exp) argument
449 exponential = exp;
456 * @param exp the exponent separator string
457 * @exception NullPointerException if <code>exp</code> is null
461 public void setExponentSeparator(String exp) argument
463 if (exp == null) {
466 exponentialSeparator = exp;
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java196 ValueExp exp = parseExp(ss);
200 if (!(exp instanceof AttributeValueExp &&
203 exp + " like " + pat);
206 return Query.match((AttributeValueExp) exp, spat);
218 return Query.in(exp, (ValueExp[]) values.toArray(new ValueExp[0]));
/openjdk7/jdk/src/share/classes/java/util/
H A DFormatter.java1846 // + 3 (max # exp digits) + 4 (error) = 30
3229 char[] exp = (value == 0.0)
3234 newW = adjustWidth(width - exp.length - 1, f, neg);
3240 char sign = exp[0];
3244 char[] tmp = new char[exp.length - 1];
3245 System.arraycopy(exp, 1, tmp, 0, exp.length - 1);
3288 char[] exp = exponent(v, len);
3289 if (exp != null) {
3303 if (exp !
3659 private StringBuilder exp; field in class:Formatter.FormatSpecifier.BigDecimalLayout
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DLLNI.java355 Object exp = null;
362 exp = field.getConstantValue();
364 if (exp != null) {
371 if (exp instanceof Byte
372 || exp instanceof Short
373 || exp instanceof Integer) {
375 val = ((Number)exp).intValue();
377 else if (exp instanceof Long) {
380 val = ((Long)exp).longValue();
382 else if (exp instanceo
[all...]
/openjdk7/jdk/test/java/lang/Math/
H A DHyperbolicTests.java53 * 1. For large values of x sinh(x) ~= signum(x)*exp(|x|)/2
276 // insignificant to the floating-point result. Util exp(x)
277 // overflows around 709.8, sinh(x) ~= exp(x)/2; will will test
281 // (approximately) largest value such that exp shouldn't
291 // Allow 3.5 ulps of error to deal with error in exp.
292 failures += testSinhCaseWithUlpDiff(d, StrictMath.exp(d)*0.5, 3.5);
299 // Make sure sinh(x) doesn't overflow as soon as exp(x)
308 * exp(x + -0.693147186). However, this sum suffers from
322 * exp(x + offset)*exp(rounded_away_offse
[all...]
/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/hotspot/agent/test/libproc/
H A DLibprocClient.java76 } catch (Exception exp) {
78 exp.printStackTrace();

Completed in 126 milliseconds

12345678910