Searched defs:comments (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DElementAnnotationBuilder.java65 void addText(String value, L loc, CL comments) throws BuildException; argument
H A DAnnotations.java71 * Adds comments following the last initial child element annotation.
73 void addComment(CL comments) throws BuildException; argument
75 void addLeadingComment(CL comments) throws BuildException; argument
H A DGrammarSection.java104 void topLevelComment(CL comments) throws BuildException; argument
H A DNameClassBuilder.java69 N commentAfter(N nc, CL comments) throws BuildException; argument
H A DSchemaBuilder.java152 P commentAfter(P p, CL comments) throws BuildException; argument
175 A makeAnnotations(CL comments, Context context); argument
178 String localName, String prefix, L loc, CL comments,
187 * comments, this method returns true.
177 makeElementAnnotationBuilder(String ns, String localName, String prefix, L loc, CL comments, Context context) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DAnnotation.java70 public void addComment(CommentListImpl comments) throws BuildException { argument
73 public void addLeadingComment(CommentListImpl comments) throws BuildException { argument
H A DElementAnnotationBuilderImpl.java67 public void addText(String value, Location loc, CommentList comments) throws BuildException { argument
83 public void addComment(CommentList comments) throws BuildException { argument
86 public void addLeadingComment(CommentList comments) throws BuildException { argument
H A DGrammarBuilderImpl.java119 public void topLevelComment(CommentList comments) throws BuildException { argument
H A DDSchemaBuilderImpl.java190 public DPattern commentAfter(DPattern p, CommentListImpl comments) throws BuildException { argument
205 public Annotation makeAnnotations(CommentListImpl comments, Context context) { argument
209 public ElementAnnotationBuilder makeElementAnnotationBuilder(String ns, String localName, String prefix, LocatorImpl loc, CommentListImpl comments, Context context) { argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSInfo.java57 * (ICMT) General comments. Doesn't contain newline characters.
59 public String comments = null; field in class:DLSInfo
H A DSF2Soundbank.java76 String comments = null; field in class:SF2Soundbank
164 this.comments = chunk.readString(chunk.available());
561 writeInfoStringChunk(writer, "ICMT", this.comments);
830 return comments;
842 comments = s;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/nc/
H A DNameClassBuilderImpl.java107 public NameClass commentAfter(NameClass nc, CL comments) throws BuildException { argument
/openjdk7/jdk/src/share/classes/java/util/
H A DProperties.java649 private static void writeComments(BufferedWriter bw, String comments) argument
652 int len = comments.length();
659 char c = comments.charAt(current);
662 bw.write(comments.substring(last, current));
673 comments.charAt(current + 1) == '\n') {
677 (comments.charAt(current + 1) != '#' &&
678 comments.charAt(current + 1) != '!'))
686 bw.write(comments.substring(last, current));
691 * Calls the <code>store(OutputStream out, String comments)</code> method
697 * String comments)</cod
707 save(OutputStream out, String comments) argument
762 store(Writer writer, String comments) argument
809 store(OutputStream out, String comments) argument
817 store0(BufferedWriter bw, String comments, boolean escUnicode) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPMetadata.java96 public List comments = null; // new ArrayList(); field in class:BMPMetadata
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageMetadata.java97 public List comments = null; // new ArrayList(); field in class:GIFImageMetadata
243 int numComments = comments == null ? 0 : comments.size();
249 byte[] comment = (byte[])comments.get(i);
374 if (comments == null) {
377 Iterator commentIter = comments.iterator();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DSchemaBuilderImpl.java531 public void topLevelComment(CommentList comments) throws BuildException { argument
613 public void topLevelComment(CommentList comments) throws BuildException { argument
674 public ParsedPattern commentAfter(ParsedPattern p, CommentList comments) throws BuildException { argument
705 public Annotations makeAnnotations(CommentList comments, Context context) { argument
710 Location loc, CommentList comments, Context context) {
729 public void addComment(CommentList comments) throws BuildException { argument
733 public void addLeadingComment(CommentList comments) throws BuildException { argument
741 public void addText(String value, Location loc, CommentList comments) throws BuildException { argument
709 makeElementAnnotationBuilder(String ns, String localName, String prefix, Location loc, CommentList comments, Context context) argument
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp1142 /* If there are any per-entry comments, they are in the comments array */
1143 char **comments; member in struct:real_jzfile13
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSchemaParser.java186 CommentList comments; field in class:SchemaParser.Handler
189 CommentList tem = comments;
190 comments = null;
195 if (comments == null)
196 comments = schemaBuilder.makeCommentList();
197 comments.addComment(value, makeLocation());
244 if (parent.comments != null) {
245 annotations = schemaBuilder.makeAnnotations(parent.comments, getContext());
246 parent.comments = null;
355 if (comments !
404 ForeignElementHandler(State nextState, CommentList comments) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactSyntax.java327 private CommentList getComments(CommentList comments) { argument
338 if (comments == null)
339 comments = sb.makeCommentList();
354 comments.addComment(s, loc);
359 return comments;
363 CommentList comments = getComments(null);
364 if (comments == null)
366 return sb.commentAfter(p, comments);
370 CommentList comments = getComments(null);
371 if (comments
[all...]

Completed in 224 milliseconds