Searched refs:exp (Results 151 - 175 of 237) sorted by relevance

12345678910

/openjdk7/jdk/test/java/util/Formatter/
H A DBasicFloat.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-X.java.template51 private static void test(String fs, String exp, Object ... args) {
54 ck(fs, exp, f.toString());
57 private static void test(Locale l, String fs, String exp, Object ... args)
61 ck(fs, exp, f.toString());
76 private static void testSysOut(String fs, String exp, Object ... args) {
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) {
141 testDateTime(fs, exp,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftLowFrequencyOscillator.java91 double fr = 440.0 * Math.exp(
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBreakStatement.java54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
H A DContinueStatement.java55 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
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 DFinallyStatement.java71 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
87 vset = tryExpr.checkValue(env, ctx, vset, exp);
91 vset = tryDecl.checkBlockStatement(env, ctx, vset, exp);
102 vset = init.check(env, ctx, vset, exp);
175 Vset vset2 = finalbody.check(env, newctx2, vset, exp);
182 // generated by the body into exp.
184 // Add newexp's back into exp; cf. ThrowStatement.check().
187 exp.put(def, newexp.get(def));
H A DSynchronizedStatement.java59 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
63 vset = expr.checkValue(env, newctx, vset, exp);
68 vset = body.check(env, newctx, vset, exp);
H A DVarDeclarationStatement.java60 Vset checkDeclaration(Environment env, Context ctx, Vset vset, int mod, Type t, Hashtable exp) { argument
82 return (expr != null) ? expr.checkValue(env, ctx, vset, exp) : vset;
120 vset = expr.checkInitializer(env, ctx, vset, t, exp);
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);
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 DTryStatement.java60 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
82 vs = vs.join(args[i].check(env, newctx, cvs.copy(), exp));
170 exp.put(c, newexp.get(c));
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFilterExpr.java83 final Expression exp = (Expression)_predicates.elementAt(i);
84 exp.setParser(parser);
85 exp.setParent(this);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DAxesWalker.java545 public void setExpression(Expression exp) argument
547 exp.exprSetParent(this);
548 m_nextWalker = (AxesWalker)exp;
H A DPredicatedNodeTest.java642 public void setExpression(Expression exp) argument
644 exp.exprSetParent(PredicatedNodeTest.this);
645 m_predicates[m_index] = exp;
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp706 csize_t exp = sect->size(); // 100% increase local
707 if ((uint)exp < 4*K) exp = 4*K; // minimum initial increase
709 if (exp < amount) exp = amount;
710 if (StressCodeBuffers) exp = amount; // expand only slightly
713 exp = 4*K + ((exp - 4*K) >> 2);
714 if (StressCodeBuffers) exp = amount / 2; // expand only slightly
717 exp
[all...]
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DTooManyFooTest.java209 final String exp = EXPECTED_TYPES.get(mboi.getName());
211 // For MXBeans, we need to compare 'exp' with the original
217 if (type.equals(exp)) continue;
220 ", expected "+exp);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java253 public String genHTMLErrorMessage(Exception exp) { argument
254 exp.printStackTrace();
255 return genHTMLForMessage(exp.getClass().getName() + " : " + exp.getMessage());
634 } catch (Exception exp) {
635 return genHTMLErrorMessage(exp);
678 for (int exp = 0; exp < exceptions.length; exp++) {
679 short cpIndex = (short) exceptions[exp]
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMemberDefinition.java54 protected ClassDeclaration exp[]; field in class:MemberDefinition
143 proxy.exp = field.getExceptions(env);
228 if (expIds != null && exp == null) {
230 exp = new ClassDeclaration[0];
235 return exp;
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp1640 // Return true if exp is a constant times an induction var
1641 bool PhaseIdealLoop::is_scaled_iv(Node* exp, Node* iv, int* p_scale) { argument
1642 if (exp == iv) {
1648 int opc = exp->Opcode();
1650 if (exp->in(1) == iv && exp->in(2)->is_Con()) {
1652 *p_scale = exp->in(2)->get_int();
1656 if (exp->in(2) == iv && exp->in(1)->is_Con()) {
1658 *p_scale = exp
1675 is_scaled_iv_plus_offset(Node* exp, Node* iv, int* p_scale, Node** p_offset, int depth) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DStepPattern.java959 public void setExpression(Expression exp) argument
961 exp.exprSetParent(StepPattern.this);
962 m_predicates[m_index] = exp;
1013 public void setExpression(Expression exp) argument
1015 exp.exprSetParent(this);
1016 m_relativePathPattern = (StepPattern)exp;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapHprofBinWriter.java573 } catch (IOException exp) {
574 throw new RuntimeException(exp);
842 } catch (IOException exp) {
843 throw new RuntimeException(exp);
874 } catch (IOException exp) {
875 throw new RuntimeException(exp);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DHprofReader.java239 } catch (EOFException exp) {
240 handleEOF(exp, snapshot);
276 } catch (EOFException exp) {
277 handleEOF(exp, snapshot);
865 private void handleEOF(EOFException exp, Snapshot snapshot) { argument
867 exp.printStackTrace();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConnectorImpl.java207 } catch (Exception exp) {
210 exp.printStackTrace();
250 } catch (Exception exp) {
253 exp.printStackTrace();

Completed in 841 milliseconds

12345678910