Searched defs:subtype (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp262 bool subtype = type.is_assignable_from( local
264 if (!subtype) {
282 bool subtype = type.is_assignable_from(_locals[index], local
284 if (!subtype) {
306 bool subtype = type1.is_assignable_from(_locals[index], verifier(), CHECK); local
307 if (!subtype) {
313 subtype = type2.is_assignable_from(_locals[index + 1], verifier(), CHECK);
314 if (!subtype) {
H A DstackMapFrame.hpp240 bool subtype = type.is_assignable_from( local
242 if (subtype) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DBMMimeMultipart.java53 * The default multipart subtype is "mixed". The other multipart
68 * subtype by using the <code>MimeMultipart(String subtype)</code>
113 * Construct a MimeMultipart object of the given subtype.
120 public BMMimeMultipart(String subtype) { argument
121 super(subtype);
125 ContentType cType = new ContentType("multipart", subtype, null);
H A DMimeMultipart.java52 * The default multipart subtype is "mixed". The other multipart
67 * subtype by using the <code>MimeMultipart(String subtype)</code>
130 * Construct a MimeMultipart object of the given subtype.
137 public MimeMultipart(String subtype) { argument
143 contentType = new ContentType("multipart", subtype, null);
179 * Set the subtype. This method should be invoked only on a new
180 * MimeMultipart object created by the client. The default subtype
183 * @param subtype Subtype
185 public void setSubType(String subtype) { argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp3000 // that is, tp's array type is a subtype of my klass
3005 // The other case cannot happen, since I cannot be a subtype of an array.
3155 // If we split one up & one down AND they subtype, take the down man.
3156 // If we split one up & one down AND they do NOT subtype, "fall hard".
3157 // If both are up and they subtype, take the subtype class.
3158 // If both are up and they do NOT subtype, "fall hard".
3159 // If both are down and they subtype, take the supertype class.
3160 // If both are down and they do NOT subtype, "fall hard".
3163 // Now, reorder the above list; observe that both-down+subtype i
3179 ciKlass *subtype = NULL; local
[all...]

Completed in 48 milliseconds