/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JCase.java | 39 * JBlock of statements which makes up body of this While statement 41 private JBlock body = null; field in class:JCase 68 public JBlock body() { method in class:JCase 69 if (body == null) body=new JBlock( false, true ); 70 return body; 80 if (body != null) 81 f.s(body);
|
H A D | JDoLoop.java | 41 * JBlock of statements which makes up body of this Do statement 43 private JBlock body = null; field in class:JDoLoop 52 public JBlock body() { method in class:JDoLoop 53 if (body == null) body = new JBlock(); 54 return body; 59 if (body != null) 60 f.g(body);
|
H A D | JWhileLoop.java | 41 * JBlock of statements which makes up body of this While statement 43 private JBlock body = null; field in class:JWhileLoop 56 public JBlock body() { method in class:JWhileLoop 57 if (body == null) body = new JBlock(); 58 return body; 67 if (body != null) 68 f.s(body);
|
H A D | JForEach.java | 39 private JBlock body = null; // lazily created field in class:JForEach 59 public JBlock body() { method in class:JForEach 60 if (body == null) 61 body = new JBlock(); 62 return body; 69 if (body != null) 70 f.g(body).nl();
|
H A D | JCatchBlock.java | 37 private JBlock body = new JBlock(); field in class:JCatchBlock 49 public JBlock body() { method in class:JCatchBlock 50 return body; 57 f.p("catch (").b(var).p(')').g(body);
|
H A D | JTryBlock.java | 38 private JBlock body = new JBlock(); field in class:JTryBlock 45 public JBlock body() { method in class:JTryBlock 46 return body; 61 f.p("try").g(body);
|
H A D | JForLoop.java | 41 private JBlock body = null; field in class:JForLoop 65 public JBlock body() { method in class:JForLoop 66 if (body == null) body = new JBlock(); 67 return body; 82 if (body != null) 83 f.g(body).nl();
|
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/ |
H A D | AbstractPackageIndexWriter.java | 64 * @param body the document tree to which the navigation bar header will be added 66 protected abstract void addNavigationBarHeader(Content body); argument 71 * @param body the document tree to which the navigation bar footer will be added 73 protected abstract void addNavigationBarFooter(Content body); argument 78 * @param body the document tree to which the overview header will be added 80 protected abstract void addOverviewHeader(Content body); argument 88 * @param body the document tree to which the packages list will be added 91 String tableSummary, Content body); 103 Content body = getBody(includeScript, getWindowTitle(windowOverview)); 104 addNavigationBarHeader(body); 90 addPackagesList(PackageDoc[] packages, String text, String tableSummary, Content body) argument 118 addOverview(Content body) argument 126 addIndex(Content body) argument 142 addIndexContents(PackageDoc[] packages, String text, String tableSummary, Content body) argument 156 addConfigurationTitle(Content body) argument 182 addAllClassesLink(Content body) argument [all...] |
H A D | SingleIndexWriter.java | 88 Content body = getBody(true, getWindowTitle(title)); 89 addTop(body); 90 addNavLinks(true, body); 99 body.addContent(divTree); 100 addNavLinks(false, body); 101 addBottom(body); 102 printHtmlDocument(null, true, body);
|
H A D | PackageIndexFrameWriter.java | 76 String tableSummary, Content body) { 91 body.addContent(div); 120 protected void addNavigationBarHeader(Content body) { argument 129 body.addContent(heading); 135 protected void addOverviewHeader(Content body) { argument 142 * @param body the Content object to which the all classes link should be added 144 protected void addAllClassesLink(Content body) { argument 148 body.addContent(div); 154 protected void addNavigationBarFooter(Content body) { argument 156 body 75 addPackagesList(PackageDoc[] packages, String text, String tableSummary, Content body) argument [all...] |
H A D | SplitIndexWriter.java | 116 Content body = getBody(true, getWindowTitle(title)); 117 addTop(body); 118 addNavLinks(true, body); 124 body.addContent(divTree); 125 addNavLinks(false, body); 126 addBottom(body); 127 printHtmlDocument(null, true, body);
|
H A D | PackageIndexWriter.java | 102 * @param body the documentation tree to which the index will be added 104 protected void addIndex(Content body) { argument 111 groupname, configuration.getText("doclet.packages")), body); 120 String tableSummary, Content body) { 128 body.addContent(div); 164 * @param body the documentation tree to which the overview header will be added 166 protected void addOverviewHeader(Content body) { argument 179 body.addContent(div); 204 * @param body the documentation tree to which the overview will be added 206 protected void addOverview(Content body) throw argument 119 addPackagesList(PackageDoc[] packages, String text, String tableSummary, Content body) argument 221 addNavigationBarHeader(Content body) argument 233 addNavigationBarFooter(Content body) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/tree/ |
H A D | InlineMethodExpression.java | 41 Statement body; field in class:InlineMethodExpression 46 InlineMethodExpression(long where, Type type, MemberDefinition field, Statement body) { argument 49 this.body = body; 55 body = body.inline(env, new Context(ctx, this)); 56 if (body == null) { 58 } else if (body.op == INLINERETURN) { 59 Expression expr = ((InlineReturnStatement)body).expr; 69 // When this node was constructed, "copyInline" walked the body [all...] |
H A D | DoStatement.java | 41 Statement body; field in class:DoStatement 47 public DoStatement(long where, Statement body, Expression cond) { argument 49 this.body = body; 61 vset = body.check(env, newctx, reach(env, vset), exp); 63 // get to the test either by falling through the body, or through 80 if (body != null) { 81 body = body.inline(env, ctx); 93 if (body ! [all...] |
H A D | InlineNewInstanceExpression.java | 42 Statement body; field in class:InlineNewInstanceExpression 47 InlineNewInstanceExpression(long where, Type type, MemberDefinition field, Statement body) { argument 50 this.body = body; 59 if (body != null) { 63 body = body.inline(env, newctx); 65 if ((body != null) && (body.op == INLINERETURN)) { 66 body [all...] |
H A D | CatchStatement.java | 45 Statement body; field in class:CatchStatement 51 public CatchStatement(long where, Expression texpr, IdentifierToken id, Statement body) { argument 56 this.body = body; 60 public CatchStatement(long where, Expression texpr, Identifier id, Statement body) { argument 64 this.body = body; 96 return body.check(env, ctx, vset, exp); 111 if (body != null) { 112 body [all...] |
H A D | WhileStatement.java | 42 Statement body; field in class:WhileStatement 47 public WhileStatement(long where, Expression cond, Statement body) { argument 50 this.body = body; 66 // check the body, given that the condition returned true. 67 vset = body.check(env, newctx, cvars.vsTrue, exp); 82 if (body != null) { 83 body = body.inline(env, ctx); 93 + ((body ! [all...] |
H A D | ForStatement.java | 44 Statement body; field in class:ForStatement 49 public ForStatement(long where, Statement init, Expression cond, Expression inc, Statement body) { argument 54 this.body = body; 80 vset = body.check(env, newctx, cvars.vsTrue, exp); 100 Statement body[] = {init, this}; 102 return new CompoundStatement(where, body).inline(env, ctx); 107 if (body != null) { 108 body = body [all...] |
H A D | FinallyStatement.java | 44 Statement body; field in class:FinallyStatement 54 public FinallyStatement(long where, Statement body, Statement finalbody) { argument 56 this.body = body; 61 // * Constructor for try (init) {body} 63 // public FinallyStatement(long where, Statement init, Statement body, int junk) { 64 // this(where, body, null); 169 Vset vset1 = body.check(env, newctx1, vset.copy(), newexp) 182 // generated by the body into exp. 204 if (body ! [all...] |
H A D | SynchronizedStatement.java | 44 Statement body; field in class:SynchronizedStatement 50 public SynchronizedStatement(long where, Expression expr, Statement body) { argument 53 this.body = body; 68 vset = body.check(env, newctx, vset, exp); 76 if (body != null) { 77 body = body.inline(env, ctx); 89 if (body != null) { 90 s.body [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/ |
H A D | HtmlTree.java | 122 * @param body content for the anchor tag 125 public static HtmlTree A(String ref, Content body) { argument 126 HtmlTree htmltree = new HtmlTree(HtmlTag.A, nullCheck(body)); 135 * @param body content for the anchor tag 138 public static HtmlTree A_NAME(String name, Content body) { argument 140 htmltree.addContent(nullCheck(body)); 159 * @param body content for the tag 162 public static HtmlTree CAPTION(Content body) { argument 163 HtmlTree htmltree = new HtmlTree(HtmlTag.CAPTION, nullCheck(body)); 170 * @param body conten 173 CODE(Content body) argument 184 DD(Content body) argument 195 DL(Content body) argument 208 DIV(HtmlStyle styleClass, Content body) argument 221 DIV(Content body) argument 231 DT(Content body) argument 242 EM(Content body) argument 308 HEADING(HtmlTag headingTag, boolean printTitle, HtmlStyle styleClass, Content body) argument 327 HEADING(HtmlTag headingTag, HtmlStyle styleClass, Content body) argument 340 HEADING(HtmlTag headingTag, boolean printTitle, Content body) argument 351 HEADING(HtmlTag headingTag, Content body) argument 364 HTML(String lang, Content head, Content body) argument 376 I(Content body) argument 387 LI(Content body) argument 398 LI(HtmlStyle styleClass, Content body) argument 459 NOSCRIPT(Content body) argument 470 P(Content body) argument 481 P(HtmlStyle styleClass, Content body) argument 494 SMALL(Content body) argument 505 STRONG(Content body) argument 516 SPAN(Content body) argument 527 SPAN(HtmlStyle styleClass, Content body) argument 544 TABLE(int border, int width, String summary, Content body) argument 565 TABLE(HtmlStyle styleClass, int border, int cellPadding, int cellSpacing, String summary, Content body) argument 588 TABLE(int border, int cellPadding, int cellSpacing, String summary, Content body) argument 600 TD(HtmlStyle styleClass, Content body) argument 613 TD(Content body) argument 625 TH(HtmlStyle styleClass, String scope, Content body) argument 640 TH(String scope, Content body) argument 650 TITLE(Content body) argument 661 TR(Content body) argument 673 UL(HtmlStyle styleClass, Content body) argument [all...] |
/openjdk7/jdk/src/share/native/java/lang/reflect/ |
H A D | Proxy.c | 54 jbyte *body; local 72 body = (jbyte *)malloc(length); 74 if (body == 0) { 79 (*env)->GetByteArrayRegion(env, data, offset, length, body); 102 result = (*env)->DefineClass(env, utfName, loader, body, length); 108 free(body);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/ |
H A D | ArrayField.java | 107 JVar $idx,$value; JBlock body; 117 body = $getAll.body(); 119 body._if( acc.ref(true).eq(JExpr._null()) )._then() 121 JVar var = body.decl(exposedType.array(), "retVal", JExpr.newArray(implType,acc.ref(true).ref("length"))); 122 body.add(codeModel.ref(System.class).staticInvoke("arraycopy") 126 body._return(JExpr.direct("retVal")); 139 $get.body()._if(acc.ref(true).eq(JExpr._null()))._then() 143 $get.body()._return(acc.ref(true).component($idx)); 152 $getLength.body() [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/ |
H A D | Tree.java | 152 private final Tree body; field in class:Tree.Optional 154 private Optional(Tree body) { argument 155 this.body = body; 170 body.write(parent,true,repeated); 178 private final Tree body; field in class:Tree.Repeated 180 private Repeated(Tree body) { argument 181 this.body = body; 186 return body [all...] |
/openjdk7/langtools/test/com/sun/javadoc/testHtmlDocument/ |
H A D | TestHtmlDocument.java | 91 HtmlTree body = new HtmlTree(HtmlTag.BODY); 93 body.addContent(pMarker); 106 body.addContent(p); 113 body.addContent(p1); 128 body.addContent(dlDisplay); 130 body.addContent(emptyString); 132 body.addContent(emptyComment); 134 body.addContent(hr); 135 html.addContent(body);
|