Searched defs:type (Results 426 - 450 of 1595) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.hpp56 // Only used during deopt- preserve object type.
64 assert(type() == T_OBJECT, "type check");
69 assert(type() == T_OBJECT, "type check");
74 assert(type() == T_OBJECT, "type check");
79 assert(type() == T_INT, "type check");
85 assert(t == T_OBJECT && type()
94 BasicType type() const { return _type; } function in class:StackValue
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdtraceAttacher.cpp37 VMOp_Type type() const { function in class:VM_DeoptimizeTheWorld
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLParamElement.java58 * Content type for the <code>value</code> attribute when
59 * <code>valuetype</code> has the value "ref". See the type attribute
63 public void setType(String type); argument
/openjdk7/jaxp/src/org/xml/sax/ext/
H A DDeclHandler.java76 * Report an element type declaration.
87 * @param name The element type name.
96 * Report an attribute type declaration.
99 * be reported. The type will be one of the strings "CDATA",
112 * @param type A string representing the attribute type.
122 String type,
120 attributeDecl(String eName, String aName, String type, String mode, String value) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJEnumConstant.java51 private final JDefinedClass type; field in class:JEnumConstant
69 JEnumConstant(JDefinedClass type,String name) { argument
71 this.type = type;
94 return this.type.fullName().concat(".").concat(this.name);
104 jdoc = new JDocComment(type.owner());
128 return annotate(type.owner().ref(clazz));
158 f.t(type).p('.').p(name);
H A DJForLoop.java43 public JVar init(int mods, JType type, String var, JExpression e) { argument
44 JVar v = new JVar(JMods.forVar(mods), type, var, e);
49 public JVar init(JType type, String var, JExpression e) { argument
50 return init(JMod.NONE, type, var, e);
H A DJInvocation.java45 * Either this field is set, or {@link #method}, or {@link #type} (in which case it's a
61 * If isConstructor==true, this field keeps the type to be created.
63 private JType type = null; field in class:JInvocation
87 JInvocation(JClass type, String name) { argument
88 this( (JGenerable)type, name );
91 JInvocation(JClass type, JMethod method) { argument
92 this( (JGenerable)type, method );
112 * Type of the object to be created. If this type is
113 * an array type, added arguments are treated as array
119 this.type
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBProperty.java42 private JAXBTypeAndAnnotation type; field in class:JAXBProperty
63 this.type = new JAXBTypeAndAnnotation(prop.type());
84 return type;
H A DJAXBTypeAndAnnotation.java38 JType type; field in class:JAXBTypeAndAnnotation
42 this.type = typeAnn.getTypeClass();
45 public JAXBTypeAndAnnotation(JType type) { argument
46 this.type = type;
49 public JAXBTypeAndAnnotation(TypeAndAnnotation typeAnn, JType type) { argument
51 this.type = type;
60 return type;
64 return type
75 setType(JType type) argument
[all...]
H A DRpcLitMember.java39 //wsdl:part type attribute java mapped object
61 * @return Returns the type.
67 * @param type The type to set.
69 public void setJavaTypeName(String type) { argument
70 this.javaTypeName = type;
74 * @return Returns the type.
80 * @param type The type to set.
82 public void setSchemaTypeName(QName type) { argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/nav/
H A DEagerNType.java41 public EagerNType(Type type) { argument
42 this.t = type;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DXmlElementQuick.java59 public Class type() { method in class:XmlElementQuick
60 return core.type();
H A DXmlElementRefQuick.java59 public Class type() { method in class:XmlElementRefQuick
60 return core.type();
H A DXmlSchemaTypeQuick.java59 public Class type() { method in class:XmlSchemaTypeQuick
60 return core.type();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DAnyTypeImpl.java44 private final T type; field in class:AnyTypeImpl
48 this.type = nav.ref(Object.class);
57 return type;
H A DBuiltinLeafInfoImpl.java48 protected BuiltinLeafInfoImpl(TypeT type, QName... typeNames) { argument
49 super(type, typeNames.length>0?typeNames[0]:null);
54 * Returns all the type names recognized by this bean info.
H A DLeafInfoImpl.java38 private final TypeT type; field in class:LeafInfoImpl
44 protected LeafInfoImpl(TypeT type,QName typeName) { argument
45 assert type!=null;
47 this.type = type;
52 * A reference to the representation of the type.
55 return type;
59 * Leaf-type cannot be referenced from IDREF.
88 return type.toString();
H A DRuntimeTypeRefImpl.java42 public RuntimeTypeRefImpl(RuntimeElementPropertyInfoImpl elementPropertyInfo, QName elementName, Type type, boolean isNillable, String defaultValue) { argument
43 super(elementPropertyInfo, elementName, type, isNillable, defaultValue);
H A DSingleTypePropertyInfoImpl.java43 * {@link PropertyInfoImpl} that can only have one type.
57 private NonElement<T,C> type; field in class:SingleTypePropertyInfoImpl
77 if(type==null) {
79 type = parent.builder.getTypeInfo(getIndividualType(),this);
81 return type;
91 if (!(NonElement.ANYTYPE_NAME.equals(type.getTypeName()) || type.isSimpleType() || id()==ID.IDREF)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DGifDataContentHandler.java60 * Return the Transfer Data of type DataFlavor from InputStream.
100 * Write the object to the output stream, using the specified MIME type.
102 public void writeTo(Object obj, String type, OutputStream os) argument
107 "was given object of type " + obj.getClass().toString());
H A DStringDataContentHandler.java60 * Return the Transfer Data of type DataFlavor from InputStream.
122 * Write the object to the output stream, using the specified MIME type.
124 public void writeTo(Object obj, String type, OutputStream os) argument
129 "was given object of type " + obj.getClass().toString());
135 enc = getCharset(type);
154 private String getCharset(String type) { argument
156 ContentType ct = new ContentType(type);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDValuePattern.java55 private String type; field in class:DValuePattern
60 public DValuePattern(String datatypeLibrary, String type, String value, Context context, String ns) { argument
62 this.type = type;
73 return type;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DImageDataContentHandler.java78 * @param df The DataFlavor representing the requested type.
105 * Convert the object to a byte stream of the specified MIME type
109 * @param type The requested MIME type of the resulting byte stream.
114 public void writeTo(Object obj, String type, OutputStream os) argument
126 + "was given object of type "
130 Iterator<ImageWriter> i = ImageIO.getImageWritersByMIMEType(type);
141 throw new IOException("Unsupported mime type:"+ type);
H A DStringDataContentHandler.java60 * Return the Transfer Data of type DataFlavor from InputStream.
124 * Write the object to the output stream, using the specified MIME type.
126 public void writeTo(Object obj, String type, OutputStream os) argument
131 "was given object of type " + obj.getClass().toString());
137 enc = getCharset(type);
156 private String getCharset(String type) { argument
158 ContentType ct = new ContentType(type);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DJAXB.java107 final Class type; field in class:JAXB.Cache
110 public Cache(Class type) throws JAXBException { argument
111 this.type = type;
112 this.context = JAXBContext.newInstance(type);
117 * Cache. We don't want to prevent the {@link Cache#type} from GC-ed,
123 * Obtains the {@link JAXBContext} from the given type,
130 private static <T> JAXBContext getContext(Class<T> type) throws JAXBException { argument
134 if(d!=null && d.type==type)
[all...]

Completed in 89 milliseconds

<<11121314151617181920>>