Searched defs:version (Results 251 - 275 of 310) sorted by relevance

<<111213

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXPointerElementHandler.java608 public void xmlDecl(String version, String encoding, String standalone, argument
686 public void textDecl(String version, String encoding, Augmentations augs) argument
689 fDocumentHandler.textDecl(version, encoding, augs);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTM.java368 * Given a node handle, find the owning document node. This version mimics
562 * @param version This is the version number of the feature to test.
563 * If the version is not
564 * specified, supporting any version of the feature will cause the
569 public boolean isSupported(String feature, String version); argument
618 * Return a string representing the XML version of the document. This
624 * @return the document version String object
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEmptySerializer.java205 public void setVersion(String version) argument
H A DSerializerBase.java160 * Tells the XML version, for writing out to the XML decl.
688 * Gets the version of the output format.
689 * @return the version of the output format.
697 * Sets the value coming from the xsl:output version attribute.
698 * @param version the version of the output format.
701 public void setVersion(String version) argument
703 m_version = version;
1263 /* This method extracts version and encoding information from SAX events.
H A DToUnknownStream.java450 public void setVersion(String version) argument
452 m_handler.setVersion(version);
455 // super.setVersion(version);
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLStreamWriterImpl.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
79 public static final String DEFAULT_XMLDECL = "<?xml version=\"1.0\" ?>";
1126 * @param version
1129 public void writeStartDocument(String version) throws XMLStreamException { argument
1131 if ((version == null) || version.equals("")) {
1137 fWriter.write("<?xml version=\"");
1138 fWriter.write(version);
1153 writeStartDocument(String encoding, String version) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDROutputStream.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
64 // to create a concrete CDR delegate based on the GIOP version.
68 ORB orb, GIOPVersion version, byte encodingVersion) {
69 switch(version.intValue()) {
85 throw wrapper.unsupportedGiopVersion( version ) ;
100 GIOPVersion version,
107 impl = OutputStreamFactory.newOutputStream(orb, version,
119 GIOPVersion version,
67 newOutputStream( ORB orb, GIOPVersion version, byte encodingVersion) argument
99 CDROutputStream(ORB orb, GIOPVersion version, byte encodingVersion, boolean littleEndian, BufferManagerWrite bufferManager, byte streamFormatVersion, boolean usePooledByteBuffers) argument
118 CDROutputStream(ORB orb, GIOPVersion version, byte encodingVersion, boolean littleEndian, BufferManagerWrite bufferManager, byte streamFormatVersion) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVirtualMachineImpl.java6 * under the terms of the GNU General Public License version 2 only, as
12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
800 public String version() { method in class:VirtualMachineImpl
801 return saVM.getSystemProperty("java.version");
806 sb.append("JVM version ");
807 sb.append(version());
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
182 /** stream protocol version */
284 * Specify stream protocol version to use when writing the stream.
286 * <p>This routine provides a hook to enable the current version of
288 * previous version of the stream format.
294 * @param version use ProtocolVersion from java.io.ObjectStreamConstants.
297 * @throws IllegalArgumentException if invalid version is passed in.
303 public void useProtocolVersion(int version) throw argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DProvider.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
51 * <p>Each provider has a name and a version number, and is configured
76 * <tr><td><code>Provider.id version</code></td>
111 * The provider version number.
115 private double version; field in class:Provider
124 * Constructs a provider with the specified name, version number,
129 * @param version the provider version numbe
133 Provider(String name, double version, String info) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
678 * @param version a <code>String</code>, which is ignored.
680 public boolean isSupported(String feature, String version) { argument
1032 public Object getFeature(String feature, String version) argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSoundbank.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
555 modulator.version = 1;
575 modulator.version = 2;
1018 if (modulator.version == 1)
1020 if (modulator.version == 2)
1025 if (modulator.version == 1)
1027 if (modulator.version == 2)
1032 int version
1094 writeRegion(RIFFWriter writer, DLSRegion region, int version) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineImpl.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
331 "version numbers of class are not supported");
598 public String version() { method in class:VirtualMachineImpl
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c6 * under the terms of the GNU General Public License version 2 only, as
12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
593 char version[MAXPATHLEN]; local
602 /* Find the current version of the JRE */
609 version, sizeof(version))) {
616 if (strcmp(version, DOTRELEASE) != 0) {
618 "value '%s', but '" DOTRELEASE "' is required.\n", version);
623 /* Find directory where the current version i
[all...]
/openjdk7/jdk/src/share/back/
H A DeventFilter.c6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
280 jint version; local
282 JVMTI_FUNC_PTR(gdata->jvmti,GetVersionNumber)(gdata->jvmti, &version);
287 major = (version & JVMTI_VERSION_MASK_MAJOR)
289 minor = (version & JVMTI_VERSION_MASK_MINOR)
555 * Special version of filter for unloads since they don't have an
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPPartImpl.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
771 String version) {
772 return document.getFeature(feature,version);
770 getFeature(String feature, String version) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
28 * License version 2 only, as published by the Free Software Foundation.
29 * However, the following notice accompanied the original version of this
271 * Minor and major version numbers of the class to be generated.
273 int version; field in class:ClassWriter
611 final int version,
618 this.version = version;
610 visit( final int version, final int access, final String name, final String signature, final String superName, final String[] interfaces) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_xembed_server.c6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
112 int version; member in struct:_xembed_server_data
480 sendMessageHelper(sdata->handle, XEMBED_EMBEDDED_NOTIFY, XtWindow(cdata->widget), min(sdata->version, XEMBED_VERSION), 0);
692 sdata->version = *data;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
92 /** The current version number as a string.
94 public static String version() { method in class:JavaCompiler
95 return version("release"); // mm.nn.oo[-milestone]
98 /** The current full version number as a string.
101 return version("full"); // mm.mm.oo[-milestone]-build
104 private static final String versionRBName = "com.sun.tools.javac.resources.version";
107 private static String version(Strin method in class:JavaCompiler
[all...]
/openjdk7/jdk/src/share/native/common/
H A Djni_util.c6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
912 JNU_GetEnv(JavaVM *vm, jint version) argument
915 (*vm)->GetEnv(vm, &env, version);
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdmarker.c613 /* Check version.
614 * Major version must be 1, anything else signals an incompatible change.
617 * Minor version should be 0..2, but process anyway if newer.
668 * YCbCr in this case). The version and density fields will
684 unsigned int version, flags0, flags1, transform; local
693 version = (GETJOCTET(data[5]) << 8) + GETJOCTET(data[6]);
697 TRACEMS4(cinfo, 1, JTRC_ADOBE, version, flags0, flags1, transform);
1105 * Once the JPEG 3 version-number marker is well defined, this code
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHandshaker.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
64 // protocol version being established using this Handshaker
67 // the currently active protocol version during a renegotiation
360 * Set the active protocol version and propagate it to the SSLSocket
362 * and ServerHandshaker with the negotiated protocol version.
439 * Prior to handshaking, activate the handshake and initialize the version,
460 // temporary protocol version until the actual protocol version
998 calculateKeys(SecretKey preMasterSecret, ProtocolVersion version) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAdaptiveResultTreeImpl.java1031 public boolean isSupported(String feature, String version) argument
1034 return _dom.isSupported(feature, version);
1037 return super.isSupported(feature, version);
H A DSimpleResultTreeImpl.java864 public boolean isSupported(String feature, String version) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DCoreDocumentImpl.java82 * @version $Id: CoreDocumentImpl.java,v 1.9 2010-11-01 04:39:37 joehw Exp $
92 * of dirty version checking code.
100 /** Serialization version. */
124 /**Experimental DOM Level 3 feature: Document version */
125 protected String version; field in class:CoreDocumentImpl
197 //Did version change at any point when the document was created ?
501 public Object getFeature(String feature, String version) { argument
503 boolean anyVersion = version == null || version.length() == 0;
507 // castable DOMImplementation.getFeature(feature, version)
[all...]

Completed in 128 milliseconds

<<111213