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

123

/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DNodeImpl.java148 public boolean isSupported(String feature, String version) { argument
149 return DOMImplementationImpl.getInstance().hasFeature(feature, version);
694 public final Object getFeature(String feature, String version) { argument
695 return isSupported(feature, version) ? this : null;
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DClientHandshakeImpl.java95 recordProtocol.setVersion(session.protocol.version);
116 recordProtocol.setVersion(session.protocol.version);
135 session.protocol.version, session.id, cipher_suites);
192 //check protocol version
202 "Bad server hello protocol version");
232 "Bad server hello protocol version");
244 recordProtocol.setVersion(session.protocol.version);
H A DServerHandshakeImpl.java338 server_version = ProtocolVersion.TLSv1.version;
341 "PROTOCOL VERSION. Unsupported client version "
/libcore/luni/src/test/java/tests/security/cert/
H A DCertPathBuilder1Test.java20 * @version $Revision$
462 MyProvider(String name, double version, String info) { argument
463 super(name, version, info);
/libcore/luni/src/test/java/libcore/sqlite/
H A DOldDatabaseTest.java530 String version = db.version();
531 if (version != null) {
532 assertTrue(Integer.parseInt(db.version().substring(0, 1)) > 0);
533 assertEquals(db.version(), db.version());
535 fail("DB version info missing");
956 int ver = Integer.parseInt(db.version().substring(0,1));
/libcore/luni/src/main/java/java/io/
H A DObjectOutputStream.java603 * Sets the specified protocol version to be used by this stream.
605 * @param version
606 * the protocol version to be used. Use a {@code
610 * if an invalid {@code version} is specified.
616 public void useProtocolVersion(int version) throws IOException { argument
618 throw new IllegalStateException("Cannot set protocol version when stream in use");
620 if (version != ObjectStreamConstants.PROTOCOL_VERSION_1
621 && version != ObjectStreamConstants.PROTOCOL_VERSION_2) {
622 throw new IllegalArgumentException("Unknown protocol: " + version);
624 protocolVersion = version;
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java42 = "http://xmlpull.org/v1/doc/properties.html#xmldecl-version";
91 private String version; field in class:KXmlParser
522 if (attributeCount < 1 || !"version".equals(attributes[2])) {
523 checkRelaxed("version expected");
526 version = attributes[3];
1594 version = null;
1722 * rather than incrementing position so that <?xml version='1.0'?>
1774 return version;
/libcore/luni/src/main/java/libcore/io/
H A DDiskLruCache.java118 * constant string "libcore.io.DiskLruCache", the disk cache's version,
119 * the application's version, the value count, and a blank line.
233 String version = reader.readLine();
238 || !VERSION_1.equals(version)
243 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSignature2Test.java506 MyProvider(String name, double version, String info) { argument
507 super(name, version, info);
H A DSignatureTest.java20 * @version $Revision$
624 protected MyProvider(String name, double version, String info, String signame, String className) { argument
625 super(name, version, info);
H A DAlgorithmParametersTest.java20 * @version $Revision$
685 MyProvider(String name, double version, String info) { argument
686 super(name, version, info);
H A DProviderTest.java20 * @version $Revision$
97 if (!p.getProperty("Provider.id version").equals(
99 fail("Incorrect \"Provider.id version\" value");
193 if (key.equals("Provider.id version") && val.equals("1.0")) {
226 assertTrue(s1.contains("Provider.id version"));
338 MyProvider(String name, double version, String info) { argument
339 super(name, version, info);
555 assertEquals("1.0", myProvider.get("Provider.id version"));
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java20 * @version $Revision$
588 public TestProvider(String name, double version, String info) { argument
589 super(name, version, info);
/libcore/dom/src/test/java/org/w3c/domts/
H A DJUnitTestCaseAdapter.java173 String version) {
174 return docBuilder.getDOMImplementation().hasFeature(feature,version);
171 hasFeature(DocumentBuilder docBuilder, String feature, String version) argument
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java541 * http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#Document3-version
563 private void assertFeature(String feature, String version) { argument
565 + feature + " v. " + version + " but does not.";
566 assertTrue(message, domImplementation.hasFeature(feature, version));
567 assertNotNull(message, domImplementation.getFeature(feature, version));
570 private void assertNoFeature(String feature, String version) { argument
571 assertFalse(domImplementation.hasFeature(feature, version));
572 assertNull(domImplementation.getFeature(feature, version));
1055 * an unrelated reason on version 5 of the RI. That behavior is
1372 String xml = "<?xml version
[all...]
/libcore/luni/src/main/native/
H A Dlibcore_icu_ICU.cpp624 static jstring versionString(JNIEnv* env, const UVersionInfo& version) { argument
626 u_versionToString(const_cast<UVersionInfo&>(version), &versionString[0]);
H A Dlibcore_io_Posix.cpp278 TO_JAVA_STRING(version, buf.version);
283 sysname, nodename, release, version, machine);
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp2383 // This loop is an expanded version of the NET_FAILURE_RETRY
2606 switch (ssl->version) {
4310 * Gets and returns in a string the version of the SSL protocol. If it
/libcore/luni/src/test/java/libcore/io/
H A DDiskLruCacheTest.java695 private void createJournalWithHeader(String magic, String version, String appVersion, argument
699 writer.write(version + "\n");

Completed in 7884 milliseconds

123