Searched defs:version (Results 1 - 25 of 310) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/prims/
H A DjniExport.hpp6 * 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
33 static bool GetExportedInterface(JavaVM* vm, void** penv, jint version, jint* iface) { argument
34 if (JvmtiExport::is_jvmti_version(version)) {
35 *iface = JvmtiExport::get_jvmti_interface(vm, penv, version);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DGlyphLookupTables.h5 * 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
47 fixed32 version; member in struct:GlyphLookupTableHeader
/openjdk7/jdk/test/java/security/Security/removing/
H A DRemoveProviderByIdentity.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
48 public MyProvider(String name, double version, String info) { argument
49 super(name, version, info);
/openjdk7/jdk/src/share/classes/sun/net/
H A DSocksProxy.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
32 * Proxy wrapper class so we can determine the socks protocol version.
35 private final int version; field in class:SocksProxy
37 private SocksProxy(SocketAddress addr, int version) { argument
39 this.version = version;
42 public static SocksProxy create(SocketAddress addr, int version) { argument
43 return new SocksProxy(addr, version);
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dpkcs11.h50 * If you're using an earlier version of Microsoft Developer
74 * If you're using an earlier version of Microsoft Developer
103 * If you're using an earlier version of Microsoft Developer
131 * If you're using an earlier version of Microsoft Developer
168 * If you're using an earlier version of Microsoft Developer
201 * If you're using an earlier version of Microsoft Developer
269 * contains a CK_VERSION indicating a library's Cryptoki version
281 CK_VERSION version; /* Cryptoki version */ member in struct:CK_FUNCTION_LIST
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DImageTranscoderSpi.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
55 * @param version a version identifier.
58 String version) {
59 super(vendorName, version);
57 ImageTranscoderSpi(String vendorName, String version) argument
H A DIIOServiceProvider.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 protected String version; field in class:IIOServiceProvider
63 * vendor name and version identifier.
66 * @param version a version identifier.
70 * @exception IllegalArgumentException if <code>version</code>
74 String version) {
78 if (version
73 IIOServiceProvider(String vendorName, String version) argument
[all...]
H A DImageInputStreamSpi.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
77 * @param version a version identifier.
84 * @exception IllegalArgumentException if <code>version</code>
88 String version,
90 super(vendorName, version);
87 ImageInputStreamSpi(String vendorName, String version, Class<?> inputClass) argument
H A DImageOutputStreamSpi.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
78 * @param version a version identifier.
85 * @exception IllegalArgumentException if <code>version</code>
89 String version,
91 super(vendorName, version);
88 ImageOutputStreamSpi(String vendorName, String version, Class<?> outputClass) argument
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLHtmlElement.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
27 * License version 2 only, as published by the Free Software Foundation.
28 * However, the following notice accompanied the original version of this
50 * Version information about the document's DTD. See the version
55 public void setVersion(String version); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DXJCFacade.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
71 private static String parseVersion(String version) { argument
72 if(version.equals("1.0"))
73 return version;
74 // if we don't recognize the version number, we'll go to 2.0 RI
/openjdk7/jdk/test/vm/verifier/
H A DVerifyProtectedConstructor.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
29 * @summary Verify that protected constructor calls are not allowed for classfile version >= 50 (but that they are allowed for lesser versions).
43 throw new Exception("FAIL: should be no VerifyError for CF version 49");
48 throw new Exception("FAIL: should be a VerifyError for CF version 50");
80 private void checkClassVersion(int version) throws VerifyError { argument
105 // set version
106 cf_bytes[7] = (byte)version;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_SSL3_MASTER_KEY_DERIVE_PARAMS.java84 public CK_SSL3_MASTER_KEY_DERIVE_PARAMS(CK_SSL3_RANDOM_DATA random, CK_VERSION version) { argument
86 pVersion = version;
/openjdk7/jdk/test/java/security/Provider/
H A DEquals.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
51 p1.remove("Provider.id version");
58 P1(String name, double version, String info) { argument
59 super(name, version, info);
64 P2(String name, double version, String info) { argument
65 super(name, version, info);
H A DRemoveProvider.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
186 public MyProvider(String name, double version, String info) { argument
187 super(name, version, info);
/openjdk7/jdk/test/java/util/Hashtable/
H A DEqualsCast.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
47 public MyProvider(String name, double version, String info) { argument
48 super(name, version, info);
/openjdk7/jdk/src/share/npt/
H A Dnpt.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
37 version_check(char *version) argument
39 if ( version==NULL || strcmp(version, NPT_VERSION)!=0 ) {
53 NPT_ERROR("NPT version doesn't match");
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementation.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
27 * License version 2 only, as published by the Free Software Foundation.
28 * However, the following notice accompanied the original version of this
53 * version, as specified in <a href="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#DOMFeatures">DOM Features</a>.
55 * @param version This is the version number of the feature to test.
57 * specified version, <code>false</code> otherwise.
60 String version);
59 hasFeature(String feature, String version) argument
162 getFeature(String feature, String version) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DEncapsOutputStream.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
44 * code sets and GIOP version. The original resolution to issue 2784
66 // only use stream format version 1, which may create problems
75 // GIOP version 1.2 with no fragmentation, big endian,
84 public EncapsOutputStream(ORB orb, GIOPVersion version) { argument
85 this(orb, version, false);
95 GIOPVersion version,
98 super(orb, version, Messag
94 EncapsOutputStream(ORB orb, GIOPVersion version, boolean isLittleEndian) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/encoding/
H A DCorbaOutputObject.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
43 ORB orb, GIOPVersion version, byte encodingVersion,
47 super(orb, version, encodingVersion, littleEndian, bufferManager,
42 CorbaOutputObject( ORB orb, GIOPVersion version, byte encodingVersion, boolean littleEndian, BufferManagerWrite bufferManager, byte streamFormatVersion, boolean usePooledByteBuffers) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/
H A DORBVersionServiceContext.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
43 version = ORBVersionFactory.getORBVersion() ;
48 this.version = ver ;
54 // pay particular attention to where the version is being read from!
59 version = ORBVersionFactory.create( in ) ;
68 version.write( os ) ;
73 return version ;
77 private ORBVersion version field in class:ORBVersionServiceContext
[all...]
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DExceptionDescription.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"
40 public String version = null; field in class:ExceptionDescription
52 version = _version;
/openjdk7/jdk/src/share/classes/java/security/
H A DAuthProvider.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
45 * Constructs a provider with the specified name, version number,
49 * @param version the provider version number.
52 protected AuthProvider(String name, double version, String info) { argument
53 super(name, version, info);
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DRC5ParameterSpec.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
35 * <p> The parameters consist of a version number, a rounds count, a word
50 private int version; field in class:RC5ParameterSpec
55 * Constructs a parameter set for RC5 from the given version, number of
58 * @param version the version.
62 public RC5ParameterSpec(int version, int rounds, int wordSize) { argument
63 this.version
85 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) argument
112 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpParams.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
37 SnmpParams(int version) { argument
38 protocolVersion = version;
48 * Returns the version of the protocol to use.
55 * @return The version of the protocol to use.
62 * Sets the version of the protocol to be used.
63 * The version should be identified using the definitions
70 * @param protocolversion The version o
[all...]

Completed in 184 milliseconds

1234567891011>>