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

123456

/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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java1077 * @param exp - textual representation of the expression
1079 public Expression parseExpression(SyntaxTreeNode parent, String exp) { argument
1080 return (Expression)parseTopLevel(parent, "<EXPRESSION>"+exp, null);
1092 String exp = parent.getAttribute(attr);
1094 if ((exp.length() == 0) && (def != null)) exp = def;
1096 return (Expression)parseTopLevel(parent, "<EXPRESSION>"+exp, 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/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/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/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/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp3829 ExpandRule *exp = new ExpandRule(); local
3863 exp->_newopers.addName(ident);
3876 exp->_newopconst.Insert(ident, c);
3928 exp->add_instruction(instr_and_operands);
3945 return (exp);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp2062 void exp (LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, LIR_Opr tmp4, LIR_Opr tmp5) { append(new LIR_Op2(lir_exp , from, tmp1, to, tmp2, tmp3, tmp4, tmp5)); } function in class:LIR_List

Completed in 87 milliseconds

123456