/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/ |
H A D | AbstractTreeWriter.java | 128 * @param div the content tree to which the tree will be added 130 protected void addTree(List<ClassDoc> list, String heading, Content div) { argument 134 div.addContent(HtmlTree.HEADING(HtmlConstants.CONTENT_HEADING, true, 137 list, list == classtree.baseEnums(), div);
|
H A D | PackageTreeWriter.java | 118 Content div = HtmlTree.DIV(HtmlStyle.header, heading); 120 addLinkToMainTree(div); 122 body.addContent(div); 152 * @param div the content tree to which the link will be added 154 protected void addLinkToMainTree(Content div) { argument 157 div.addContent(span); 161 div.addContent(ul);
|
H A D | PackageWriterImpl.java | 106 HtmlTree div = new HtmlTree(HtmlTag.DIV); 107 div.addStyle(HtmlStyle.header); 110 div.addContent(annotationContent); 116 div.addContent(tHeading); 117 addDeprecationInfo(div); 122 div.addContent(docSummaryDiv); 127 div.addContent(descPara); 129 bodyTree.addContent(div); 137 HtmlTree div = new HtmlTree(HtmlTag.DIV); 138 div 147 addDeprecationInfo(Content div) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JExpression.java | 87 JExpression div(JExpression right); method in interface:JExpression
|
H A D | JExpressionImpl.java | 73 public final JExpression div(JExpression right) { method in class:JExpressionImpl 74 return JOp.div(this, right);
|
H A D | JOp.java | 148 public static JExpression div(JExpression left, JExpression right) { method in class:JOp
|
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | Query.java | 109 * A code representing the {@link Query#div} expression. This is 554 public static ValueExp div(ValueExp value1, ValueExp value2) { method in class:Query
|
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | templateTable.hpp | 99 enum Operation { add, sub, mul, div, rem, _and, _or, _xor, shl, shr, ushr }; enumerator in enum:TemplateTable::Operation
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | globalDefinitions.cpp | 330 size_t cur, div, next; local 333 div = MIN2(a, b); 335 assert(div != 0, "lcm requires positive arguments"); 338 while ((next = cur % div) != 0) { 339 cur = div; div = next; 343 julong result = julong(a) * b / div;
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/ |
H A D | Compiler.java | 150 expr = div(opPos); break; 399 * Compile a 'div' operation. 407 protected Expression div(int opPos) throws TransformerException method in class:Compiler
|
/openjdk7/jdk/src/share/native/sun/awt/medialib/ |
H A D | mlib_ImageScanPoly.c | 68 mlib_d64 dx, dy, div; local 90 div = a * d - b * c; 92 if (div == 0.0) { 209 if (div > 0) { 358 mlib_d64 dxCl = xClip * div; 359 mlib_d64 dyCl = yClip * div; 360 mlib_d64 dwCl = wClip * div; 361 mlib_d64 dhCl = hClip * div; 382 div = 1.0 / div; [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/ |
H A D | SchemaParser.java | 998 if (localName.equals("div")) 1018 final Div div; field in class:SchemaParser.DivState 1019 DivState(Div div) { argument 1020 super(div); 1021 this.div = div; 1026 div.endDiv(startLocation, annotations);
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | loopTransform.cpp | 1995 Node *div = new (C) DivINode(0,add,stride); local 1996 register_new_node(div,ctrl); 1997 Node *mul = new (C) MulINode(div,stride);
|
/openjdk7/jdk/src/share/native/sun/security/ec/impl/ |
H A D | mpi.c | 4208 mp_int *div, /* i: divisor */ 4222 if(mp_cmp_z(div) == 0) 4226 if((ix = s_mp_ispow2(div)) >= 0) { 4236 MP_SIGN(div) = ZPOS; 4242 MP_CHECKOK( s_mp_norm(rem, div, &d) ); 4249 /* Find a partial substring of rem which is at least div */ 4251 while (MP_USED(rem) > MP_USED(div) || s_mp_cmp(rem, div) >= 0) { 4255 unusedRem = MP_USED(rem) - MP_USED(div); 4258 MP_USED(&part) = MP_USED(div); 4207 s_mp_div(mp_int *rem, mp_int *div, mp_int *quot) argument [all...] |
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_LIR.hpp | 2069 void div (LIR_Opr left, LIR_Opr right, LIR_Opr res, CodeEmitInfo* info = NULL) { append(new LIR_Op2(lir_div, left, right, res, info)); } function in class:LIR_List
|