| /openjdk7/langtools/src/share/classes/com/sun/tools/doclets/ |
| H A D | Taglet.java | 67 * false for inline tags. 77 * false for inline tags. 87 * false for inline tags. 97 * false for inline tags. 107 * false for inline tags. 117 * interfaces). Set to false for inline tags. 152 * @param tags the array of <code>Tag</code>s representing of this custom tag. 155 public abstract String toString(Tag[] tags); argument
|
| /openjdk7/langtools/test/com/sun/javadoc/testLegacyTaglet/ |
| H A D | ToDoTaglet.java | 161 * @param tags the array of <code>Tag</code>s representing of this custom tag. 163 public String toString(Tag[] tags) { argument 164 if (tags.length == 0) { 169 for (int i = 0; i < tags.length; i++) { 173 result += tags[i].text();
|
| H A D | UnderlineTaglet.java | 128 * This method should not be called since arrays of inline tags do not 131 * @param tags the array of <code>Tag</code>s representing of this custom tag. 133 public String toString(Tag[] tags) { argument
|
| /openjdk7/jdk/test/sun/java2d/cmm/ProfileOp/ |
| H A D | ReadProfileTest.java | 46 static Hashtable [] tags; field in class:ReadProfileTest 55 static void getProfileTags(byte [] data, Hashtable tags) { argument 68 tags.put(tagSig, tagData); 74 tags = new Hashtable[cspaces.length]; 79 tags[i] = new Hashtable(); 80 getProfileTags(profiles[i], tags[i]); 99 Iterator<Integer> iter = tags[i].keySet().iterator(); 104 (byte[]) tags[i].get(tagSig)))
|
| H A D | ReadWriteProfileTest.java | 27 * @summary Verifies reading and writing profiles and tags of the standard color 46 static Hashtable<Integer,byte[]> [] tags; field in class:ReadWriteProfileTest 54 static void getProfileTags(byte [] data, Hashtable tags) { argument 67 tags.put(tagSig, tagData); 73 tags = new Hashtable[cspaces.length]; 78 tags[i] = new Hashtable(); 79 getProfileTags(profiles[i], tags[i]); 94 for (int tagSig : tags[i].keySet()) { 111 if (!Arrays.equals(tagData1, tags[i].get(tagSig)))
|
| /openjdk7/hotspot/src/cpu/x86/vm/ |
| H A D | interp_masm_x86_32.hpp | 83 void get_cpool_and_tags(Register cpool, Register tags) { get_constant_pool(cpool); movptr(tags, Address(cpool, constantPoolOopDesc::tags_offset_in_bytes())); argument
|
| H A D | interp_masm_x86_64.hpp | 102 void get_cpool_and_tags(Register cpool, Register tags) { argument 104 movptr(tags, Address(cpool, constantPoolOopDesc::tags_offset_in_bytes()));
|
| /openjdk7/jdk/src/share/classes/com/sun/beans/editors/ |
| H A D | EnumEditor.java | 49 private final String[] tags; field in class:EnumEditor 59 this.tags = new String[values.length]; 61 this.tags[i] = ( ( Enum )values[i] ).name(); 107 return this.tags.clone();
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/ |
| H A D | ExpertTaglet.java | 81 public String toString(Tag[] tags) { argument 82 if (tags == null || tags.length == 0) return null; 86 for(Tag t:tags) {
|
| H A D | LiteralTaglet.java | 35 * nested javadoc tags. 62 public String toString(Tag[] tags) { return null; } argument
|
| H A D | TagletWriter.java | 73 * Return the header for the param tags. 76 * @return the header for the param tags. 81 * Return the output for param tags. 101 * @param seeTags the array of See tags. 102 * @return the output of the see tags. 109 * @param simpleTags the array of simple tags. 110 * @return the output of the simple tags. 163 * @param doc the Doc that we are print tags for. 170 tagletManager.checkTags(doc, doc.tags(), false); 190 Tag[] tags 241 commentTagsToOutput(Tag holderTag, Tag[] tags) argument 254 commentTagsToOutput(Doc holderDoc, Tag[] tags) argument 269 commentTagsToOutput(Tag holderTag, Doc holderDoc, Tag[] tags, boolean isFirstSentence) argument [all...] |
| H A D | TagletManager.java | 62 * The map of custom tags. 67 * The array of custom tags that can appear in packages. 72 * The array of custom tags that can appear in classes or interfaces. 77 * The array of custom tags that can appear in fields. 82 * The array of custom tags that can appear in constructors. 87 * The array of custom tags that can appear in methods. 92 * The array of custom tags that can appear in the overview. 97 * The array of custom tags that can appear in comments. 102 * The array of custom tags that can appear in the serialized form. 112 * Keep track of standard tags 379 checkTags(Doc doc, Tag[] tags, boolean areInlineTags) argument [all...] |
| /openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
| H A D | Comment.java | 34 * comment for different tags... 44 * sorted comments with different tags. 49 * text minus any tags. 65 * Separate the comment into the text part and zero to N tags. 194 * Return all tags in this comment. 196 Tag[] tags() { method in class:Comment 201 * Return tags of the specified kind in this comment. 203 Tag[] tags(String tagname) { method in class:Comment 218 * Return throws tags in this comment. 231 * Return param tags (excludin [all...] |
| H A D | DocImpl.java | 79 * Cached inline tags. 119 * Return all tags in this Doc item. 121 * @return an array of TagImpl containing all tags on this Doc item. 123 public Tag[] tags() { method in class:DocImpl 124 return comment().tags(); 128 * Return tags of the specified kind in this Doc item. 131 * @return an array of TagImpl containing all tags whose 'kind()' 134 public Tag[] tags(String tagname) { method in class:DocImpl 135 return comment().tags(tagname); 139 * Return the see also tags i [all...] |
| /openjdk7/jdk/src/share/classes/sun/invoke/anon/ |
| H A D | ConstantPoolParser.java | 39 final byte[] tags; field in class:ConstantPoolParser 56 this.tags = new byte[firstHeader[4]]; 89 return tags[index]; 195 for (int i = 1; i < tags.length; ) { 197 assert(tags[i] == 0 || tags[i] == tag); 198 tags[i] = tag; 204 tags[i] = tag; 226 tags[i] = tag; 234 tags[ [all...] |
| /openjdk7/langtools/src/share/classes/com/sun/javadoc/ |
| H A D | Doc.java | 50 * Return all tags in this Doc item. 52 * @return an array of {@link Tag} objects containing all tags on 55 Tag[] tags(); method in interface:Doc 58 * Return tags of the specified {@linkplain Tag#kind() kind} in 61 * For example, if 'tagname' has value "@serial", all tags in 65 * @return an array of Tag containing all tags whose 'kind()' 68 Tag[] tags(String tagname); method in interface:Doc 71 * Return the see also tags in this Doc item. 73 * @return an array of SeeTag containing all @see tags. 78 * Return comment as an array of tags [all...] |
| /openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/ |
| H A D | TagletWriterImpl.java | 73 Tag[] deprs = doc.tags("deprecated"); 270 public TagletOutput commentTagsToOutput(Tag holderTag, Tag[] tags) { argument 271 return commentTagsToOutput(holderTag, null, tags, false); 277 public TagletOutput commentTagsToOutput(Doc holderDoc, Tag[] tags) { argument 278 return commentTagsToOutput(null, holderDoc, tags, false); 285 Doc holderDoc, Tag[] tags, boolean isFirstSentence) { 287 holderTag, holderDoc, tags, isFirstSentence)); 284 commentTagsToOutput(Tag holderTag, Doc holderDoc, Tag[] tags, boolean isFirstSentence) argument
|
| H A D | HtmlDocletWriter.java | 131 * missing. (Also see DocRootTaglet for {@docRoot} tags in doc 136 * written, looping to handle all such tags in htmlstr. 147 // Return if no inline tags exist 278 * Adds the tags information. 280 * @param doc the doc for which the tags will be generated 281 * @param htmltree the documentation tree to which the tags will be added 304 * Check whether there are any tags for Serialization Overview 307 * @param field the FieldDoc object to check for tags. 308 * @return true if there are tags to be printed else return false. 1309 * Print table caption end tags 2329 printCommentTags(Doc doc, Tag[] tags, boolean depr, boolean first) argument 2355 addCommentTags(Doc doc, Tag[] tags, boolean depr, boolean first, Content htmltree) argument 2388 commentTagsToString(Tag holderTag, Doc doc, Tag[] tags, boolean isFirstSentence) argument [all...] |
| /openjdk7/langtools/test/tools/javadoc/lib/ |
| H A D | Tester.java | 272 private void prParamTags(int off, ParamTag tags[]) throws IOException { argument 273 for (ParamTag tag : tags)
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/ |
| H A D | ConstantPool.java | 87 tags = new OopField(type.getOopField("_tags"), 0); 106 private static OopField tags; field in class:ConstantPool 119 public TypeArray getTags() { return (TypeArray) tags.getValue(this); } 421 visitor.doOop(tags, true); 485 TypeArray tags = getTags(); 492 byte cpConstType = tags.getByteAt(ci); 505 int cpConstType = (int)tags.getByteAt(ci);
|
| /openjdk7/jdk/src/share/classes/javax/swing/text/html/ |
| H A D | HTMLWriter.java | 46 * Stores all elements for which end tags have to 60 * Stores all embedded tags. Embedded tags are tags that are 61 * stored as attributes in other tags. Generally they're 65 private Vector<HTML.Tag> tags = new Vector<HTML.Tag>(10); field in class:HTMLWriter 68 * Values for the tags. 126 * all the tags and its attributes. 168 so emit end tags for items on the stack until the 209 /* Emit all remaining end tags */ [all...] |
| H A D | StyleSheet.java | 1306 String[] tags, String[] ids, String[] classes, 1319 String tagString = tags[counter]; 1324 getStyles(childMapping, styles, tags, ids, classes, 1332 getStyles(childMapping, styles, tags, ids, classes, 1338 getStyles(childMapping, styles, tags, ids, classes, 1347 getStyles(childMapping, styles, tags, ids, classes, 1353 getStyles(childMapping, styles, tags, ids, classes, 1366 String[] tags, 1375 int numElements = tags.length; 1376 String tagString = tags[ 1304 getStyles(SelectorMapping parentMapping, Vector<SelectorMapping> styles, String[] tags, String[] ids, String[] classes, int index, int numElements, Hashtable<SelectorMapping, SelectorMapping> alreadyChecked) argument 1365 createResolvedStyle(String selector, String[] tags, String[] ids, String[] classes) argument [all...] |
| /openjdk7/langtools/test/tools/javac/tree/ |
| H A D | TreePosTest.java | 150 tags.add(args[++i]); 308 /** The set of tags for tree nodes to be analyzed; if empty, all tree nodes 310 Set<String> tags = new HashSet<String>(); field in class:TreePosTest 411 return tags.size() == 0 || tags.contains(tagNames.get(self.tag)); 469 * Names for tree tags.
|
| /openjdk7/langtools/test/tools/javac/failover/ |
| H A D | CheckAttributedTree.java | 153 tags.add(args[++i]); 330 /** The set of tags for tree nodes to be analyzed; if empty, all tree nodes 332 Set<String> tags = new HashSet<String>(); field in class:CheckAttributedTree 459 * Names for tree tags.
|
| /openjdk7/hotspot/src/share/vm/oops/ |
| H A D | constantPoolOop.hpp | 98 void set_tags(typeArrayOop tags) { oop_store_without_check((oop*)&_tags, tags); } argument 99 void tag_at_put(int which, jbyte t) { tags()->byte_at_put(which, t); } 100 void release_tag_at_put(int which, jbyte t) { tags()->release_byte_at_put(which, t); } 178 typeArrayOop tags() const { return _tags; } function in class:constantPoolOopDesc 343 constantTag tag_at(int which) const { return (constantTag)tags()->byte_at_acquire(which); }
|