Searched defs:version (Results 101 - 125 of 310) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DEmptyMessageImpl.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
59 public EmptyMessageImpl(SOAPVersion version) { argument
60 super(version);
65 public EmptyMessageImpl(HeaderList headers, @NotNull AttachmentSet attachmentSet, SOAPVersion version){ argument
66 super(version);
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DUtil.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
124 public void version() throws Exit { method in class:Util
125 log.println(getText("javah.version",
126 System.getProperty("java.version"), null));
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DOptions.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
76 public boolean version; field in class:Options
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcapimin.c34 jpeg_CreateCompress (j_compress_ptr cinfo, int version, size_t structsize) argument
38 /* Guard against version mismatches between library and caller. */
40 if (version != JPEG_LIB_VERSION)
41 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsMasterSecretParameterSpec.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
63 * @param majorVersion the major number of the protocol version
64 * @param minorVersion the minor number of the protocol version
96 static int checkVersion(int version) { argument
97 if ((version < 0) || (version > 255)) {
101 return version;
114 * Returns the major version numbe
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DCCacheInputStream.java5 * under the terms of the GNU General Public License version 2 only, as
13 * version 2 for more details (a copy is included in the LICENSE file that
16 * You should have received a copy of the GNU General Public License version
52 * FCC version 2 contains type information for principals. FCC
53 * version 1 does not.
55 * FCC version 3 contains keyblock encryption type information, and is
58 * The code will accept version 1, 2, and 3 ccaches, and depending
59 * what KRB5_FCC_DEFAULT_FVNO is set to, it will create version 1, 2,
115 public PrincipalName readPrincipal(int version) throws IOException, RealmException { argument
121 if (version
180 readKey(int version) argument
342 readCred(int version) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS8Key.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
66 /* The version for this key */
67 public static final BigInteger version = BigInteger.ZERO; field in class:PKCS8Key
124 if (!version.equals(parsedVersion)) {
125 throw new IOException("version mismatch: (supported: " +
126 Debug.toHexString(version) +
321 * PKCS#8 format: a sequence consisting of a version, an algorithm
344 BigInteger version
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DRSAClientKeyExchange.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
54 * The TLS spec says that the version in the RSA premaster secret must
55 * be the maximum version supported by the client (i.e. the version it
56 * requested in its client hello version). However, we (and other
57 * implementations) used to send the active negotiated version. The
163 * version numbers in a manner indistinguishable from correctly
175 * else If ClientHello.client_version <= TLS 1.0, and version
259 generateDummySecret(ProtocolVersion version) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificateVersion.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
36 * This class defines the version of the X509 Certificate.
59 public static final String IDENT = "x509.info.version";
63 public static final String NAME = "version";
67 int version = V1; field in class:CertificateVersion
69 // Returns the version number.
71 return(version);
78 version
99 CertificateVersion(int version) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerDataReader.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
29 * The original version of this source code and documentation is copyrighted *
48 * Description of the format of unorm.icu version 2.1.
50 * Main change from version 1 to version 2:
52 * Change to version 2.1: add third/auxiliary trie with associated data.
359 public boolean isDataVersionAcceptable(byte version[]) argument
361 return version[
[all...]
H A DUCharacterPropertyReader.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
29 * The original version of this source code and documentation is copyrighted *
63 public boolean isDataVersionAcceptable(byte version[]) argument
65 return version[0] == DATA_FORMAT_VERSION_[0]
66 && version[2] == DATA_FORMAT_VERSION_[2]
67 && version[3] == DATA_FORMAT_VERSION_[3];
184 * Format version; this code works with all versions with the same major
185 * version numbe
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DJrmpGenerator.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
75 /** version of the JRMP stub protocol to generate code for */
76 private StubVersion version = StubVersion.V1_2; // default is -v1.2 field in class:JrmpGenerator
85 * selecting the JRMP stub protocol version to generate classes
98 version = versionOptions.get(arg);
132 new StubSkeletonWriter(env, remoteClass, version);
152 if (version == StubVersion.V1_1 ||
153 version
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXML11DTDScannerImpl.java251 // valid with respect to the version of
259 // with respect to the version of XML understood by this scanner.
265 // a valid nameChar with respect to the version of
272 // a valid nameStartChar with respect to the version of
279 // a valid NCName character with respect to the version of
287 // with respect to the version of XML understood
294 // documents may invoke 1.0 entities; thus either version decl (or none!)
296 protected boolean versionSupported(String version) { argument
297 return version.equals("1.1") || version
[all...]
H A DXML11DocumentScannerImpl.java99 * @version $Id: XML11DocumentScannerImpl.java,v 1.5 2010/08/04 20:59:09 joehw Exp $
535 // valid with respect to the version of
543 // with respect to the version of XML understood by this scanner.
549 // a valid nameChar with respect to the version of
556 // a valid nameStartChar with respect to the version of
563 // a valid NCName character with respect to the version of
571 // with respect to the version of XML understood
577 protected boolean versionSupported(String version) { argument
578 return (version.equals("1.1") || version
[all...]
H A DXMLVersionDetector.java76 * This class scans the version of the document to determine
78 * The version is scanned using XML 1.1. scanner.
112 /** Symbol: "version". */
113 protected final static String fVersionSymbol = "version".intern();
154 * Reset the reference to the appropriate scanner given the version of the
157 * @param version - the version of the document (XML 1.1 or XML 1.0).
159 public void startDocumentParsing(XMLEntityHandler scanner, short version){ argument
161 if (version == Constants.XML_VERSION_1_0){
180 * This methods scans the XML declaration to find out the version
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDocumentFragmentHandler.java101 * @param version The XML version, or null if not specified.
108 public void textDecl(String version, String encoding, argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DXSLOutputAttributes.java37 * version
104 * @return the version of the output format.
179 * Sets the value coming from the xsl:output version attribute.
180 * @param version the version of the output format.
182 public void setVersion(String version); argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLEntityReader.java79 /** the version of the current entity being scanned or the version of the entity on which reader is operating */
80 public abstract void setVersion(String version) ; argument
82 /** get the version of the entity on which reader is operating */
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DStartDocumentEvent.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
58 public StartDocumentEvent(String encoding, String version){ argument
59 init(encoding,version,true,null);
62 public StartDocumentEvent(String encoding, String version, boolean standalone){ argument
64 init(encoding,version,standalone,null);
67 public StartDocumentEvent(String encoding, String version, boolean standalone,Location loc){ argument
69 init(encoding, version, standalone, loc);
71 protected void init(String encoding, String version, boolea argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectKeyTemplateBase.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
62 private ORBVersion version ; field in class:ObjectKeyTemplateBase
119 (serverid == other.serverid) && (version.equals( other.version ) &&
129 result = 37*result + version.hashCode() ;
173 // All subclasses should set the version in their constructors.
175 public void setORBVersion( ORBVersion version )
177 this.version
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/iiop/
H A DIIOPFactories.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
165 byte version = in.read_octet() ;
166 Identifiable comp = new MaxStreamFormatVersionComponentImpl(version);
181 byte version = in.read_octet();
182 Identifiable cmp = new JavaSerializationComponent(version);
227 GIOPVersion version, IIOPAddress primary )
229 return new IIOPProfileTemplateImpl( orb, version, primary ) ;
226 makeIIOPProfileTemplate( ORB orb, GIOPVersion version, IIOPAddress primary ) argument
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ValueDefPackage/
H A DFullValueDescription.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
30 * Generated by the IDL-to-Java compiler (portable), version "3.0"
44 public String version = null; field in class:FullValueDescription
72 version = _version;
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DMixer.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
61 * version, vendor, etc.
243 * including the product's name, version, and vendor, along with a textual
269 * Mixer version.
271 private final String version; field in class:Mixer.Info
280 * @param version version information for the mixer
282 protected Info(String name, String vendor, String description, String version) { argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DImageReaderSpi.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
121 * @param version a version identifier, as a non-<code>null</code>
185 * @exception IllegalArgumentException if <code>version</code>
195 String version,
212 super(vendorName, version,
194 ImageReaderSpi(String vendorName, String version, String[] names, String[] suffixes, String[] MIMETypes, String readerClassName, Class[] inputTypes, String[] writerSpiNames, boolean supportsStandardStreamMetadataFormat, String nativeStreamMetadataFormatName, String nativeStreamMetadataFormatClassName, String[] extraStreamMetadataFormatNames, String[] extraStreamMetadataFormatClassNames, boolean supportsStandardImageMetadataFormat, String nativeImageMetadataFormatName, String nativeImageMetadataFormatClassName, String[] extraImageMetadataFormatNames, String[] extraImageMetadataFormatClassNames) argument
H A DImageReaderWriterSpi.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
151 * @param version a version identifier, as a non-<code>null</code>
208 * @exception IllegalArgumentException if <code>version</code>
216 String version,
231 super(vendorName, version);
215 ImageReaderWriterSpi(String vendorName, String version, String[] names, String[] suffixes, String[] MIMETypes, String pluginClassName, boolean supportsStandardStreamMetadataFormat, String nativeStreamMetadataFormatName, String nativeStreamMetadataFormatClassName, String[] extraStreamMetadataFormatNames, String[] extraStreamMetadataFormatClassNames, boolean supportsStandardImageMetadataFormat, String nativeImageMetadataFormatName, String nativeImageMetadataFormatClassName, String[] extraImageMetadataFormatNames, String[] extraImageMetadataFormatClassNames) argument

Completed in 131 milliseconds

1234567891011>>