Searched refs:tag (Results 51 - 75 of 409) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolParser.java83 /** Report the tag of the indicated CP entry.
196 byte tag = (byte) getUnsignedByte(buffer);
197 assert(tags[i] == 0 || tags[i] == tag);
198 tags[i] = tag;
199 switch (tag) {
204 tags[i] = tag;
208 visitor.visitConstantValue(i, tag, buffer.getInt());
212 visitor.visitConstantValue(i, tag, buffer.getFloat());
216 visitor.visitConstantValue(i, tag, buffer.getLong());
220 visitor.visitConstantValue(i, tag, buffe
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.hpp82 virtual void see_tag(const char* tag, bool push);
83 virtual void pop_tag(const char* 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/src/share/demo/jvmti/waiters/
H A DAgent.cpp84 jlong tag; local
87 tag = (jlong)0;
88 err = jvmti->GetTag(object, &tag);
89 check_jvmti_error(jvmti, err, "get tag");
91 m = (Monitor *)(void *)(ptrdiff_t)tag;
104 tag = (jlong)(ptrdiff_t)(void *)m;
105 err = jvmti->SetTag(object, tag);
106 check_jvmti_error(jvmti, err, "set tag");
212 void Agent::object_free(jvmtiEnv* jvmti, jlong tag) argument
214 /* We just cast the tag t
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/util/
H A DKerberosString.java52 * only affects the byte encoding, the tag of the ASN.1 type is still
65 if (der.tag != DerValue.tag_GeneralString) {
67 "KerberosString's tag is incorrect: " + der.tag);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
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
121 * is an inline tag. Return false otherwise.
123 * is an inline tag and false otherwise.
128 * Return the name of this custom tag.
129 * @return the name of this custom tag.
135 * tag, return its TagletOutput representation, which is output
137 * @param tag the <code>Tag</code> representation of this custom tag.
142 public abstract TagletOutput getTagletOutput(Tag tag, TagletWrite argument
[all...]
H A DSimpleTaglet.java31 * A simple single argument custom tag.
78 * Use in location string when the tag is to
84 * The name of this tag.
94 * The possible locations that this tag can appear in.
100 * @param tagName the name of this tag
102 * @param locations the possible locations that this tag
193 * is an inline tag.
195 * is an inline tag and false otherwise.
204 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { argument
205 return header == null || tag
[all...]
H A DBaseTaglet.java113 * is an inline tag.
115 * is an inline tag and false otherwise.
122 * Return the name of this custom tag.
123 * @return the name of this custom tag.
133 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DOpenTypeUtilities.cpp80 Offset OpenTypeUtilities::getTagOffset(LETag tag, const LEReferenceToArrayOf<TagAndOffsetRecord> &records, LEErrorCode &success) argument
92 const ATag &aTag = records.getAlias(extra,success)->tag;
93 if (SWAPT(aTag) <= tag) {
102 const ATag &aTag = records.getAlias(index+probe,success)->tag;
103 if (SWAPT(aTag) <= tag) {
110 const ATag &aTag = records.getAlias(index,success)->tag;
111 if (SWAPT(aTag) == tag) {
223 static const char *letagToStr(LETag tag, char *str) { argument
224 str[0]= 0xFF & (tag>>24);
225 str[1]= 0xFF & (tag>>1
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmRuntimeImpl.java120 final String tag = "JvmRuntime.getClassPath";
125 final String[] cached = (String[])m.get(tag);
131 if (m != null) m.put(tag,args);
141 final String tag = "JvmRuntime.getBootClassPath";
146 final String[] cached = (String[])m.get(tag);
152 if (m != null) m.put(tag,args);
159 final String tag = "JvmRuntime.getLibraryPath";
164 final String[] cached = (String[])m.get(tag);
170 if (m != null) m.put(tag,args);
177 final String tag
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DBerDecoder.java83 * Fetch an integer with the specified tag.
85 * @param tag The expected tag.
90 * or the tag is not the expected one.
93 public int fetchInteger(int tag) throws BerException { argument
97 if (fetchTag() != tag) {
126 * Fetch an integer with the specified tag and return a long value.
128 * @param tag The expected tag.
133 * or the tag i
136 fetchIntegerAsLong(int tag) argument
179 fetchOctetString(int tag) argument
219 fetchOid(int tag) argument
257 fetchNull(int tag) argument
324 fetchAny(int tag) argument
355 openSequence(int tag) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.cpp128 assert_if_no_error(!inside_attrs(), "cannot print tag inside attrs");
142 void xmlStream::see_tag(const char* tag, bool push) { argument
146 // tag goes up until either null or space:
147 const char* tag_end = strchr(tag, ' ');
148 size_t tag_len = (tag_end == NULL) ? strlen(tag) : tag_end - tag;
149 assert(tag_len > 0, "tag must not be empty");
150 // push the tag onto the stack, pulling down the pointer
169 memcpy(push_ptr, tag, tag_len);
176 void xmlStream::pop_tag(const char* tag) { argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp99 ValueType(ValueTag tag, int size): _tag(tag), _size(size) {} argument
107 ValueTag tag() const { return _tag; } // the 'canonical' tag (useful for type matching) function in class:ValueType
117 bool is_void() { return tag() == voidTag; }
118 bool is_int() { return tag() == intTag; }
119 bool is_long() { return tag() == longTag; }
120 bool is_float() { return tag() == floatTag; }
121 bool is_double() { return tag() == doubleTag; }
127 bool is_illegal() { return tag()
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java181 byte tag;
183 tag = JDWP.TypeTag.CLASS;
186 tag = JDWP.TypeTag.INTERFACE;
190 writeByte(tag);
220 byte tag = ValueImpl.typeValueKey(val);
221 if (isObjectTag(tag)) {
231 switch (tag) {
465 byte tag = readByte();
467 return vm.referenceType(ref, tag);
559 byte tag
619 isObjectTag(byte tag) argument
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassWriter.java125 String tag = val.substring(pos + 1, val.indexOf('>', pos));
126 attrTypesByTag.put(pfx + tag, key);
177 int tag = cpTagValue(c.getName());
178 setCPIndex(tag, c.getText().toString(), id);
179 switch (tag) {
188 public int findCPIndex(int tag, String name) { argument
193 return (ids == null) ? 0 : ids[tag];
196 public int getCPIndex(int tag, String name) { argument
197 //System.out.println("getCPIndex "+cpTagName(tag)+" "+name);
201 int id = findCPIndex(tag, nam
236 setCPIndex(int tag, String name, int id) argument
795 cpRef(int tag, String name) argument
[all...]
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DWinGammaPlatformVC7.java54 tag("Platform",
67 tag("References");
71 tag("Globals");
83 tag("Tool", customToolAttrs);
138 tag("Tool", new String[] { "Name", "VCCustomBuildTool" });
142 tag("Tool",
156 tag("Tool", new String[] { "Name", "VCPreBuildEventTool" });
158 tag("Tool",
170 tag("Tool", new String[] { "Name", "VCResourceCompilerTool",
173 tag("Too
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DComment.java68 * IN_TEXT: parsing the comment text or tag text.
69 * TAG_NAME: parsing the name of a tag.
70 * TAG_GAP: skipping through the gap between the tag name and
71 * the tag text.
146 TagImpl tag;
149 tag = new ThrowsTagImpl(holder, tagName, tx);
152 tag = new ParamTagImpl(holder, tagName, tx);
155 tag = new SeeTagImpl(holder, tagName, tx);
158 tag = new SerialFieldTagImpl(holder, tagName, tx);
161 tag
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DUtil.java58 public static void verifyTag(Element element, String tag) { argument
59 if (!element.getLocalName().equals(tag))
60 fail("parsing.invalidTag", element.getTagName(), tag);
63 public static void verifyTagNS(Element element, String tag, String nsURI) { argument
64 if (!element.getLocalName().equals(tag)
72 tag,
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DDocFinder.java55 * The id of the tag to retrieve documentation for.
60 * The tag to retrieve documentation for. This is only used for the
61 * inheritDoc tag.
63 public Tag tag = null; field in class:DocFinder.Input
83 public Input(MethodDoc method, InheritableTaglet taglet, Tag tag, argument
87 this.tag = tag;
125 clone.tag = this.tag;
139 * The tag tha
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DParserUtil.java61 public static QName getQName(XMLStreamReader reader, String tag){ argument
62 String localName = XmlUtil.getLocalPart(tag);
63 String pfix = XmlUtil.getPrefix(tag);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyInfoFactory.java130 // check tag
131 String tag = element.getLocalName();
132 if (tag == null) {
136 if (tag.equals("KeyInfo")) {
139 throw new MarshalException("invalid KeyInfo tag: " + tag);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/bytecode/
H A DClassTailor.java119 byte tag = in.readByte();
120 out.writeByte(tag);
121 switch(tag) {
124 // but class files often seem to have this '0' tag.
169 throw new IllegalArgumentException("Unknown constant type "+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/jdk/src/share/classes/com/sun/rowset/internal/
H A DWebRowSetXmlWriter.java96 // create a new stack for tag checking.
129 // create a new stack for tag checking.
458 * This begins a new tag with a indent
461 private void beginSection(String tag) throws java.io.IOException { argument
462 // store the current tag
463 setTag(tag);
468 writer.write("<" + tag + ">\n");
472 * This closes a tag started by beginTag with a indent
475 private void endSection(String tag) throws java.io.IOException { argument
484 if (tag
503 beginTag(String tag) argument
513 endTag(String tag) argument
524 emptyTag(String tag) argument
529 setTag(String tag) argument
602 propString(String tag, String s) argument
608 propInteger(String tag, int i) argument
614 propBoolean(String tag, boolean b) argument
[all...]

Completed in 85 milliseconds

1234567891011>>