Searched refs:version (Results 51 - 75 of 140) sorted by relevance

123456

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
H A DEncryptedData.java10 * version Version,
49 int version = ((DERInteger)seq.getObjectAt(0)).getValue().intValue();
51 if (version != 0)
53 throw new IllegalArgumentException("sequence not version 0");
H A DPfx.java25 BigInteger version = ((DERInteger)seq.getObjectAt(0)).getValue();
26 if (version.intValue() != 3)
28 throw new IllegalArgumentException("wrong version for PFX PDU");
H A DRSAPrivateKeyStructure.java17 private int version; field in class:RSAPrivateKeyStructure
60 this.version = 0;
79 throw new IllegalArgumentException("wrong version for RSA private key");
82 version = v.intValue();
100 return version;
147 * version Version,
160 * (CONSTRAINED BY {-- version must be multi if otherPrimeInfos present --})
163 * This routine is written to output PKCS1 version 2.1, private keys.
169 v.add(new DERInteger(version)); // version
[all...]
H A DPrivateKeyInfo.java63 BigInteger version = ((DERInteger)e.nextElement()).getValue();
64 if (version.intValue() != 0)
66 throw new IllegalArgumentException("wrong version for private key info");
108 * version Version,
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A Doutput_html.properties29 version=4.0
33 # <xsl:stylesheet version="1.0"
H A Doutput_xml.properties27 version=1.0
36 # <xsl:stylesheet version="1.0"
H A DXSLOutputAttributes.java35 * version
102 * @return the version of the output format.
177 * Sets the value coming from the xsl:output version attribute.
178 * @param version the version of the output format.
180 public void setVersion(String version); argument
/dalvik/libcore/xml/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);
H A DNodeIsSupported.java43 * The method "isSupported(feature,version)" Tests whether the DOM
49 * insensitive and versions "2.0", "1.0" and if the version is not specified,
50 * supporting any version of the feature should return true. Check if the value
97 String version = "";
115 success = element.isSupported(featureXML, version);
122 success = element.isSupported(featureCore, version);
138 String version = "";
156 success = attribute.isSupported(featureXML, version);
163 success = attribute.isSupported(featureCore, version);
H A DDOMImplementationHasFeature.java17 * The "feature" parameter in the "hasFeature(feature,version)" method is the
23 * version)" method is invoked with feature equal to "core". The method should
100 String version = "";
118 success = domImpl.hasFeature(featureXML, version);
125 success = domImpl.hasFeature(featureCore, version);
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/tsp/
H A DTimeStampReq.java18 DERInteger version; field in class:TimeStampReq
52 // version
53 version = DERInteger.getInstance(seq.getObjectAt(seqStart));
99 version = new DERInteger(1);
110 return version;
141 * version INTEGER { v1(1) },
156 v.add(version);
H A DTSTInfo.java25 DERInteger version; field in class:TSTInfo
77 // version
78 version = DERInteger.getInstance(e.nextElement());
138 version = new DERInteger(1);
200 * version INTEGER { v1(1) },
222 seq.add(version);
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DTBSCertList.java16 * version Version OPTIONAL,
86 DERInteger version; field in class:TBSCertList
130 version = DERInteger.getInstance(seq.getObjectAt(seqPos++));
134 version = new DERInteger(0);
170 return version.getValue().intValue() + 1;
175 return version;
H A DV2AttributeCertificateInfoGenerator.java16 * version AttCertVersion -- version is v2,
31 private DERInteger version; field in class:V2AttributeCertificateInfoGenerator
44 this.version = new DERInteger(1);
119 v.add(version);
H A DV3TBSCertificateGenerator.java13 * version [ 0 ] Version DEFAULT v1(0),
29 DERTaggedObject version = new DERTaggedObject(0, new DERInteger(2)); field in class:V3TBSCertificateGenerator
114 v.add(version);
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/tsp/
H A DTSTInfo.java44 * version INTEGER { v1(1) },
68 private final int version; field in class:TSTInfo
88 public TSTInfo(int version, String policy, MessageImprint messageImprint, argument
92 this.version = version;
108 res.append(version);
198 * @return Returns the version.
201 return version;
253 ASN1Integer.getInstance(), // version
293 values[0] = ASN1Integer.fromIntValue(info.version);
[all...]
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DUUIDTest.java46 assertEquals(1, uuid.version());
90 * @see UUID#version()
95 method = "version",
100 assertEquals(0, uuid.version());
102 assertEquals(1, uuid.version());
104 assertEquals(2, uuid.version());
106 assertEquals(3, uuid.version());
108 assertEquals(4, uuid.version());
110 assertEquals(5, uuid.version());
367 assertEquals(4, uuid.version());
[all...]
/dalvik/dx/src/com/android/dx/command/
H A DMain.java58 " dx --version\n" +
59 " Print the version of this tool (" + Version.VERSION +
101 } else if (arg.equals("--version")) {
102 version();
143 * Prints the version message.
145 private static void version() { method in class:Main
146 System.err.println("dx version " + Version.VERSION);
/dalvik/libcore/dom/src/test/java/org/w3c/domts/
H A DJTidyDocumentBuilderFactory.java108 public boolean hasFeature(String feature, String version) { argument
109 return domImpl.hasFeature(feature, version);
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);
/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DNode.java272 * @version DOM Level 2
307 * @version DOM Level 3
344 * @version DOM Level 3
363 * @version DOM Level 3
391 * @version DOM Level 3
459 * @version DOM Level 3
467 * @param version This is the version number of the feature to test.
473 String version);
536 * illegal character according to the XML version i
472 isSupported(String feature, String version) argument
869 getFeature(String feature, String version) argument
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs7/
H A DSignerInfo.java20 * @version $Revision$
48 * version Version,
63 private int version; field in class:SignerInfo
73 public SignerInfo(int version, argument
81 this.version = version;
135 res.append("\n version : "); //$NON-NLS-1$
136 res.append(version);
174 ASN1Integer.getInstance(), //version
190 values[0] = new byte[] {(byte)si.version};
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DPackage.java167 * Returns the version of the implementation of this package, or {@code
170 * @return the implementation version, may be {@code null}.
239 * Returns the version of the specification this package implements, or
240 * {@code null} if this is unknown. The version string is a sequence of
243 * @return the specification version string, may be {@code null}.
256 * Indicates whether this package's specification version is compatible with
257 * the specified version string. Version strings are compared by comparing
258 * each dot separated part of the version as an integer.
260 * @param version
261 * the version strin
269 isCompatibleWith(String version) argument
[all...]
/dalvik/libcore/security/src/main/files/
H A Dcertimport.sh2 # java version >= 1.6 is required for this script.
23 # Check java version.
24 JAVA_VERSION=`java -version 2>&1 | head -1`
25 JAVA_VERSION_MINOR=`expr match "$JAVA_VERSION" "java version \"[1-9]\.\([0-9]\).*\""`
29 echo "ERROR: java version 1.6 or greater required for keytool usage"

Completed in 1454 milliseconds

123456