/cts/tools/signature-tools/src/signature/compare/model/ |
IPrimitiveTypeDelta.java | 17 package signature.compare.model; 19 import signature.model.IPrimitiveType;
|
ITypeDefinitionDelta.java | 17 package signature.compare.model; 19 import signature.model.ITypeDefinition;
|
ITypeReferenceDelta.java | 17 package signature.compare.model; 19 import signature.model.ITypeReference;
|
/cts/tools/signature-tools/src/signature/compare/model/impl/ |
SigValueDelta.java | 17 package signature.compare.model.impl; 19 import signature.compare.model.IValueDelta;
|
/cts/tools/signature-tools/src/signature/converter/dex/ |
IClassInitializer.java | 17 package signature.converter.dex; 19 import signature.model.IClassDefinition;
|
/cts/tools/signature-tools/src/signature/io/ |
IApiDeltaExternalizer.java | 17 package signature.io; 21 import signature.compare.model.IApiDelta;
|
/cts/tools/signature-tools/src/signature/model/ |
IMethod.java | 17 package signature.model; 19 import signature.model.impl.SigPrimitiveType;
|
/cts/tools/signature-tools/src/signature/model/impl/ |
SigAnnotationField.java | 17 package signature.model.impl; 21 import signature.model.IAnnotationField;
|
SigEnumConstant.java | 17 package signature.model.impl; 19 import signature.model.IEnumConstant;
|
SigField.java | 17 package signature.model.impl; 19 import signature.model.IField; 20 import signature.model.ITypeReference; 21 import signature.model.Modifier;
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/ |
X509CRLImplTest.java | 30 import java.security.Signature; 79 private static AlgorithmIdentifier signature; field in class:X509CRLImplTest 82 signature = new AlgorithmIdentifier(algOID, algParams); 174 // keys are using to make signature and to verify it 202 new TBSCertList(2, signature, issuer, thisUpdate, 208 Signature sig= Signature.getInstance("DSA"); 228 // make incorrect signature value: 236 new CertificateList(tbscertlist, signature, signatureValue); 347 new TBSCertificate(2, certSerialNumber1, signature, [all...] |
/external/chromium_org/components/autofill/core/common/ |
form_data_predictions.h | 20 // The form signature for communication with the crowdsourcing server. 21 std::string signature; member in struct:autofill::FormDataPredictions
|
/external/chromium_org/crypto/ |
signature_verifier_openssl.cc | 47 const uint8* signature, 70 return CommonInit(digest, signature, signature_len, public_key_info, 77 const uint8* signature, 86 if (!CommonInit(digest, signature, signature_len, public_key_info, 117 // rv is -1 if a DER-encoded ECDSA signature cannot be decoded correctly. 124 const uint8* signature, 134 signature_.assign(signature, signature + signature_len);
|
/external/chromium_org/net/cert/ |
ct_verify_result.h | 25 // SCTs from known logs where the signature verified correctly. 27 // SCTs from known logs where the signature failed to verify.
|
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/ |
atan.ir | 2 (signature float 17 (signature vec2 32 (signature vec3 47 (signature vec4 62 (signature float 92 (signature vec2 104 (signature vec3 118 (signature vec4
|
/external/clang/test/CodeGen/ |
pointer-signext.c | 19 unsigned long long Signature; 31 return (int) Entry->Signature;
|
/external/mesa3d/src/glsl/builtins/ir/ |
atan.ir | 2 (signature float 17 (signature vec2 32 (signature vec3 47 (signature vec4 62 (signature float 92 (signature vec2 104 (signature vec3 118 (signature vec4
|
/external/smack/src/org/xbill/DNS/ |
DNSSEC.java | 178 * @param previous If this is a response, the signature from the query. 233 "does not match signature " + 241 * A DNSSEC verification failed because the signature has expired. 247 super("signature expired"); 253 * @return When the signature expired 270 * A DNSSEC verification failed because the signature has not yet become valid. 276 super("signature is not yet valid"); 282 * @return When the signature will become valid 299 * A DNSSEC verification failed because the cryptographic signature 304 super("signature verification failed") [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
ExposureFilter.java | 27 import androidx.media.filterfw.Signature; 43 public Signature getSignature() { 46 return new Signature().addInputPort("image", Signature.PORT_REQUIRED, imageIn) 47 .addOutputPort("overExposedNum", Signature.PORT_OPTIONAL, floatT) 48 .addOutputPort("overExposureRating", Signature.PORT_REQUIRED, floatT) 49 .addOutputPort("underExposedNum", Signature.PORT_OPTIONAL, floatT) 50 .addOutputPort("underExposureRating", Signature.PORT_REQUIRED, floatT)
|
/libcore/dalvik/src/main/java/dalvik/annotation/ |
Signature.java | 25 * A "system annotation" used to provide the Signature attribute. 29 @interface Signature {}
|
/libcore/luni/src/main/java/java/security/ |
SignatureSpi.java | 25 * definition for {@link Signature}. 27 * @see Signature 37 * Initializes this {@code SignatureSpi} instance for signature 38 * verification, using the public key of the identity whose signature is 51 * private key of the identity whose signature is going to be generated. 63 * private key of the identity whose signature is going to be generated and 148 * Generates and returns the signature of all updated data. 151 * initialization for signing and thus can be used for another signature 154 * @return the signature of all updated data. 162 * Generates and stores the signature of all updated data in the provide [all...] |
/cts/tools/signature-tools/src/signature/io/html/ |
ApiOverviewPage.java | 17 package signature.io.html; 21 import signature.compare.model.IApiDelta; 22 import signature.compare.model.IPackageDelta; 23 import signature.compare.model.impl.SigDelta;
|
PackageOverviewPage.java | 17 package signature.io.html; 26 import signature.compare.model.IClassDefinitionDelta; 27 import signature.compare.model.IPackageDelta; 28 import signature.compare.model.impl.SigDelta;
|
/cts/tools/signature-tools/test/signature/comparator/ |
AnnotationCompareTest.java | 17 package signature.comparator; 24 import signature.comparator.util.AbstractComparatorTest; 25 import signature.converter.util.CompilationUnit; 26 import signature.model.IApi;
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
SignedObjectTest.java | 21 import java.security.Signature; 38 Signature sig = Signature.getInstance("SHA1withDSA"); 56 assertNotNull("signature is null", so.getSignature());
|