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

12

/libcore/luni/src/main/java/android/system/
H A DStructUtsname.java35 /** The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011". */
36 public final String version; field in class:StructUtsname
44 public StructUtsname(String sysname, String nodename, String release, String version, String machine) { argument
48 this.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...]
/libcore/luni/src/main/java/java/lang/
H A DPackage.java149 * Returns the version of the implementation of this package, or {@code
152 * @return the implementation version, may be {@code null}.
221 * Returns the version of the specification this package implements, or
222 * {@code null} if this is unknown. The version string is a sequence of
225 * @return the specification version string, may be {@code null}.
237 * Indicates whether this package's specification version is compatible with
238 * the specified version string. Version strings are compared by comparing
239 * each dot separated part of the version as an integer.
241 * @param version
242 * the version strin
249 isCompatibleWith(String version) argument
[all...]
/libcore/luni/src/main/java/java/util/
H A DUUID.java51 private transient int version; field in class:UUID
95 // setup version field
96 version = (int) ((mostSigBits & 0x000000000000F000) >>> 12);
98 if (variant != 2 && version != 1) {
117 * Generates a variant 2, version 4 (randomly generated number) UUID as per
136 * Generates a variant 2, version 3 (name-based, MD5-hashed) UUID as per <a
155 private static UUID makeUuid(byte[] hash, int version) { argument
158 // Set the version field.
160 msb |= ((long) version) << 12;
225 * The version o
238 public int version() { method in class:UUID
[all...]

Completed in 527 milliseconds

12