Searched defs:tag (Results 1 - 25 of 201) sorted by relevance

123456789

/openjdk7/hotspot/src/share/vm/memory/
H A Dserialize.cpp49 int tag = 0; local
50 soc->do_tag(--tag);
73 soc->do_tag(--tag);
75 soc->do_tag(--tag);
77 soc->do_tag(--tag);
81 soc->do_tag(--tag);
85 soc->do_tag(--tag);
87 soc->do_tag(--tag);
91 soc->do_tag(--tag);
/openjdk7/jdk/src/share/back/
H A DClassObjectReferenceImpl.c34 jbyte tag; local
51 tag = referenceTypeTag(object);
52 (void)outStream_writeByte(out, tag);
H A DClassLoaderReferenceImpl.c55 jbyte tag; local
59 tag = referenceTypeTag(clazz);
61 (void)outStream_writeByte(out, tag);
/openjdk7/langtools/test/com/sun/javadoc/testNestedInlineTag/testtaglets/
H A DBoldTaglet.java47 BoldTaglet tag = new BoldTaglet();
48 Taglet t = (Taglet) tagletMap.get(tag.getName());
50 tagletMap.remove(tag.getName());
52 tagletMap.put(tag.getName(), tag);
58 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { argument
60 inlineTags.add(new TextTag(tag.holder(), "<b>"));
61 inlineTags.addAll(Arrays.asList(tag.inlineTags()));
62 inlineTags.add(new TextTag(tag.holder(), "</b>"));
63 return writer.commentTagsToOutput(tag, (Ta
[all...]
H A DGreenTaglet.java49 GreenTaglet tag = new GreenTaglet();
50 Taglet t = (Taglet) tagletMap.get(tag.getName());
52 tagletMap.remove(tag.getName());
54 tagletMap.put(tag.getName(), tag);
60 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { argument
62 inlineTags.add(new TextTag(tag.holder(), "<font color=\"green\">"));
63 inlineTags.addAll(Arrays.asList(tag.inlineTags()));
64 inlineTags.add(new TextTag(tag.holder(), "</font>"));
65 return writer.commentTagsToOutput(tag, (Ta
[all...]
H A DUnderlineTaglet.java49 UnderlineTaglet tag = new UnderlineTaglet();
50 Taglet t = (Taglet) tagletMap.get(tag.getName());
52 tagletMap.remove(tag.getName());
54 tagletMap.put(tag.getName(), tag);
60 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { argument
62 inlineTags.add(new TextTag(tag.holder(), "<u>"));
63 inlineTags.addAll(Arrays.asList(tag.inlineTags()));
64 inlineTags.add(new TextTag(tag.holder(), "</u>"));
65 return writer.commentTagsToOutput(tag, (Ta
[all...]
/openjdk7/langtools/test/com/sun/javadoc/testTaglets/taglets/
H A DFoo.java40 Foo tag = new Foo();
41 Taglet t = (Taglet) tagletMap.get(tag.getName());
43 tagletMap.remove(tag.getName());
45 tagletMap.put(tag.getName(), tag);
51 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { argument
53 inlineTags.add(new TextTag(tag.holder(), "<dt><span class=\"strong\">Foo:</span></dt><dd>"));
54 inlineTags.addAll(Arrays.asList(tag.inlineTags()));
55 inlineTags.add(new TextTag(tag.holder(), "</dd>"));
56 return writer.commentTagsToOutput(tag,
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1ErgoVerbose.cpp52 const char* G1ErgoVerbose::to_string(int tag) { argument
53 ErgoHeuristic n = extract_heuristic(tag);
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLetParser.java64 private static String tag = "mlet"; field in class:MLetParser
112 * Scan tag
119 throw new IOException("Missing '>' in tag");
157 String requiresTypeWarning = "<arg type=... value=...> tag requires type parameter.";
158 String requiresValueWarning = "<arg type=... value=...> tag requires value parameter.";
159 String paramOutsideWarning = "<arg> tag outside <mlet> ... </mlet>.";
160 String requiresCodeWarning = "<mlet> tag requires either code or object parameter.";
161 String requiresJarsWarning = "<mlet> tag requires archive parameter.";
191 throw new IOException("Missing '>' in tag");
192 if (nm.equalsIgnoreCase(tag)) {
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.cpp30 VerificationType VerificationType::from_tag(u1 tag) { argument
31 switch (tag) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/xml/
H A DXmlUtil.java36 public static boolean matchesTagNS(Element e, String tag, String nsURI) { argument
38 return e.getLocalName().equals(tag)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DWildcardLoader.java56 protected Loader selectLoader(UnmarshallingContext.State state, TagName tag) throws SAXException { argument
60 Loader l = context.selectRootLoader(state,tag);
/openjdk7/jdk/test/sun/security/util/asn1StringTypes/
H A DStringTypes.java143 DerValue der, byte tag,
145 if (der.tag != tag)
146 throw new Exception("Problem with tag for " + type);
142 verifyDER(String type, DerValue der, byte tag, byte[] data) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/
H A DTaglet.java31 * The interface for a custom tag used by Doclets. A custom
32 * tag must implement this interface. To be loaded and used by
126 * is an inline tag. Return false otherwise.
128 * is an inline tag and false otherwise.
133 * Return the name of this custom tag.
134 * @return the name of this custom tag.
140 * tag, return its string representation, which is output
142 * @param tag the <code>Tag</code> representation of this custom tag.
145 public abstract String toString(Tag tag); argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DCodeTaglet.java36 * <p> The tag {@code {@code ...}} is equivalent to
63 public String toString(Tag tag) { argument
64 return "<code>" + super.toString(tag) + "</code>";
H A DDocRootTaglet.java58 * @param tag a tag representing the custom tag.
62 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DUninitializedType.java52 private UninitializedType(int tag, Type qtype, int offset) { argument
53 super(tag, qtype);
/openjdk7/langtools/test/com/sun/javadoc/testLegacyTaglet/
H A DToDoTaglet.java29 * A sample Taglet representing @todo. This tag can be used in any kind of
30 * {@link com.sun.javadoc.Doc}. It is not an inline tag. The text is displayed
50 * Return the name of this custom tag.
124 * is not an inline tag.
126 * is not an inline tag.
135 * @param tagletMap the map to register this tag to.
138 ToDoTaglet tag = new ToDoTaglet();
139 Taglet t = (Taglet) tagletMap.get(tag.getName());
141 tagletMap.remove(tag.getName());
143 tagletMap.put(tag
151 toString(Tag tag) argument
[all...]
H A DUnderlineTaglet.java29 * A sample Inline Taglet representing {@underline ...}. This tag can be used in any kind of
42 * Return the name of this custom tag.
49 * Will return false since this is an inline tag.
50 * @return false since this is an inline tag.
57 * Will return false since this is an inline tag.
58 * @return false since this is an inline tag.
65 * Will return false since this is an inline tag.
66 * @return false since this is an inline tag.
73 * Will return false since this is an inline tag.
74 * @return false since this is an inline tag
123 toString(Tag tag) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_tag.c41 /* JVMTI tag definitions. */
45 * turned into a tag and/or extracted from a tag is here.
48 * the tag as a check.
59 jlong tag; local
62 tag = TAG_CHECK;
63 tag = (tag << 32) | object_index;
64 return tag;
68 tag_extract(jlong tag) argument
83 jlong tag; local
106 jlong tag; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DTag.java37 * tag field introduced in KRB5_FCC_FVNO_4
43 int tag; field in class:Tag
49 tag = new_tag;
56 tag = new_tag;
63 os.write(tag);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DUniqueIdentity.java76 * @param tag the tag the value is encoded under.
94 * @param tag enocode it under the following tag.
97 public void encode(DerOutputStream out, byte tag) throws IOException { argument
101 out.write(tag);
/openjdk7/langtools/test/tools/javac/tree/
H A DMakeLiteralTest.java68 void test(Object value, int tag, Type type, Object constValue) { argument
70 if (l.type.tag != tag)
71 error("unexpected tag: " + l.getTag() + ": expected: " + tag);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstant.java72 /* In fact this tag is redundant since we can distinguish different
74 * places we will use the tag for switch()es anyway.
77 * need the tag as an index to select the corresponding class name from the
80 protected byte tag; field in class:Constant
82 Constant(byte tag) { this.tag = tag; } argument
99 public final byte getTag() { return tag; }
105 return Constants.CONSTANT_NAMES[tag] + "[" + tag
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpNull.java46 tag = NullTag ;
58 * Constructs a new <CODE>SnmpNull</CODE> from the specified tag value.
62 tag = t ;
68 * Returns the tag value of this <CODE>SnmpNull</CODE>.
72 return tag ;
77 * When the tag is not the universal one, it is preprended
83 if (tag != 5) {
84 result += "[" + tag + "] " ;
87 switch(tag) {
130 newclone.tag
182 private int tag = 5 ; field in class:SnmpNull
[all...]

Completed in 142 milliseconds

123456789