/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
D | EngineKey.java | 68 } else if (!transformation.getId().equals(engineKey.transformation.getId())) { in equals() 70 } else if (!decoder.getId().equals(engineKey.decoder.getId())) { in equals() 72 } else if (!cacheDecoder.getId().equals(engineKey.cacheDecoder.getId())) { in equals() 74 } else if (!encoder.getId().equals(engineKey.encoder.getId())) { in equals() 76 } else if (!transcoder.getId().equals(engineKey.transcoder.getId())) { in equals() 78 } else if (!sourceEncoder.getId().equals(engineKey.sourceEncoder.getId())) { in equals() 91 hashCode = 31 * hashCode + cacheDecoder.getId().hashCode(); in hashCode() 92 hashCode = 31 * hashCode + decoder.getId().hashCode(); in hashCode() 93 hashCode = 31 * hashCode + transformation.getId().hashCode(); in hashCode() 94 hashCode = 31 * hashCode + encoder.getId().hashCode(); in hashCode() [all …]
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
D | CMSSignedGenerator.java | 36 public static final String DATA = CMSObjectIdentifiers.data.getId(); 38 public static final String DIGEST_SHA1 = OIWObjectIdentifiers.idSHA1.getId(); 39 public static final String DIGEST_SHA224 = NISTObjectIdentifiers.id_sha224.getId(); 40 public static final String DIGEST_SHA256 = NISTObjectIdentifiers.id_sha256.getId(); 41 public static final String DIGEST_SHA384 = NISTObjectIdentifiers.id_sha384.getId(); 42 public static final String DIGEST_SHA512 = NISTObjectIdentifiers.id_sha512.getId(); 43 public static final String DIGEST_MD5 = PKCSObjectIdentifiers.md5.getId(); 51 public static final String ENCRYPTION_RSA = PKCSObjectIdentifiers.rsaEncryption.getId(); 52 public static final String ENCRYPTION_DSA = X9ObjectIdentifiers.id_dsa_with_sha1.getId(); 53 public static final String ENCRYPTION_ECDSA = X9ObjectIdentifiers.ecdsa_with_SHA1.getId(); [all …]
|
D | CMSSignedHelper.java | 47 digestAlgs.put(alias.getId(), digest); in addEntries() 48 encryptionAlgs.put(alias.getId(), encryption); in addEntries() 90 encryptionAlgs.put(X9ObjectIdentifiers.id_dsa.getId(), "DSA"); in X9ObjectIdentifiers.id_dsa.getId() 91 encryptionAlgs.put(PKCSObjectIdentifiers.rsaEncryption.getId(), "RSA"); in PKCSObjectIdentifiers.rsaEncryption.getId() 93 encryptionAlgs.put(X509ObjectIdentifiers.id_ea_rsa.getId(), "RSA"); in X509ObjectIdentifiers.id_ea_rsa.getId() 106 digestAlgs.put(PKCSObjectIdentifiers.md5.getId(), "MD5"); in PKCSObjectIdentifiers.md5.getId() 107 digestAlgs.put(OIWObjectIdentifiers.idSHA1.getId(), "SHA1"); in OIWObjectIdentifiers.idSHA1.getId() 108 digestAlgs.put(NISTObjectIdentifiers.id_sha224.getId(), "SHA224"); in NISTObjectIdentifiers.id_sha224.getId() 109 digestAlgs.put(NISTObjectIdentifiers.id_sha256.getId(), "SHA256"); in NISTObjectIdentifiers.id_sha256.getId() 110 digestAlgs.put(NISTObjectIdentifiers.id_sha384.getId(), "SHA384"); in NISTObjectIdentifiers.id_sha384.getId() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/ |
D | DigestFactory.java | 40 md5.add(PKCSObjectIdentifiers.md5.getId()); in PKCSObjectIdentifiers.md5.getId() 44 sha1.add(OIWObjectIdentifiers.idSHA1.getId()); in OIWObjectIdentifiers.idSHA1.getId() 48 sha224.add(NISTObjectIdentifiers.id_sha224.getId()); in NISTObjectIdentifiers.id_sha224.getId() 52 sha256.add(NISTObjectIdentifiers.id_sha256.getId()); in NISTObjectIdentifiers.id_sha256.getId() 56 sha384.add(NISTObjectIdentifiers.id_sha384.getId()); in NISTObjectIdentifiers.id_sha384.getId() 60 sha512.add(NISTObjectIdentifiers.id_sha512.getId()); in NISTObjectIdentifiers.id_sha512.getId() 63 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5); in PKCSObjectIdentifiers.md5.getId() 67 oids.put(OIWObjectIdentifiers.idSHA1.getId(), OIWObjectIdentifiers.idSHA1); in OIWObjectIdentifiers.idSHA1.getId() 71 oids.put(NISTObjectIdentifiers.id_sha224.getId(), NISTObjectIdentifiers.id_sha224); in NISTObjectIdentifiers.id_sha224.getId() 75 oids.put(NISTObjectIdentifiers.id_sha256.getId(), NISTObjectIdentifiers.id_sha256); in NISTObjectIdentifiers.id_sha256.getId() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
D | AES.java | 573 …m("Alg.Alias.Cipher." + BCObjectIdentifiers.bc_pbe_sha1_pkcs12_aes128_cbc.getId(), "PBEWITHSHAAND1… in configure() 574 …m("Alg.Alias.Cipher." + BCObjectIdentifiers.bc_pbe_sha1_pkcs12_aes192_cbc.getId(), "PBEWITHSHAAND1… in configure() 575 …m("Alg.Alias.Cipher." + BCObjectIdentifiers.bc_pbe_sha1_pkcs12_aes256_cbc.getId(), "PBEWITHSHAAND2… in configure() 576 …"Alg.Alias.Cipher." + BCObjectIdentifiers.bc_pbe_sha256_pkcs12_aes128_cbc.getId(), "PBEWITHSHA256A… in configure() 577 …"Alg.Alias.Cipher." + BCObjectIdentifiers.bc_pbe_sha256_pkcs12_aes192_cbc.getId(), "PBEWITHSHA256A… in configure() 578 …"Alg.Alias.Cipher." + BCObjectIdentifiers.bc_pbe_sha256_pkcs12_aes256_cbc.getId(), "PBEWITHSHA256A… in configure() 620 …as.SecretKeyFactory." + BCObjectIdentifiers.bc_pbe_sha1_pkcs12_aes128_cbc.getId(), "PBEWITHSHAAND1… in configure() 621 …as.SecretKeyFactory." + BCObjectIdentifiers.bc_pbe_sha1_pkcs12_aes192_cbc.getId(), "PBEWITHSHAAND1… in configure() 622 …as.SecretKeyFactory." + BCObjectIdentifiers.bc_pbe_sha1_pkcs12_aes256_cbc.getId(), "PBEWITHSHAAND2… in configure() 623 ….SecretKeyFactory." + BCObjectIdentifiers.bc_pbe_sha256_pkcs12_aes128_cbc.getId(), "PBEWITHSHA256A… in configure() [all …]
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
D | LeafNode.java | 55 items.setNode(getId()); in discoverItems() 69 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId())); in getItems() 90 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId)); in getItems() 119 …bsubPacket(Type.GET, new ItemsExtension(ItemsExtension.ItemsElementType.items, getId(), itemList)); in getItems() 138 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), maxItems)); in getItems() 160 …PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId, maxItem… in getItems() 181 …PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId())… in publish() 223 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items)); in publish() 245 …PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId())… in send() 297 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items)); in send() [all …]
|
D | Node.java | 89 public String getId() in getId() method in Node 102 …bsubPacket(Type.GET, new NodeExtension(PubSubElementType.CONFIGURE_OWNER, getId()), PubSubNamespac… in getNodeConfiguration() 114 …PubSub packet = createPubsubPacket(Type.SET, new FormNode(FormNodeType.CONFIGURE_OWNER, getId(), s… in sendConfigurationForm() 130 info.setNode(getId()); in discoverInfo() 144 … = (PubSub)sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.SUBSCRIPTIONS, getId())); in getSubscriptions() 167 PubSub reply = (PubSub)sendPubsubPacket(Type.SET, new SubscribeExtension(jid, getId())); in subscribe() 190 PubSub request = createPubsubPacket(Type.SET, new SubscribeExtension(jid, getId())); in subscribe() 222 sendPubsubPacket(Type.SET, new UnsubscribeExtension(jid, getId(), subscriptionId)); in unsubscribe() 253 …PubSub packet = (PubSub)sendPubsubPacket(Type.GET, new OptionsExtension(jid, getId(), subscription… in getSubscriptionOptions() 452 items.add(item.getId()); in processPacket() [all …]
|
/external/jsilver/src/com/google/streamhtmlparser/impl/ |
D | ParserStateTable.java | 106 int id = from.getId(); in getNextState() 116 result = defaultStateTable[from.getId()]; in getNextState() 154 int id = from.getId(); in setDefaultDestination() 159 defaultStateTable[from.getId()] = to; in setDefaultDestination() 167 int id = from.getId(); in setDestination() 171 stateTable[from.getId()][chr] = to; in setDestination()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
D | KeyAgreementSpi.java | 67 algorithms.put(NISTObjectIdentifiers.id_aes128_CBC.getId(), i128); in NISTObjectIdentifiers.id_aes128_CBC.getId() 68 algorithms.put(NISTObjectIdentifiers.id_aes192_CBC.getId(), i192); in NISTObjectIdentifiers.id_aes192_CBC.getId() 69 algorithms.put(NISTObjectIdentifiers.id_aes256_CBC.getId(), i256); in NISTObjectIdentifiers.id_aes256_CBC.getId() 70 algorithms.put(NISTObjectIdentifiers.id_aes128_wrap.getId(), i128); in NISTObjectIdentifiers.id_aes128_wrap.getId() 71 algorithms.put(NISTObjectIdentifiers.id_aes192_wrap.getId(), i192); in NISTObjectIdentifiers.id_aes192_wrap.getId() 72 algorithms.put(NISTObjectIdentifiers.id_aes256_wrap.getId(), i256); in NISTObjectIdentifiers.id_aes256_wrap.getId() 73 algorithms.put(PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId(), i192); in PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId()
|
/external/bouncycastle/patches/ |
D | bcpkix.patch | 193 public static final String DIGEST_SHA384 = NISTObjectIdentifiers.id_sha384.getId(); 194 public static final String DIGEST_SHA512 = NISTObjectIdentifiers.id_sha512.getId(); 195 public static final String DIGEST_MD5 = PKCSObjectIdentifiers.md5.getId(); 196 - public static final String DIGEST_GOST3411 = CryptoProObjectIdentifiers.gostR3411.getId(); 197 - public static final String DIGEST_RIPEMD128 = TeleTrusTObjectIdentifiers.ripemd128.getId(); 198 - public static final String DIGEST_RIPEMD160 = TeleTrusTObjectIdentifiers.ripemd160.getId(); 199 - public static final String DIGEST_RIPEMD256 = TeleTrusTObjectIdentifiers.ripemd256.getId(); 201 + // public static final String DIGEST_GOST3411 = CryptoProObjectIdentifiers.gostR3411.getId(); 202 + // public static final String DIGEST_RIPEMD128 = TeleTrusTObjectIdentifiers.ripemd128.getId(); 203 + // public static final String DIGEST_RIPEMD160 = TeleTrusTObjectIdentifiers.ripemd160.getId(); [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | CertPathValidatorUtilities.java | 87 protected static final String CERTIFICATE_POLICIES = Extension.certificatePolicies.getId(); 88 protected static final String BASIC_CONSTRAINTS = Extension.basicConstraints.getId(); 89 protected static final String POLICY_MAPPINGS = Extension.policyMappings.getId(); 90 … protected static final String SUBJECT_ALTERNATIVE_NAME = Extension.subjectAlternativeName.getId(); 91 protected static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId(); 92 protected static final String KEY_USAGE = Extension.keyUsage.getId(); 93 protected static final String INHIBIT_ANY_POLICY = Extension.inhibitAnyPolicy.getId(); 94 …tected static final String ISSUING_DISTRIBUTION_POINT = Extension.issuingDistributionPoint.getId(); 95 protected static final String DELTA_CRL_INDICATOR = Extension.deltaCRLIndicator.getId(); 96 protected static final String POLICY_CONSTRAINTS = Extension.policyConstraints.getId(); [all …]
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
D | ImageVideoWrapperEncoder.java | 30 public String getId() { in getId() method in ImageVideoWrapperEncoder 32 id = streamEncoder.getId() + fileDescriptorEncoder.getId(); in getId()
|
D | ImageVideoModelLoader.java | 90 public String getId() { in getId() method in ImageVideoModelLoader.ImageVideoFetcher 93 return streamFetcher.getId(); in getId() 95 return fileDescriptorFetcher.getId(); in getId()
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
D | LoopInfo.cpp | 101 mId = symbol->getId(); in fillInfo() 158 if (iter->index.getId() == symbol->getId()) in findLoop() 170 if (iter->index.getId() == symbol->getId()) in getIndexInfo()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
D | AlgorithmParametersSpi.java | 122 oaepP.getHashAlgorithm().getAlgorithm().getId(), in engineInit() 123 oaepP.getMaskGenAlgorithm().getAlgorithm().getId(), in engineInit() 124 …gorithmIdentifier.getInstance(oaepP.getMaskGenAlgorithm().getParameters()).getAlgorithm().getId()), in engineInit() 229 pssP.getHashAlgorithm().getAlgorithm().getId(), in engineInit() 230 pssP.getMaskGenAlgorithm().getAlgorithm().getId(), in engineInit() 231 …lgorithmIdentifier.getInstance(pssP.getMaskGenAlgorithm().getParameters()).getAlgorithm().getId()), in engineInit()
|
/external/jmdns/src/javax/jmdns/impl/tasks/ |
D | DNSTask.java | 86 int id = newOut.getId(); in addQuestion() 118 int id = newOut.getId(); in addAnswer() 149 int id = newOut.getId(); in addAnswer() 179 int id = newOut.getId(); in addAuthoritativeAnswer() 211 int id = newOut.getId(); in addAdditionalAnswer()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/ |
D | GifBitmapWrapperResourceEncoder.java | 33 public String getId() { in getId() method in GifBitmapWrapperResourceEncoder 35 id = bitmapEncoder.getId() + gifEncoder.getId(); in getId()
|
D | GifBitmapWrapperResourceDecoder.java | 54 public String getId() { in getId() method in GifBitmapWrapperResourceDecoder 56 id = gifDecoder.getId() + bitmapDecoder.getId(); in getId()
|
/external/deqp/modules/egl/ |
D | teglMultiThreadTests.cpp | 117 int getId (void) const { return m_id; } in getId() function in deqp::egl::TestThread 518 de::Random rnd(deInt32Hash(thread.getId() + 10435)); in runThread() 521 if (thread.getId() == 0) in runThread() 882 if (thread.getId() == 0) in runThread() 916 if (thread.getId() == 0) in runThread() 923 if (thread.getId() == 0) in runThread() 929 if (thread.getId() == 1) in runThread() 940 if (thread.getId() == 0) in runThread() 946 if (thread.getId() == 1) in runThread() 963 de::Random& rnd = (thread.getId() == 0 ? m_rnd0 : m_rnd1); in createDestroyObjects() [all …]
|
/external/glide/library/src/main/java/com/bumptech/glide/load/ |
D | MultiTransformation.java | 55 public String getId() { in getId() method in MultiTransformation 60 sb.append(transformation.getId()); in getId() 64 sb.append(transformation.getId()); in getId()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
D | ErrorTracker.java | 77 platforms.put(aPlatform.getId(), aPlatform); in loadFile() 88 aVector.add(aPlatform.getId()); in loadFile() 182 if (!aValue.getId().equals("JA") && in registerError() 183 !aValue.getId().equals("EW") && in registerError() 184 !aValue.getId().equals("EA")) { in registerError()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
D | DimResultsElement.java | 121 long count = buildResults.getCount(this.dim.getId()); in getPropertyValue() 125 return new Double(buildResults.getValue(this.dim.getId())); in getPropertyValue() 127 return new Double(buildResults.getDeviation(this.dim.getId())); in getPropertyValue() 129 return new Double(buildResults.getError(this.dim.getId())); in getPropertyValue()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | SharedWorkerRepositoryClientImpl.cpp | 106 static WebSharedWorkerRepositoryClient::DocumentID getId(void* document) in getId() function 119 …rkerConnector = adoptPtr(m_client->createSharedWorkerConnector(url, name, getId(document), worker-… in connect() 135 m_client->documentDetached(getId(document)); in documentDetached()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | AlgorithmIdentifier.java | 74 this.objectId = new ASN1ObjectIdentifier(objectId.getId()); in AlgorithmIdentifier() 87 this.objectId = new ASN1ObjectIdentifier(objectId.getId()); in AlgorithmIdentifier() 128 return new ASN1ObjectIdentifier(objectId.getId()); in getAlgorithm()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
D | ASN1ObjectIdentifier.java | 39 String id = getId(), stemId = stem.getId(); in on()
|