Searched defs:scheme (Results 1 - 10 of 10) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
H A DPBES2Algorithms.java20 private EncryptionScheme scheme; field in class:PBES2Algorithms
46 scheme = new EncryptionScheme((ASN1Sequence)e.nextElement());
61 return scheme;
72 subV.add(scheme);
H A DPBES2Parameters.java16 private EncryptionScheme scheme; field in class:PBES2Parameters
33 scheme = new EncryptionScheme((ASN1Sequence)e.nextElement());
43 return scheme;
51 v.add(scheme);
/dalvik/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMTest.java132 public String getResourceURI(String href, String scheme, String contentType) throws argument
134 if (scheme == null) {
135 throw new NullPointerException("scheme");
137 if ("file".equals(scheme)) {
140 if ("http".equals(scheme)) {
153 throw new DOMTestLoadException(new Exception("Unrecognized URI scheme " +
154 scheme));
157 public String createTempURI(String scheme) throws DOMTestLoadException { argument
158 if (scheme == null) {
159 throw new NullPointerException("scheme");
[all...]
H A DDOMTestInnerClass.java133 public void assertURIEquals(String assertID, String scheme, String path, argument
137 test.assertURIEquals(assertID, scheme, path, host, file, name, query,
H A DDOMTestCase.java646 * @param scheme
647 * Expected scheme, for example, "file". If null, scheme is
672 String scheme,
722 if (scheme != null) {
723 assertEquals(assertID, scheme, actualScheme);
670 assertURIEquals( String assertID, String scheme, String path, String host, String file, String name, String query, String fragment, Boolean isAbsolute, String actual) argument
/dalvik/libcore/luni/src/main/java/java/net/
H A DAuthenticator.java53 private String scheme; field in class:Authenticator
111 * Returns the scheme of the connection that requests authorization, for
114 * @return scheme of the connection.
117 return this.scheme;
136 * scheme of the connection that requests authentication.
157 thisAuthenticator.scheme = rScheme;
203 * scheme of the connection that requests authentication.
225 thisAuthenticator.scheme = rScheme;
261 * scheme of the connection that requests authentication.
288 thisAuthenticator.scheme
[all...]
H A DURI.java48 private transient String scheme; field in class:URI
95 * {@code [scheme:]scheme-specific-part[#fragment]}
97 * @param scheme
98 * the scheme part of the URI.
100 * the scheme-specific-part of the URI.
107 public URI(String scheme, String ssp, String frag) argument
110 if (scheme != null) {
111 uri.append(scheme);
132 * {@code [scheme
154 URI(String scheme, String userinfo, String host, int port, String path, String query, String fragment) argument
239 URI(String scheme, String host, String path, String fragment) argument
266 URI(String scheme, String authority, String path, String query, String fragment) argument
407 validateScheme(String uri, String scheme, int index) argument
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJCESecretKeyFactory.java110 private int scheme; field in class:JCESecretKeyFactory.PBEKeyFactory
119 int scheme,
127 this.scheme = scheme;
144 return new JCEPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, null);
149 param = Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
153 param = Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
156 return new JCEPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
167 private int scheme; field in class:JCESecretKeyFactory.DESPBEKeyFactory
176 int scheme,
115 PBEKeyFactory( String algorithm, DERObjectIdentifier oid, boolean forCipher, int scheme, int digest, int keySize, int ivSize) argument
172 DESPBEKeyFactory( String algorithm, DERObjectIdentifier oid, boolean forCipher, int scheme, int digest, int keySize, int ivSize) argument
[all...]
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
H A DDOMTestCase.java105 public void assertURIEquals(String assertID, String scheme, String path, argument
149 if (scheme != null) {
150 assertEquals(assertID, scheme, actualScheme);
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DURITest.java71 "ht123-+tp://www.google.com:80/test", // legal chars in scheme
98 "mailto:user^name@fklkf.com" // invalid char in scheme
215 // scheme validation
216 "a scheme://reg/", // illegal char
217 "1scheme://reg/", // non alpha char as 1st char
286 // tests for public URI(String scheme, String ssp, String frag) throws
305 // scheme specific part can not be null
312 // scheme needs to start with an alpha char
314 uri = new URI("3scheme", "//authority/path", "fragment");
319 // scheme ca
415 construct1(String scheme, String userinfo, String host, int port, String path, String query, String fragment) argument
[all...]

Completed in 380 milliseconds