Searched refs:version (Results 1 - 25 of 140) sorted by relevance

123456

/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DProtocolVersion.java36 * Returns true if protocol version is supported
38 * @param version
40 public static boolean isSupported(byte[] version) { argument
41 if (version[0] != 3 || (version[1] != 0 && version[1] != 1)) {
50 * @param version
53 public static ProtocolVersion getByVersion(byte[] version) { argument
54 if (version[0] == 3) {
55 if (version[
139 public final byte[] version; field in class:ProtocolVersion
141 ProtocolVersion(String name, byte[] version) argument
[all...]
H A DSSLRecordProtocol.java74 * type(1) + version(2) + length(2) + MAX_CIPHERED_DATA_LENGTH
80 // protocol version of the connection
81 private byte[] version; field in class:SSLRecordProtocol
139 ? 6 // type + version + length + 1 byte of data
150 return 5+data_size; // type + version + length + data_size
170 record_size -= 5; // - (type + version + length + data_size)
230 return packetize(content_type, version, ciphered_fragment);
233 private byte[] packetize(byte type, byte[] version, byte[] fragment) { argument
236 if (version != null) {
237 buff[1] = version[
[all...]
/dalvik/dx/tests/003-magic-version-access/
H A Drun26 dx --dump --strict class-version-44.0.txt
27 dx --dump --strict class-version-44.65535.txt
30 dx --debug --dump --width=100 class-version-45.0.txt
31 dx --debug --dump --width=100 class-version-45.65535.txt
32 dx --debug --dump --width=100 class-version-48.0.txt
33 dx --debug --dump --width=100 class-version-48.65535.txt
34 dx --debug --dump --width=100 class-version-49.0.txt
35 dx --debug --dump --width=100 class-version-49.1.txt
36 dx --debug --dump --width=100 class-version-49.65535.txt
37 dx --debug --dump --width=100 class-version
[all...]
/dalvik/libcore/xml/src/main/java/org/xml/sax/ext/
H A DLocator2Impl.java25 * @version TBS
30 private String version; field in class:Locator2Impl
43 * <em>encoding</em> and <em>version</em>strings are copied,
54 version = l2.getXMLVersion ();
64 * Returns the current value of the version property.
66 * @return the current value of the version property.
71 { return version; }
89 * Assigns the current value of the version property.
91 * @param version the new "version" valu
94 setXMLVersion(String version) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DDOMImplementationImpl.java52 public boolean hasFeature(String feature, String version) { argument
53 boolean anyVersion = version == null || version.length() == 0;
63 return anyVersion || version.equals("1.0") || version.equals("2.0") || version.equals("3.0");
65 return anyVersion || version.equals("1.0") || version.equals("2.0") || version.equals("3.0");
67 return anyVersion || version
87 getFeature(String feature, String version) argument
[all...]
/dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
H A DRC5ParameterSpec.java31 private final int version; field in class:RC5ParameterSpec
38 * version, round count an word size (in bits).
40 * @param version
41 * the version.
47 public RC5ParameterSpec(int version, int rounds, int wordSize) { argument
48 this.version = version;
56 * version, round count, word size (in bits) and an <i>initialization
63 * @param version
64 * the version
75 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) argument
115 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/
H A DVersion.src24 * Administrative class to keep track of the version number of
28 * to get version information. This class will replace the older
31 * information about the version of the XSLT spec we support.</P>
38 * Get the basic version string for the current Xalan release.
42 * Futurework: have this read version info from jar manifest.
44 * @return String denoting our current version
55 * Print the processor version to the command line.
82 * Major version number.
86 * version.
94 return @version
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
H A DXSLProcessorVersion.src24 * Administrative class to keep track of the version number of
34 * Print the processor version to the command line.
54 * Major version number.
58 * version.
64 public static final int VERSION = @version.VERSION@;
74 public static final int RELEASE = @version.RELEASE@;
85 public static final int MAINTENANCE = @version.MINOR@;
109 * <P>Semantics of the version string are identical to the Xerces project.</P>
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DRC5ParameterSpecTest.java20 * @version $Revision$
45 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
57 int version = 1;
63 new RC5ParameterSpec(version, rounds, wordSize, null);
70 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
77 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
83 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds,
92 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
104 int version = 1;
111 new RC5ParameterSpec(version, round
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
H A DRC2CBCParameter.java17 DERInteger version; field in class:RC2CBCParameter
34 this.version = null;
42 this.version = new DERInteger(parameterVersion);
51 version = null;
56 version = (DERInteger)seq.getObjectAt(0);
63 if (version == null)
68 return version.getValue();
80 if (version != null)
82 v.add(version);
H A DCertificationRequestInfo.java18 * version INTEGER { v1(0) } (v1,...),
35 DERInteger version = new DERInteger(0); field in class:CertificationRequestInfo
64 if ((subject == null) || (version == null) || (subjectPKInfo == null))
73 version = (DERInteger)seq.getObjectAt(0);
88 if ((subject == null) || (version == null) || (subjectPKInfo == null))
96 return version;
118 v.add(version);
H A DSignerInfo.java14 private DERInteger version; field in class:SignerInfo
38 DERInteger version,
46 this.version = version;
60 version = (DERInteger)e.nextElement();
92 return version;
129 * version Version,
149 v.add(version);
37 SignerInfo( DERInteger version, IssuerAndSerialNumber issuerAndSerialNumber, AlgorithmIdentifier digAlgorithm, ASN1Set authenticatedAttributes, AlgorithmIdentifier digEncryptionAlgorithm, ASN1OctetString encryptedDigest, ASN1Set unauthenticatedAttributes) argument
/dalvik/libcore/xml/src/main/java/org/apache/xalan/res/
H A DXSLTInfo.properties27 # Product Version: Xalan-Java @impl.version@
30 version=1.0
/dalvik/libcore/dom/src/test/java/org/w3c/domts/
H A DJTidyDOMImplementation.java36 * @param version This is the version number of the feature to test. In
37 * Level 2, the string can be either "2.0" or "1.0". If the version is
38 * not specified, supporting any version of the feature causes the
41 * specified version, <code>false</code> otherwise.
44 String version) {
46 return version == null || version.equals("1.0") || version.equals("2.0");
55 * future version o
43 hasFeature(String feature, String version) argument
127 getFeature(String feature, String version) argument
[all...]
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DMidiDevice.java30 private String version; field in class:MidiDevice.Info
32 protected Info(String name, String vendor, String description, String version) { argument
36 this.version = version;
62 return version;
72 result = PRIME * result + ((version == null) ? 0 : version.hashCode());
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DMixer.java26 private String version; field in class:Mixer.Info
28 protected Info(String name, String vendor, String description, String version) { argument
32 this.version = version;
53 return version;
58 return name.hashCode() + vendor.hashCode() + description.hashCode() + version.hashCode();
63 return name + ", version " + version; //$NON-NLS-1$
/dalvik/libcore/security/src/main/java/java/security/
H A DAuthProvider.java36 * Constructs a new instance of {@code AuthProvider} with its name, version
41 * @param version
42 * the version of the provider.
46 protected AuthProvider(String name, double version, String info) { argument
47 super(name, version, info);
/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DDOMImplementation.java24 * version, as specified in .
26 * @param version This is the version number of the feature to test.
28 * specified version, <code>false</code> otherwise.
31 String version);
112 * specialized APIs of the specified feature and version, as specified
121 * @param version This is the version number of the feature to test.
123 * the specified feature and version, if any, or <code>null</code> if
134 String version);
30 hasFeature(String feature, String version) argument
133 getFeature(String feature, String version) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DVersion.src24 * Administrative class to keep track of the version number of
28 * to get version information.</P>
35 * Get the basic version string for the current Serializer.
39 * Futurework: have this read version info from jar manifest.
41 * @return String denoting our current version
52 * Print the processor version to the command line.
79 * Major version number.
83 * version.
91 return @version.VERSION@;
105 return @version
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/
H A DResponseData.java21 private DERInteger version; field in class:ResponseData
28 DERInteger version,
34 this.version = version;
62 this.version = DERInteger.getInstance(
68 this.version = V1;
73 this.version = V1;
111 return version;
138 * version [0] EXPLICIT Version DEFAULT v1,
149 if (versionPresent || !version
27 ResponseData( DERInteger version, ResponderID responderID, DERGeneralizedTime producedAt, ASN1Sequence responses, X509Extensions responseExtensions) argument
[all...]
H A DTBSRequest.java19 DERInteger version; field in class:TBSRequest
29 this.version = V1;
46 version = DERInteger.getInstance((ASN1TaggedObject)seq.getObjectAt(0), true);
51 version = V1;
56 version = V1;
96 return version;
118 * version [0] EXPLICIT Version DEFAULT v1,
131 if (!version.equals(V1))
133 v.add(new DERTaggedObject(true, 0, version));
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
H A DCompressedData.java16 * version CMSVersion,
25 private DERInteger version; field in class:CompressedData
33 this.version = new DERInteger(0);
41 this.version = (DERInteger)seq.getObjectAt(0);
87 return version;
104 v.add(version);
H A DKeyTransRecipientInfo.java16 private DERInteger version; field in class:KeyTransRecipientInfo
28 this.version = new DERInteger(2);
32 this.version = new DERInteger(0);
43 this.version = (DERInteger)seq.getObjectAt(0);
74 return version;
96 * version CMSVersion, -- always set to 0 or 2
107 v.add(version);
H A DEnvelopedData.java18 private DERInteger version; field in class:EnvelopedData
32 version = new DERInteger(2);
36 version = new DERInteger(0);
44 if (!ri.getVersion().equals(version))
46 version = new DERInteger(2);
63 version = (DERInteger)seq.getObjectAt(index++);
123 return version;
150 * version CMSVersion,
162 v.add(version);
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs8/
H A DPrivateKeyInfo.java40 * version Version,
56 private int version; field in class:PrivateKeyInfo
66 public PrivateKeyInfo(int version, AlgorithmIdentifier privateKeyAlgorithm, argument
69 this.version = version;
75 private PrivateKeyInfo(int version, argument
78 this(version, privateKeyAlgorithm, privateKey, attributes);
83 * @return Returns version.
86 return version;
123 ASN1Integer.getInstance(), // version
[all...]

Completed in 525 milliseconds

123456