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

123

/libcore/luni/src/main/java/libcore/io/
H A DStructUtsname.java34 /** The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011". */
35 public final String version; field in class:StructUtsname
40 StructUtsname(String sysname, String nodename, String release, String version, String machine) { argument
44 this.version = version;
/libcore/crypto/src/main/java/org/conscrypt/
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 DClientHello.java35 * Client version
62 * @param version
66 public ClientHello(SecureRandom sr, byte[] version, byte[] ses_id, argument
68 client_version = version;
/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMTestIncompatibleException.java51 String version) {
55 buf.append("\" version=\"");
56 buf.append(version);
50 incompatibleFeature(String feature, String version) argument
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...]
H A DBatikTestDocumentBuilderFactory.java174 * @param version Version
177 public boolean hasFeature(String feature, String version) { argument
178 return getDOMImplementation().hasFeature(feature, version);
H A DDOM4JTestDocumentBuilderFactory.java130 public boolean hasFeature(String feature, String version) { argument
131 return domImpl.hasFeature(feature, version);
H A DDOMTestDocumentBuilderFactory.java62 public abstract boolean hasFeature(String feature, String version); argument
H A DJTidyDocumentBuilderFactory.java108 public boolean hasFeature(String feature, String version) { argument
109 return domImpl.hasFeature(feature, version);
H A DDOMTest.java63 public boolean hasFeature(String feature, String version) { argument
64 return factory.hasFeature(feature, version);
H A DDOMTestFramework.java30 String version);
27 hasFeature( DocumentBuilder docBuilder, String feature, String version) argument
H A DJAXPDOMTestDocumentBuilderFactory.java143 public boolean hasFeature(String feature, String version) { argument
144 return builder.getDOMImplementation().hasFeature(feature, version);
H A DJUnitTestCaseAdapter.java173 String version) {
174 return docBuilder.getDOMImplementation().hasFeature(feature,version);
171 hasFeature(DocumentBuilder docBuilder, String feature, String version) argument
H A DLSDocumentBuilderFactory.java355 * @param version Version
358 public boolean hasFeature(String feature, String version) { argument
359 return getDOMImplementation().hasFeature(feature, version);
/libcore/luni/src/main/java/java/security/
H A DAuthProvider.java28 protected AuthProvider(String name, double version, String info) { super(name, version, info); } argument
/libcore/luni/src/main/java/javax/crypto/spec/
H A DRC5ParameterSpec.java29 private final int version; field in class:RC5ParameterSpec
36 * version, round count an word size (in bits).
38 * @param version
39 * the version.
45 public RC5ParameterSpec(int version, int rounds, int wordSize) { argument
46 this.version = version;
54 * version, round count, word size (in bits) and an <i>initialization
61 * @param version
62 * the version
73 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) argument
112 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
H A DCertificationRequestInfo.java34 * version Version,
44 private final int version; field in class:CertificationRequestInfo
58 private CertificationRequestInfo(int version, Name subject, argument
60 this.version = version;
72 return version;
89 res.append("\n version: ");
90 res.append(version);
108 ASN1Integer.getInstance(), // version
127 values[0] = ASN1Integer.fromIntValue(certReqInfo.version);
[all...]
/libcore/luni/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...]
/libcore/luni/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...]
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
H A DSignedData.java20 * @version $Revision$
41 * version Version,
51 private final int version; field in class:SignedData
58 private SignedData(int version, List<?> digestAlgorithms, ContentInfo contentInfo, argument
61 this.version = version;
82 return version;
89 res.append(version);
123 values[0] = new byte[] {(byte)sd.version};
H A DSignerInfo.java20 * @version $Revision$
45 * version Version,
58 private final int version; field in class:SignerInfo
67 private SignerInfo(int version, argument
74 this.version = version;
135 res.append("\n version : ");
136 res.append(version);
174 ASN1Integer.getInstance(), //version
190 values[0] = new byte[] {(byte)si.version};
[all...]
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/
H A DPrivateKeyInfo.java37 * version Version,
51 private final int version; field in class:PrivateKeyInfo
57 public PrivateKeyInfo(int version, AlgorithmIdentifier privateKeyAlgorithm, argument
59 this.version = version;
65 private PrivateKeyInfo(int version, argument
68 this(version, privateKeyAlgorithm, privateKey, attributes);
73 return version;
103 ASN1Integer.getInstance(), // version
123 values[0] = ASN1Integer.fromIntValue(privateKeyInfo.version);
[all...]
/libcore/luni/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...]
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDOMDocumentBuilderFactory.java51 public boolean hasFeature(String feature, String version) { argument
52 return builder.getDOMImplementation().hasFeature(feature, version);
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
H A DTimeStampReq.java38 * version INTEGER { v1(1) },
51 private final int version; field in class:TimeStampReq
65 public TimeStampReq(int version, MessageImprint messageImprint, argument
68 this.version = version;
76 private TimeStampReq(int version, MessageImprint messageImprint, argument
79 this (version, messageImprint, reqPolicy, nonce, certReq, extensions);
87 res.append(version);
149 * @return Returns the version.
152 return version;
[all...]

Completed in 1983 milliseconds

123