HomeSort by relevance Sort by last modified time
    Searched full:spec (Results 351 - 375 of 5555) sorted by null

<<11121314151617181920>>

  /developers/build/
sample-create 35 BUILDPATH=$(perl -e "use File::Spec; print File::Spec->abs2rel(@ARGV)" $SCRIPTPATH $SAMPLE_PATH)
39 COMMONPATH=$(perl -e "use File::Spec; print File::Spec->abs2rel(@ARGV)" $SAMPLES_COMMON $SAMPLE_PATH)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator3Test.java 28 import java.security.spec.DSAParameterSpec;
154 * @tests java.security.AlgorithmParameterGenerator#init(java.security.spec.AlgorithmParameterSpec)
158 // java.security.AlgorithmParameterGenerator.init(java.security.spec.AlgorithmParameterSpec)
160 DSAParameterSpec spec = new DSAParameterSpec(BigInteger.ONE, local
165 gen.init(spec);
173 * @tests java.security.AlgorithmParameterGenerator#init(java.security.spec.AlgorithmParameterSpec,
178 // java.security.AlgorithmParameterGenerator.init(java.security.spec.AlgorithmParameterSpec,
181 DSAParameterSpec spec = new DSAParameterSpec(BigInteger.ONE, local
186 gen.init(spec, new SecureRandom());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
AlgorithmParametersSpi.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
7 import javax.crypto.spec.DHParameterSpec;
81 throw new InvalidParameterSpecException("unknown parameter spec passed to DH parameters object.");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
AlgorithmParametersSpi.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.DSAParameterSpec;
6 import java.security.spec.InvalidParameterSpecException;
77 throw new InvalidParameterSpecException("unknown parameter spec passed to DSA parameters object.");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPrivateKey.java 8 import java.security.spec.RSAPrivateKeySpec;
45 RSAPrivateKeySpec spec)
47 this.modulus = spec.getModulus();
48 this.privateExponent = spec.getPrivateExponent();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateKey.java 8 import java.security.spec.RSAPrivateKeySpec;
45 RSAPrivateKeySpec spec)
47 this.modulus = spec.getModulus();
48 this.privateExponent = spec.getPrivateExponent();
JCERSAPublicKey.java 6 import java.security.spec.RSAPublicKeySpec;
32 RSAPublicKeySpec spec)
34 this.modulus = spec.getModulus();
35 this.publicExponent = spec.getPublicExponent();
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/tasks/test/
node.rake 6 unless system 'jasmine-node', base_path.join('spec').to_s
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECGroupContext.java 22 import java.security.spec.ECField;
23 import java.security.spec.ECFieldF2m;
24 import java.security.spec.ECFieldFp;
25 import java.security.spec.ECParameterSpec;
26 import java.security.spec.ECPoint;
27 import java.security.spec.EllipticCurve;
190 ECParameterSpec spec = new ECParameterSpec(curve, generator, order, cofactor.intValue()); local
191 Platform.setCurveName(spec, curveName);
192 return spec;
OpenSSLECKeyFactory.java 27 import java.security.spec.ECParameterSpec;
28 import java.security.spec.ECPoint;
29 import java.security.spec.ECPrivateKeySpec;
30 import java.security.spec.ECPublicKeySpec;
31 import java.security.spec.InvalidKeySpecException;
32 import java.security.spec.KeySpec;
33 import java.security.spec.PKCS8EncodedKeySpec;
34 import java.security.spec.X509EncodedKeySpec;
126 throw new InvalidKeySpecException("Unsupported key type and key spec combination; key="
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalEnd.java 31 * {@code non-null;} register spec representing the local variable ended
44 * @param local {@code non-null;} register spec representing the local
70 * Gets the register spec representing the local variable ended
73 * @return {@code non-null;} the register spec
  /external/e2fsprogs/util/
gen-tarball.in 37 mv ../e2fsprogs.spec $top_srcdir/e2fsprogs.spec
53 mv $top_srcdir/e2fsprogs.spec ../e2fsprogs.spec
  /external/llvm/test/Transforms/ConstProp/
2002-05-03-NotOperator.ll 3 ; due to a spec change.
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAssociatedURIHeader.java 46 * (p-aso-uri-spec) *(COMMA p-aso-uri-spec)
47 * p-aso-uri-spec = name-addr *(SEMI ai-param)
50 * angle-addr = [CFWS] "<" addr-spec ">" [CFWS] / obs-angle-addr
  /external/selinux/libselinux/src/
label_media.c 22 typedef struct spec { struct
109 * of the first pass, the spec array is allocated.
111 * and fills in the spec array.
156 struct spec *spec, *spec_arr = data->spec_arr; local
160 spec = &spec_arr[i];
161 free(spec->key);
162 free(spec->lr.ctx_raw);
163 free(spec->lr.ctx_trans);
label_x.c 23 typedef struct spec { struct
136 * of the first pass, the spec array is allocated.
138 * and fills in the spec array.
183 struct spec *spec, *spec_arr = data->spec_arr; local
187 spec = &spec_arr[i];
188 free(spec->key);
189 free(spec->lr.ctx_raw);
190 free(spec->lr.ctx_trans);
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyFactorySpi.java 27 import java.security.spec.ECPublicKeySpec;
28 import java.security.spec.InvalidKeySpecException;
29 import java.security.spec.KeySpec;
30 import java.security.spec.PKCS8EncodedKeySpec;
31 import java.security.spec.RSAPublicKeySpec;
32 import java.security.spec.X509EncodedKeySpec;
122 throw new InvalidKeySpecException("Unsupported key spec: " + keySpecClass.getName());
127 protected PrivateKey engineGeneratePrivate(KeySpec spec) throws InvalidKeySpecException {
134 protected PublicKey engineGeneratePublic(KeySpec spec) throws InvalidKeySpecException {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
IntentTile.java 62 public static QSTile<?> create(Host host, String spec) {
63 if (spec == null || !spec.startsWith(PREFIX) || !spec.endsWith(")")) {
64 throw new IllegalArgumentException("Bad intent tile spec: " + spec);
66 final String action = spec.substring(PREFIX.length(), spec.length() - 1);
68 throw new IllegalArgumentException("Empty intent tile spec action");
  /frameworks/support/v8/renderscript/rs_support/
Android.mk 28 spec.l \
56 $(GEN) : PRIVATE_CUSTOM_TOOL = cat $(PRIVATE_PATH)/rs.spec $(PRIVATE_PATH)/rs_compat.spec | $(RSG_GENERATOR_SUPPORT) $< $@
57 $(GEN) : $(RSG_GENERATOR_SUPPORT) $(LOCAL_PATH)/rs.spec $(LOCAL_PATH)/rs_compat.spec
73 $(GEN) : PRIVATE_CUSTOM_TOOL = cat $(PRIVATE_PATH)/rs.spec $(PRIVATE_PATH)/rs_compat.spec | $(RSG_GENERATOR_SUPPORT) $< $@
74 $(GEN) : $(RSG_GENERATOR_SUPPORT) $(LOCAL_PATH)/rs.spec $(LOCAL_PATH)/rs_compat.spec
  /packages/apps/DevCamera/res/drawable/
circle_background.xml 13 <solid android:color="#665555FF" /> <!-- spec is 26000000 -->
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Header.java 51 final DecoderChainSpec<DictionaryHeader> spec = local
54 if (null == spec) {
59 final DictionaryHeader header = spec.mResult;
64 System.out.println("Packaging : " + spec.describeChain());
  /prebuilts/go/darwin-x86/src/go/ast/
import.go 53 func importPath(s Spec) string {
61 func importName(s Spec) string {
69 func importComment(s Spec) string {
78 func collapse(prev, next Spec) bool {
90 func sortSpecs(fset *token.FileSet, f *File, specs []Spec) []Spec {
123 // Assign each comment to the import spec preceding it.
137 // Reassign each comment to abut the end of its spec.
174 type byImportSpec []Spec // slice of *ImportSpec
  /prebuilts/go/linux-x86/src/go/ast/
import.go 53 func importPath(s Spec) string {
61 func importName(s Spec) string {
69 func importComment(s Spec) string {
78 func collapse(prev, next Spec) bool {
90 func sortSpecs(fset *token.FileSet, f *File, specs []Spec) []Spec {
123 // Assign each comment to the import spec preceding it.
137 // Reassign each comment to abut the end of its spec.
174 type byImportSpec []Spec // slice of *ImportSpec
  /system/bt/test/
run_unit_tests.sh 84 for spec in "${tests[@]}"
86 name="${spec%%.*}"
91 if [ "${name}" != "${spec}" ]; then
92 filter="${spec#*.}"
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyFactoryTest.java 39 import java.security.spec.ECPrivateKeySpec;
40 import java.security.spec.ECPublicKeySpec;
41 import java.security.spec.InvalidKeySpecException;
42 import java.security.spec.KeySpec;
43 import java.security.spec.PKCS8EncodedKeySpec;
44 import java.security.spec.RSAPrivateKeySpec;
45 import java.security.spec.RSAPublicKeySpec;
46 import java.security.spec.X509EncodedKeySpec;
58 import javax.crypto.spec.SecretKeySpec;
240 ECPublicKeySpec spec local
247 RSAPublicKeySpec spec = local
349 PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(pkcs8EncodedForm); local
377 X509EncodedKeySpec spec = new X509EncodedKeySpec(x509EncodedForm); local
405 KeySpec spec = anotherKeyFactory.getKeySpec(key, keySpecClass); local
434 KeySpec spec = anotherKeyFactory.getKeySpec(key, keySpecClass); local
    [all...]

Completed in 5066 milliseconds

<<11121314151617181920>>