HomeSort by relevance Sort by last modified time
    Searched defs:algorithm (Results 26 - 50 of 189) sorted by null

12 3 4 5 6 7 8

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
compare.hpp 14 #include <boost/algorithm/string/config.hpp>
25 namespace algorithm { namespace in namespace:boost
186 } // namespace algorithm
189 using algorithm::is_equal;
190 using algorithm::is_iequal;
191 using algorithm::is_less;
192 using algorithm::is_iless;
193 using algorithm::is_not_greater;
194 using algorithm::is_not_igreater;
concept.hpp 24 namespace algorithm { namespace in namespace:boost
77 } // namespace algorithm
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format_all.hpp 14 #include <boost/algorithm/string/config.hpp>
18 #include <boost/algorithm/string/detail/find_format_store.hpp>
19 #include <boost/algorithm/string/detail/replace_storage.hpp>
22 namespace algorithm { namespace in namespace:boost
88 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
89 return ::boost::algorithm::detail::find_format_all_copy_impl2(
147 ::boost::algorithm::detail::insert( Output, ::boost::end(Output), LastMatch, ::boost::end(Input) );
163 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
164 return ::boost::algorithm::detail::find_format_all_copy_impl2(
222 ::boost::algorithm::detail::copy_to_storage( Storage, M.format_result() )
    [all...]
find_format_store.hpp 14 #include <boost/algorithm/string/config.hpp>
18 namespace algorithm { namespace in namespace:boost
86 } // namespace algorithm
formatter.hpp 20 #include <boost/algorithm/string/detail/util.hpp>
25 namespace algorithm { namespace in namespace:boost
116 } // namespace algorithm
replace_storage.hpp 14 #include <boost/algorithm/string/config.hpp>
15 #include <algorithm>
17 #include <boost/algorithm/string/sequence_traits.hpp>
18 #include <boost/algorithm/string/detail/sequence.hpp>
21 namespace algorithm { namespace in namespace:boost
71 ForwardIteratorT It=::boost::algorithm::detail::move_from_storage( Storage, InsertIt, SegmentBegin );
128 ::boost::algorithm::detail::replace( Input, InsertIt, SegmentBegin, Storage );
136 // Process one segment in the replace_all algorithm
156 } // namespace algorithm
sequence.hpp 14 #include <boost/algorithm/string/config.hpp>
20 #include <boost/algorithm/string/sequence_traits.hpp>
23 namespace algorithm { namespace in namespace:boost
44 ::boost::algorithm::detail::insert( Input, At, ::boost::begin(Insert), ::boost::end(Insert) );
187 ::boost::algorithm::detail::replace( Input, From, To, ::boost::begin(Insert), ::boost::end(Insert) );
191 ::boost::algorithm::detail::insert( Input, From, ::boost::begin(Insert), ::boost::end(Insert) );
196 } // namespace algorithm
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
Key.cpp 34 #include "modules/crypto/Algorithm.h"
112 Algorithm* Key::algorithm() function in class:WebCore::Key
115 m_algorithm = Algorithm::create(m_key.algorithm());
SubtleCrypto.cpp 82 bool keyCanBeUsedForAlgorithm(const WebKit::WebCryptoKey& key, const WebKit::WebCryptoAlgorithm& algorithm, AlgorithmOperation op)
87 if (key.algorithm().id() != algorithm.id())
90 if (key.algorithm().paramsType() == WebKit::WebCryptoAlgorithmParamsTypeNone)
93 // Verify that the algorithm-specific parameters for the key conform to the
94 // algorithm.
96 if (key.algorithm().paramsType() == WebKit::WebCryptoAlgorithmParamsTypeHmacParams) {
97 return key.algorithm().hmacParams()->hash().id() == algorithm.hmacParams()->hash().id();
112 WebKit::WebCryptoAlgorithm algorithm; local
210 WebKit::WebCryptoAlgorithm algorithm; local
245 WebKit::WebCryptoAlgorithm algorithm; local
    [all...]
CryptoOperation.cpp 38 #include "modules/crypto/Algorithm.h"
207 PassRefPtr<CryptoOperation> CryptoOperation::create(const WebKit::WebCryptoAlgorithm& algorithm, CryptoOperationImpl* impl)
209 return adoptRef(new CryptoOperation(algorithm, impl));
212 CryptoOperation::CryptoOperation(const WebKit::WebCryptoAlgorithm& algorithm, CryptoOperationImpl* impl)
213 : m_algorithm(algorithm)
242 Algorithm* CryptoOperation::algorithm() function in class:WebCore::CryptoOperation
245 m_algorithmNode = Algorithm::create(m_algorithm);
  /libcore/benchmarks/src/benchmarks/regression/
KeyPairGeneratorBenchmark.java 30 @Param private Algorithm algorithm; field in class:KeyPairGeneratorBenchmark
32 public enum Algorithm {
46 this.generatorAlgorithm = algorithm.toString();
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGenerator.java 25 * generating parameters for the algorithm it was initialized with.
44 //Store used algorithm
45 private final String algorithm; field in class:AlgorithmParameterGenerator
55 * @param algorithm
56 * the name of the algorithm.
60 String algorithm) {
62 this.algorithm = algorithm;
67 * Returns the name of the algorithm.
69 * @return the name of the algorithm
    [all...]
KeyFactory.java 43 // The algorithm.
44 private final String algorithm; field in class:KeyFactory
54 * @param algorithm
55 * the algorithm to use.
59 String algorithm) {
61 this.algorithm = algorithm;
67 * algorithm.
69 * @param algorithm
70 * the name of the algorithm
    [all...]
KeyRep.java 39 // Key algorithm name
40 private final String algorithm; field in class:KeyRep
53 * @param algorithm
54 * the algorithm (obtained by {@link Key#getAlgorithm()}).
61 * if {@code type, algorithm, format or encoded} is {@code null}
64 public KeyRep(Type type, String algorithm, String format, byte[] encoded) {
66 this.algorithm = algorithm;
72 if(this.algorithm == null) {
73 throw new NullPointerException("algorithm == null")
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilder.java 51 // Store algorithm name
52 private final String algorithm; field in class:CertPathBuilder
61 * @param algorithm
62 * the desired algorithm available at the provider.
65 String algorithm) {
67 this.algorithm = algorithm;
72 * Returns the algorithm name of this instance.
74 * @return the algorithm name of this instance.
77 return algorithm;
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
KeyAgreement.java 50 // Store used algorithm name
51 private final String algorithm; field in class:KeyAgreement
60 * @param algorithm
61 * the name of the key agreement algorithm.
64 String algorithm) {
66 this.algorithm = algorithm;
71 * Returns the name of the key agreement algorithm.
73 * @return the name of the key agreement algorithm.
76 return algorithm;
    [all...]
KeyGenerator.java 48 // Store used algorithm name
49 private final String algorithm; field in class:KeyGenerator
58 * @param algorithm
59 * the name of the algorithm.
62 String algorithm) {
64 this.algorithm = algorithm;
69 * Returns the name of the key generation algorithm.
71 * @return the name of the key generation algorithm.
74 return algorithm;
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
TrustManagerFactory.java 41 private static final String PROPERTY_NAME = "ssl.TrustManagerFactory.algorithm";
47 * Returns the default algorithm name for the {@code TrustManagerFactory}. The
48 * default algorithm name is specified by the security property
49 * {@code 'ssl.TrustManagerFactory.algorithm'}.
51 * @return the default algorithm name.
54 String algorithm = Security.getProperty(PROPERTY_NAME); local
55 return (algorithm != null ? algorithm : DEFAULT_PROPERTY);
60 * trust management algorithm.
62 * @param algorithm
146 private final String algorithm; field in class:TrustManagerFactory
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AlgorithmIdentifier.java 37 * with the Algorithm Identifier which is a part of X.509 certificate
45 * algorithm OBJECT IDENTIFIER,
46 * parameters ANY DEFINED BY algorithm OPTIONAL
51 /** the value of algorithm field */
52 private String algorithm; field in class:AlgorithmIdentifier
53 /** the name of the algorithm */
60 public AlgorithmIdentifier(String algorithm) {
61 this(algorithm, null, null);
64 public AlgorithmIdentifier(String algorithm, byte[] parameters) {
65 this(algorithm, parameters, null)
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
SecretKeySpecTest.java 38 * SecretKeySpec(byte[] key, String algorithm) method testing. Tests that
45 String algorithm = "Algorithm"; local
48 new SecretKeySpec(new byte[] {}, algorithm);
55 new SecretKeySpec(null, algorithm);
64 + "in the case of null algorithm.");
68 SecretKeySpec ks = new SecretKeySpec(key, algorithm);
76 * SecretKeySpec(byte[] key, int offset, int len, String algorithm) method
85 String algorithm = "Algorithm"; local
162 String algorithm = "Algorithm"; local
175 String algorithm = "Algorithm"; local
189 String algorithm = "Algorithm"; local
215 String algorithm = "Algorithm"; local
230 String algorithm = "Algorithm"; local
    [all...]
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
Cipher_Impl1Test.java 31 final static String algorithm = "DESede"; field in class:Cipher_Impl1Test
36 KeyGenerator kg = KeyGenerator.getInstance(algorithm);
61 AlgorithmParameters ap = AlgorithmParameters.getInstance(algorithm);
64 cipher = Cipher.getInstance(algorithm + "/CBC/PKCS5Padding");
96 cipher = Cipher.getInstance(algorithm + "/CBC/PKCS5Padding");
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStorePrivateKeyEntryTest.java 65 String algorithm = certificate.getPublicKey().getAlgorithm(); local
67 .getInstance(algorithm);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
KeyStoreTestSupport.java 90 private String algorithm; field in class:KeyStoreTestSupport.MyPrivateKey
96 public MyPrivateKey(String algorithm, String format, byte[] encoded) {
97 this.algorithm = algorithm;
103 return algorithm;
MyKeyPairGenerator1.java 94 private String algorithm; field in class:MyKeyPairGenerator1.PubKey
101 this.algorithm = "MyKeyPairGenerator1";
107 return algorithm;
120 private String algorithm; field in class:MyKeyPairGenerator1.PrivKey
127 this.algorithm = "MyKeyPairGenerator1";
133 return algorithm;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyFactorySpi.java 30 String algorithm; field in class:KeyFactorySpi
34 String algorithm,
37 this.algorithm = algorithm;
130 return new BCECPrivateKey(algorithm, (ECPrivateKeySpec)keySpec, configuration);
134 return new BCECPrivateKey(algorithm, (java.security.spec.ECPrivateKeySpec)keySpec, configuration);
146 return new BCECPublicKey(algorithm, (ECPublicKeySpec)keySpec, configuration);
150 return new BCECPublicKey(algorithm, (java.security.spec.ECPublicKeySpec)keySpec, configuration);
163 return new BCECPrivateKey(algorithm, keyInfo, configuration);
167 throw new IOException("algorithm identifier " + algOid + " in key not recognised")
    [all...]

Completed in 1096 milliseconds

12 3 4 5 6 7 8