Searched refs:subtype (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractFileTypeDetector.java63 * Parses a candidate content type into its type and subtype, returning
70 return null; // no subtype
74 String subtype = (semicolon < 0) ? s.substring(slash + 1) :
76 subtype = subtype.trim().toLowerCase(Locale.ENGLISH);
77 if (!isValidToken(subtype))
78 return null; // invalid subtype
79 StringBuilder sb = new StringBuilder(type.length() + subtype.length() + 1);
82 sb.append(subtype);
99 * Returns true if the given string is a legal type or subtype
[all...]
/openjdk7/jdk/test/java/rmi/activation/Activatable/downloadParameterClass/
H A DDownloadParameterClass.java69 * install the subtype to be downloaded into the activatable object
121 * Create an instance of the subtype to be downloaded by the
130 Class subtype = RMIClassLoader.loadClass(
132 Object subtypeInstance = subtype.newInstance();
/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) {
H A Dverifier.cpp2420 bool subtype = ref_class_type.is_assignable_from(
2422 if (!subtype) {
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineChangeClassOrder.sh71 // objects of subtype Object_variable_info into the StackMapTable.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
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...]
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);
/openjdk7/jaxws/src/share/jaf_classes/com/sun/activation/registries/
H A DMailcapFile.java119 String subtype = mime_type.substring(separator + 1);
120 if (!subtype.equals("*")) {
152 String subtype = mime_type.substring(separator + 1);
153 if (!subtype.equals("*")) {
310 // if it's not present that's ok, we just don't have a subtype
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DNSApplicationAWT.m359 subtype: 0
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java1667 boolean subtype;
1694 subtype = c.isInstance(response);
1696 subtype = false;
1704 if (!subtype)
/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 139 milliseconds