Searched defs:spec (Results 101 - 125 of 398) sorted by relevance

1234567891011>>

/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DInvalidKeySpecExceptionTest.java22 package org.apache.harmony.security.tests.java.security.spec;
24 import java.security.spec.InvalidKeySpecException;
H A DRSAPrivateCrtKeySpecTest.java22 package org.apache.harmony.security.tests.java.security.spec;
25 import java.security.spec.KeySpec;
26 import java.security.spec.RSAPrivateCrtKeySpec;
27 import java.security.spec.RSAPrivateKeySpec;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPublicKey.java9 import javax.crypto.spec.DHParameterSpec;
10 import javax.crypto.spec.DHPublicKeySpec;
35 DHPublicKeySpec spec)
37 this.y = spec.getY();
38 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
34 BCDHPublicKey( DHPublicKeySpec spec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DKeyFactorySpi.java10 import java.security.spec.InvalidKeySpecException;
11 import java.security.spec.KeySpec;
22 import org.bouncycastle.jce.spec.ECParameterSpec;
23 import org.bouncycastle.jce.spec.ECPrivateKeySpec;
24 import org.bouncycastle.jce.spec.ECPublicKeySpec;
59 Class spec)
62 if (spec.isAssignableFrom(java.security.spec.ECPublicKeySpec.class) && key instanceof ECPublicKey)
67 return new java.security.spec.ECPublicKeySpec(k.getW(), k.getParams());
73 return new java.security.spec
57 engineGetKeySpec( Key key, Class spec) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java10 import javax.crypto.spec.DHParameterSpec;
11 import javax.crypto.spec.DHPrivateKeySpec;
53 DHPrivateKeySpec spec)
55 this.x = spec.getX();
56 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
52 JCEDHPrivateKey( DHPrivateKeySpec spec) argument
H A DJCEDHPublicKey.java9 import javax.crypto.spec.DHParameterSpec;
10 import javax.crypto.spec.DHPublicKeySpec;
34 DHPublicKeySpec spec)
36 this.y = spec.getY();
37 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
33 JCEDHPublicKey( DHPublicKeySpec spec) argument
H A DJCERSAPrivateCrtKey.java6 import java.security.spec.RSAPrivateCrtKeySpec;
53 * @param spec the spec to be used in construction.
56 RSAPrivateCrtKeySpec spec)
58 this.modulus = spec.getModulus();
59 this.publicExponent = spec.getPublicExponent();
60 this.privateExponent = spec.getPrivateExponent();
61 this.primeP = spec.getPrimeP();
62 this.primeQ = spec.getPrimeQ();
63 this.primeExponentP = spec
55 JCERSAPrivateCrtKey( RSAPrivateCrtKeySpec spec) argument
[all...]
H A DJDKDSAPublicKey.java9 import java.security.spec.DSAParameterSpec;
10 import java.security.spec.DSAPublicKeySpec;
32 DSAPublicKeySpec spec)
34 this.y = spec.getY();
35 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
31 JDKDSAPublicKey( DSAPublicKeySpec spec) argument
/external/chromium_org/chrome/browser/chromeos/
H A Dui_proxy_config.cc113 automatic_proxy.pac_url.spec(), false);
116 std::string spec; local
118 spec = single_proxy.server.ToURI();
120 spec, bypass_rules.ToString());
123 std::string spec; local
124 EncodeAndAppendProxyServer("http", http_proxy.server, &spec);
125 EncodeAndAppendProxyServer("https", https_proxy.server, &spec);
126 EncodeAndAppendProxyServer("ftp", ftp_proxy.server, &spec);
127 EncodeAndAppendProxyServer("socks", socks_proxy.server, &spec);
129 spec, bypass_rule
153 EncodeAndAppendProxyServer(const std::string& url_scheme, const net::ProxyServer& server, std::string* spec) argument
[all...]
/external/chromium_org/chrome/browser/geolocation/
H A Dchrome_access_token_store.cc25 const std::string& spec = url.spec(); local
28 if (spec == "https://www.google.com/loc/json")
32 if (spec == "https://maps.googleapis.com/maps/api/browserlocation/json")
122 server_url.spec(), new base::StringValue(token));
/external/chromium_org/components/autofill/core/common/
H A Dform_data.cc19 std::string spec; local
20 if (!iter->ReadString(&spec))
23 *url = GURL(spec);
112 pickle->WriteString(form_data.origin.spec());
113 pickle->WriteString(form_data.action.spec());
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebURL.h73 WebCString spec() const function in class:blink::WebURL
75 std::string spec = m_string.utf8(); local
76 return WebCString(spec.data(), spec.length());
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dmapi.c60 * Initialize mapi. spec consists of NULL-separated strings. The first string
63 * entry terminates the spec. A spec of two entries, Foo and Bar, is as
74 mapi_init(const char *spec) argument
89 p = spec;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dremap.c58 * Return the spec string associated with the given function index.
63 * \return the spec string associated with the function index, or NULL.
76 * Map a function by its spec. The function will be added to glapi,
79 * \param spec a '\0'-separated string array specifying a function.
88 _mesa_map_function_spec(const char *spec) argument
94 if (!spec)
97 signature = spec;
98 spec += strlen(spec) + 1;
100 /* spec i
136 const char *spec; local
202 const char *spec; local
[all...]
/external/chromium_org/url/
H A Durl_canon_fileurl.cc18 // Given a pointer into the spec, this copies and canonicalizes the drive
20 // spec, it won't do anything. The index of the next character in the input
21 // spec is returned (after the colon when a drive spec is found, the begin
24 int FileDoDriveSpec(const CHAR* spec, int begin, int end, argument
28 int num_slashes = CountConsecutiveSlashes(spec, begin, end);
31 if (!DoesBeginWindowsDriveSpec(spec, after_slashes, end))
34 // A drive spec is the start of a path, so we need to add a slash for the
42 if (spec[after_slashes] >= 'a' && spec[after_slashe
55 DoFileCanonicalizePath(const CHAR* spec, const Component& path, CanonOutput* output, Component* out_path) argument
124 CanonicalizeFileURL(const char* spec, int spec_len, const Parsed& parsed, CharsetConverter* query_converter, CanonOutput* output, Parsed* new_parsed) argument
135 CanonicalizeFileURL(const base::char16* spec, int spec_len, const Parsed& parsed, CharsetConverter* query_converter, CanonOutput* output, Parsed* new_parsed) argument
146 FileCanonicalizePath(const char* spec, const Component& path, CanonOutput* output, Component* out_path) argument
154 FileCanonicalizePath(const base::char16* spec, const Component& path, CanonOutput* output, Component* out_path) argument
[all...]
H A Durl_canon_pathurl.cc78 bool CanonicalizePathURL(const char* spec, argument
84 URLComponentSource<char>(spec), parsed, output, new_parsed);
87 bool CanonicalizePathURL(const base::char16* spec, argument
93 URLComponentSource<base::char16>(spec), parsed, output, new_parsed);
H A Durl_canon_stdurl.cc127 bool CanonicalizeStandardURL(const char* spec, argument
134 URLComponentSource<char>(spec), parsed, query_converter,
138 bool CanonicalizeStandardURL(const base::char16* spec, argument
145 URLComponentSource<base::char16>(spec), parsed, query_converter,
/external/clang/test/PCH/
H A Dcxx1y-variable-templates.cpp50 namespace spec { namespace
145 namespace spec { namespace
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLRSAPublicKey.java25 import java.security.spec.InvalidKeySpecException;
26 import java.security.spec.RSAPublicKeySpec;
48 OpenSSLRSAPublicKey(RSAPublicKeySpec spec) throws InvalidKeySpecException { argument
51 spec.getModulus().toByteArray(),
52 spec.getPublicExponent().toByteArray(),
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableInfo.java178 * register spec. This throws an exception if the instruction
181 * <b>Note:</b> Although the instruction contains its own spec for
183 * method, since the spec that is stored here should always have a
188 * @param spec {@code non-null;} the associated register spec
190 public void addAssignment(Insn insn, RegisterSpec spec) { argument
197 if (spec == null) {
198 throw new NullPointerException("spec == null");
201 insnAssignments.put(insn, spec);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableInfo.java175 * register spec. This throws an exception if the instruction
178 * <b>Note:</b> Although the instruction contains its own spec for
180 * method, since the spec that is stored here should always have a
185 * @param spec {@code non-null;} the associated register spec
187 public void addAssignment(SsaInsn insn, RegisterSpec spec) { argument
194 if (spec == null) {
195 throw new NullPointerException("spec == null");
198 insnAssignments.put(insn, spec);
/external/doclava/src/com/google/doclava/
H A DSinceTagger.java101 * @param specApi the spec for this version. If a symbol is in this spec, it was present in the
140 private void versionClass(String versionName, ClassInfo spec, ClassInfo doc) { argument
147 if (spec.isDeprecated()) {
154 * Applies version information from {@code spec} to {@code doc} where not already present.
156 private void versionConstructors(String versionName, ClassInfo spec, ClassInfo doc) { argument
159 && spec.hasConstructor(constructor)) {
165 // Find matching field from API spec
166 if (spec.allConstructorsMap().containsKey(constructor.getHashableName())) {
167 MethodInfo specConstructor = spec
179 versionFields(String versionName, ClassInfo spec, ClassInfo doc) argument
202 versionMethods(String versionName, ClassInfo spec, ClassInfo doc) argument
[all...]
/external/mesa3d/src/mapi/mapi/
H A Dmapi.c60 * Initialize mapi. spec consists of NULL-separated strings. The first string
63 * entry terminates the spec. A spec of two entries, Foo and Bar, is as
74 mapi_init(const char *spec) argument
89 p = spec;
/external/mesa3d/src/mesa/main/
H A Dremap.c58 * Return the spec string associated with the given function index.
63 * \return the spec string associated with the function index, or NULL.
76 * Map a function by its spec. The function will be added to glapi,
79 * \param spec a '\0'-separated string array specifying a function.
88 _mesa_map_function_spec(const char *spec) argument
94 if (!spec)
97 signature = spec;
98 spec += strlen(spec) + 1;
100 /* spec i
136 const char *spec; local
202 const char *spec; local
[all...]
/external/oprofile/pp/
H A Dopannotate_options.cpp89 void handle_options(options::spec const & spec) argument
93 if (spec.first.size()) {
125 profile_spec::create(spec.common, options::image_path,

Completed in 2347 milliseconds

1234567891011>>