Searched refs:tag (Results 1 - 25 of 409) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DConstantTag.java48 private static final int JVM_CONSTANT_UnresolvedClass = 100; // Temporary tag until actual use
49 private static final int JVM_CONSTANT_ClassIndex = 101; // Temporary tag while constructing constant pool
50 private static final int JVM_CONSTANT_UnresolvedString = 102; // Temporary tag until actual use
51 private static final int JVM_CONSTANT_StringIndex = 103; // Temporary tag while constructing constant pool
66 private byte tag; field in class:ConstantTag
68 public ConstantTag(byte tag) { argument
69 this.tag = tag;
72 public int value() { return tag; }
74 public boolean isKlass() { return tag
[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/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...]
H A DBerEncoder.java101 * Put an integer with the specified tag.
104 * @param tag The tag to encode.
107 public void putInteger(int v, int tag) { argument
109 putTag(tag) ;
126 * Put an integer expressed as a long with the specified tag.
129 * @param tag The tag to encode.
132 public void putInteger(long v, int tag) { argument
134 putTag(tag) ;
157 putOctetString(byte[] s, int tag) argument
181 putOid(long[] s, int tag) argument
202 putNull(int tag) argument
261 closeSequence(int tag) argument
291 putTag(int tag) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolVisitor.java34 * The second argument is always the constant pool tag,
35 * even for methods like {@link #visitUTF8(int, byte, String)} which only apply to one tag.
77 * @param tag always {@link #CONSTANT_Utf8}
82 public void visitUTF8(int index, byte tag, String utf8) { argument
92 * @param tag one of {@link #CONSTANT_Integer},
100 public void visitConstantValue(int index, byte tag, Object value) { argument
106 * @param tag one of {@link #CONSTANT_String},
113 public void visitConstantString(int index, byte tag, argument
120 * @param tag always {@link #CONSTANT_NameAndType}
128 public void visitDescriptor(int index, byte tag, argument
147 visitMemberRef(int index, byte tag, String className, String memberName, String signature, int classNameIndex, int descriptorIndex) argument
184 tagName(byte tag) argument
[all...]
H A DConstantPoolPatch.java96 /** Report the tag at the given index in the constant pool. */
171 public void visitUTF8(int index, byte tag, String utf8) {
177 public void visitConstantValue(int index, byte tag, Object value) {
178 putConstantValue(index, tag, valueMap.get(value));
183 public void visitConstantString(int index, byte tag, String name, int nameIndex) {
184 if (tag == CONSTANT_Class) {
185 putConstantValue(index, tag, classMap.get(name));
188 assert(tag == CONSTANT_String);
189 visitConstantValue(index, tag, name);
204 void show(int index, byte tag, Objec
259 checkConstantTag(byte tag, Object value) argument
357 putConstantValue(int index, byte tag, Object value) argument
403 putMemberRef(int index, byte tag, String className, String memberName, String signature) argument
439 classForTag(byte tag) argument
[all...]
/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/classes/sun/security/util/
H A DDerValue.java57 /** The tag class types */
63 /** The DER tag of the value; one of the tag_ constants. */
64 public byte tag; field in class:DerValue
165 * Returns true if the tag class is UNIVERSAL.
167 public boolean isUniversal() { return ((tag & 0x0c0) == 0x000); }
170 * Returns true if the tag class is APPLICATION.
172 public boolean isApplication() { return ((tag & 0x0c0) == 0x040); }
175 * Returns true iff the CONTEXT SPECIFIC bit is set in the type tag.
178 public boolean isContextSpecific() { return ((tag & 0x0c0) == 0x080); }
181 * Returns true iff the CONTEXT SPECIFIC TAG matches the passed tag
235 DerValue(byte tag, byte[] data) argument
922 resetTag(byte tag) argument
[all...]
/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/jdk/src/share/back/
H A DClassObjectReferenceImpl.c34 jbyte tag; local
51 tag = referenceTypeTag(object);
52 (void)outStream_writeByte(out, tag);
/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/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DValueTaglet.java34 * An inline Taglet representing the value tag. This tag should only be used with
36 * fields. This inline tag has an optional field name parameter. If the name is
39 * is retrieved for the field that the inline tag appears on. The name is specifed
60 * Will return false because this inline tag may
69 * Will return false because this inline tag may
78 * Will return false because this inline tag may
87 * Will return false because this inline tag may
96 * Will return false because this inline tag may
108 * @param tag th
119 getFieldDoc(Configuration config, Tag tag, String name) argument
161 getTagletOutput(Tag tag, TagletWriter writer) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationParser.java271 * u1 tag;
295 int tag = buf.get();
296 switch(tag) {
308 result = parseConst(tag, buf, constPool);
320 * the specified tag byte at the current position in the specified byte
323 * of the type indicated by the specified tag, as described in the
328 private static Object parseConst(int tag, argument
331 switch(tag) {
352 "Invalid member-value tag in annotation: " + tag);
727 exceptionProxy(int tag) argument
766 skipMemberValue(int tag, ByteBuffer buf) argument
[all...]
/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/test/sun/security/x509/GeneralName/
H A DEncode.java32 * an explicit tag
42 short tag = (byte)(dv.tag & 0x1f);
43 if (tag != GeneralNameInterface.NAME_DIRECTORY) {
44 throw new Exception("Invalid tag for Directory name");
/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/hotspot/src/share/vm/utilities/
H A DconstantTag.hpp39 JVM_CONSTANT_InternalMin = 100, // First implementation tag (aside from bad value of course)
40 JVM_CONSTANT_UnresolvedClass = 100, // Temporary tag until actual use
41 JVM_CONSTANT_ClassIndex = 101, // Temporary tag while constructing constant pool
42 JVM_CONSTANT_UnresolvedString = 102, // Temporary tag until actual use
43 JVM_CONSTANT_StringIndex = 103, // Temporary tag while constructing constant pool
44 JVM_CONSTANT_UnresolvedClassInError = 104, // Error tag due to resolution error
46 JVM_CONSTANT_InternalMax = 105 // Last implementation tag
101 constantTag(jbyte tag) { argument
102 assert((tag >= 0 && tag <
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DOpenTypeTables.h58 ATag tag; member in struct:TagAndOffsetRecord
71 LETag tag; member in struct:FeatureMap
/openjdk7/langtools/test/tools/javadoc/varArgs/
H A DMain.java52 for (SeeTag tag : cd.seeTags()) {
53 if (tag.referencedMember() != cd.methods()[0]) {
54 throw new Error("5006659: @see tag meets varArgs");
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAnnotation.java79 int tag = cr.readUnsignedByte();
80 switch (tag) {
90 return new Primitive_element_value(cr, tag);
93 return new Enum_element_value(cr, tag);
96 return new Class_element_value(cr, tag);
99 return new Annotation_element_value(cr, tag);
102 return new Array_element_value(cr, tag);
105 throw new InvalidAnnotation("unrecognized tag: " + tag);
109 protected element_value(int tag) { argument
125 public final int tag; field in class:Annotation.element_value
129 Primitive_element_value(ClassReader cr, int tag) argument
148 Enum_element_value(ClassReader cr, int tag) argument
168 Class_element_value(ClassReader cr, int tag) argument
186 Annotation_element_value(ClassReader cr, int tag) argument
205 Array_element_value(ClassReader cr, int tag) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagStack.java37 * When a start tag is encountered an element is pushed onto
38 * the stack, when an end tag is enountered an element is popped
48 TagElement tag; field in class:TagStack
60 TagStack(TagElement tag, TagStack next) { argument
61 this.tag = tag;
62 this.elem = tag.getElement();
65 Element elem = tag.getElement();
75 if (tag.isPreformatted()) {
161 "<" + tag
[all...]

Completed in 85 milliseconds

1234567891011>>