Home
last modified time | relevance | path

Searched refs:getId (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DBaseAgreementSpi.java56 keySizes.put(NISTObjectIdentifiers.id_aes128_ECB.getId(), i128); in NISTObjectIdentifiers.id_aes128_ECB.getId()
57 keySizes.put(NISTObjectIdentifiers.id_aes192_ECB.getId(), i192); in NISTObjectIdentifiers.id_aes192_ECB.getId()
58 keySizes.put(NISTObjectIdentifiers.id_aes256_ECB.getId(), i256); in NISTObjectIdentifiers.id_aes256_ECB.getId()
59 keySizes.put(NISTObjectIdentifiers.id_aes128_CBC.getId(), i128); in NISTObjectIdentifiers.id_aes128_CBC.getId()
60 keySizes.put(NISTObjectIdentifiers.id_aes192_CBC.getId(), i192); in NISTObjectIdentifiers.id_aes192_CBC.getId()
61 keySizes.put(NISTObjectIdentifiers.id_aes256_CBC.getId(), i256); in NISTObjectIdentifiers.id_aes256_CBC.getId()
62 keySizes.put(NISTObjectIdentifiers.id_aes128_CFB.getId(), i128); in NISTObjectIdentifiers.id_aes128_CFB.getId()
63 keySizes.put(NISTObjectIdentifiers.id_aes192_CFB.getId(), i192); in NISTObjectIdentifiers.id_aes192_CFB.getId()
64 keySizes.put(NISTObjectIdentifiers.id_aes256_CFB.getId(), i256); in NISTObjectIdentifiers.id_aes256_CFB.getId()
65 keySizes.put(NISTObjectIdentifiers.id_aes128_OFB.getId(), i128); in NISTObjectIdentifiers.id_aes128_OFB.getId()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DEngineKey.java73 …} else if (transformation != null && !transformation.getId().equals(engineKey.transformation.getId in equals()
77 } else if (decoder != null && !decoder.getId().equals(engineKey.decoder.getId())) { in equals()
81 … } else if (cacheDecoder != null && !cacheDecoder.getId().equals(engineKey.cacheDecoder.getId())) { in equals()
85 } else if (encoder != null && !encoder.getId().equals(engineKey.encoder.getId())) { in equals()
89 } else if (transcoder != null && !transcoder.getId().equals(engineKey.transcoder.getId())) { in equals()
93 …} else if (sourceEncoder != null && !sourceEncoder.getId().equals(engineKey.sourceEncoder.getId())… in equals()
106 … hashCode = 31 * hashCode + (cacheDecoder != null ? cacheDecoder .getId().hashCode() : 0); in hashCode()
107 … hashCode = 31 * hashCode + (decoder != null ? decoder .getId().hashCode() : 0); in hashCode()
108 … hashCode = 31 * hashCode + (transformation != null ? transformation.getId().hashCode() : 0); in hashCode()
109 … hashCode = 31 * hashCode + (encoder != null ? encoder .getId().hashCode() : 0); in hashCode()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DDigestFactory.java40 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()
86 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5); in PKCSObjectIdentifiers.md5.getId()
90 oids.put(OIWObjectIdentifiers.idSHA1.getId(), OIWObjectIdentifiers.idSHA1); in OIWObjectIdentifiers.idSHA1.getId()
94 oids.put(NISTObjectIdentifiers.id_sha224.getId(), NISTObjectIdentifiers.id_sha224); in NISTObjectIdentifiers.id_sha224.getId()
98 oids.put(NISTObjectIdentifiers.id_sha256.getId(), NISTObjectIdentifiers.id_sha256); in NISTObjectIdentifiers.id_sha256.getId()
[all …]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DCMSSignedGenerator.java36 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 …]
DCMSSignedHelper.java47 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/guice/extensions/grapher/test/com/google/inject/grapher/
DAbstractInjectorGrapherTest.java135 new BindingEdge(iaNode.getId(), aNode.getId(), BindingEdge.Type.NORMAL), in testLinkedAndInstanceBindings()
136 new BindingEdge(iaAnnNode.getId(), aNode.getId(), BindingEdge.Type.NORMAL), in testLinkedAndInstanceBindings()
137 new BindingEdge(stringNode.getId(), stringInstanceNode.getId(), BindingEdge.Type.NORMAL), in testLinkedAndInstanceBindings()
138 new DependencyEdge(aNode.getId(), stringNode.getId(), in testLinkedAndInstanceBindings()
160 new BindingEdge(stringNode.getId(), stringInstanceNode.getId(), BindingEdge.Type.NORMAL), in testProviderBindings()
161 new BindingEdge(iaNode.getId(), a2ProviderNode.getId(), BindingEdge.Type.PROVIDER), in testProviderBindings()
162 new DependencyEdge(a2Node.getId(), stringNode.getId(), in testProviderBindings()
164 new DependencyEdge(a2ProviderNode.getId(), a2Node.getId(), null)); in testProviderBindings()
180 new BindingEdge(stringNode.getId(), stringInstanceNode.getId(), BindingEdge.Type.NORMAL)); in testGraphWithGivenRoot()
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVModule.cpp80 SPIRVId getId(SPIRVId Id = SPIRVID_INVALID, unsigned Increment = 1);
381 auto L = add(new SPIRVLine(E, FileName->getId(), Line, Column)); in addLine()
412 auto G = new SPIRVDecorationGroup(this, getId()); in optimizeDecorates()
415 const_cast<SPIRVDecorateGeneric*>(D)->setTargetId(G->getId()); in optimizeDecorates()
439 return addConstant(new SPIRVConstantSampler(this, TheType, getId(), AddrMode, in addSamplerConstant()
446 return addConstant(new SPIRVConstantPipeStorage(this, TheType, getId(), in addPipeStorageConstant()
476 auto V = new SPIRVConstant(this, Ty, getId(), static_cast<uint64_t>(Literal)); in getLiteralAsConstant()
518 SPIRVId Id = Entry->getId(); in addEntry()
519 assert(Entry->getId() != SPIRVID_INVALID && "Invalid id"); in addEntry()
569 SPIRVModuleImpl::getId(SPIRVId Id, unsigned increment) { in getId() function in SPIRV::SPIRVModuleImpl
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructorExampleTest.java54 assertEquals("123", obj.getId()); in test3()
65 assertEquals("444", container.getId()); in test4()
76 assertEquals("ID555", container.getId()); in test5()
87 assertEquals("ID6", container.getId()); in test6()
98 assertEquals("id7", container.getId()); in test7()
111 assertTrue(c.getId().matches("id\\d")); in test9()
124 assertTrue(c.toString(), c.getId().matches("id\\d+")); in test10()
137 assertEquals("id11", box.getId()); in test11withoutPackageNames()
140 assertEquals("id003", top.getId()); in test11withoutPackageNames()
144 assertEquals("id004", bottom.getId()); in test11withoutPackageNames()
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
DMergeJavaBeanTest.java39 assertEquals("id123", data.getId()); in testNoMerge()
53 assertEquals("id123", ((Data) list.get(0)).getId()); in testMergeWithTags()
58 assertEquals("id456", ((Data) list.get(1)).getId()); in testMergeWithTags()
63 assertEquals("id789", ((Data) list.get(2)).getId()); in testMergeWithTags()
68 assertEquals("id123", ((DataMore) list.get(3)).getId()); in testMergeWithTags()
80 assertEquals("id789", ((DataMore) list.get(5)).getId()); in testMergeWithTags()
105 assertEquals("id123", first.getId()); in testMergeBeanToMap()
121 assertEquals("id123", first.getId()); in testMergeAndDeviate()
148 assertEquals("id123", list.get(0).getId()); in testMergeAndDeviateOverride()
152 assertEquals(null, list.get(1).getId()); in testMergeAndDeviateOverride()
[all …]
/external/testng/src/test/java/test/testng56/
DParallelTest.java14 System.out.println(Thread.currentThread().getId() + ":setup"); in setup()
19 System.out.println(Thread.currentThread().getId() + ":teardown"); in teardown()
24 System.out.println(Thread.currentThread().getId() + ":test1"); in test1()
29 System.out.println(Thread.currentThread().getId() + ":test2"); in test2()
34 System.out.println(Thread.currentThread().getId() + ":test3"); in test3()
39 System.out.println(Thread.currentThread().getId() + ":test4"); in test4()
44 System.out.println(Thread.currentThread().getId() + ":test5"); in test5()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptManager.java96 public int getId() { in getId() method in ScriptManager.MenuId
206 menu.add(Menu.NONE, MenuId.RENAME.getId(), Menu.NONE, "Rename"); in onCreateContextMenu()
207 menu.add(Menu.NONE, MenuId.DELETE.getId(), Menu.NONE, "Delete"); in onCreateContextMenu()
221 if (itemId == MenuId.DELETE.getId()) { in onContextItemSelected()
224 } else if (itemId == MenuId.RENAME.getId()) { in onContextItemSelected()
270 menu.add(Menu.NONE, MenuId.SEARCH.getId(), Menu.NONE, "Search").setIcon( in onPrepareOptionsMenu()
272 menu.add(Menu.NONE, MenuId.PREFERENCES.getId(), Menu.NONE, "Preferences").setIcon( in onPrepareOptionsMenu()
274 menu.add(Menu.NONE, MenuId.REFRESH.getId(), Menu.NONE, "Refresh").setIcon( in onPrepareOptionsMenu()
283 subMenu.add(Menu.NONE, MenuId.INTERPRETER_MANAGER.getId(), Menu.NONE, "Interpreters"); in buildSwitchActivityMenu()
284 subMenu.add(Menu.NONE, MenuId.TRIGGER_MANAGER.getId(), Menu.NONE, "Triggers"); in buildSwitchActivityMenu()
[all …]
DLogcatViewer.java54 public int getId() { in getId() method in LogcatViewer.MenuId
110 menu.add(Menu.NONE, MenuId.PREFERENCES.getId(), Menu.NONE, "Preferences").setIcon( in onCreateOptionsMenu()
112 menu.add(Menu.NONE, MenuId.JUMP_TO_BOTTOM.getId(), Menu.NONE, "Jump to Bottom").setIcon( in onCreateOptionsMenu()
114 menu.add(Menu.NONE, MenuId.SHARE.getId(), Menu.NONE, "Share").setIcon( in onCreateOptionsMenu()
116 menu.add(Menu.NONE, MenuId.COPY.getId(), Menu.NONE, "Copy").setIcon( in onCreateOptionsMenu()
132 if (itemId == MenuId.JUMP_TO_BOTTOM.getId()) { in onOptionsItemSelected()
134 } else if (itemId == MenuId.PREFERENCES.getId()) { in onOptionsItemSelected()
136 } else if (itemId == MenuId.SHARE.getId()) { in onOptionsItemSelected()
142 } else if (itemId == MenuId.COPY.getId()) { in onOptionsItemSelected()
DApiBrowser.java70 public int getId() { in getId() method in ApiBrowser.MenuId
77 public int getId() { in getId() method in ApiBrowser.ContextMenuId
158 menu.add(Menu.NONE, MenuId.EXPAND_ALL.getId(), Menu.NONE, "Expand All").setIcon( in onPrepareOptionsMenu()
160 menu.add(Menu.NONE, MenuId.COLLAPSE_ALL.getId(), Menu.NONE, "Collapse All").setIcon( in onPrepareOptionsMenu()
162 menu.add(Menu.NONE, MenuId.SEARCH.getId(), Menu.NONE, "Search").setIcon( in onPrepareOptionsMenu()
171 if (itemId == MenuId.EXPAND_ALL.getId()) { in onOptionsItemSelected()
175 } else if (itemId == MenuId.COLLAPSE_ALL.getId()) { in onOptionsItemSelected()
177 } else if (itemId == MenuId.SEARCH.getId()) { in onOptionsItemSelected()
200 menu.add(Menu.NONE, ContextMenuId.INSERT_TEXT.getId(), Menu.NONE, "Insert"); in onCreateContextMenu()
201 menu.add(Menu.NONE, ContextMenuId.PROMPT_PARAMETERS.getId(), Menu.NONE, "Prompt"); in onCreateContextMenu()
[all …]
DTriggerManager.java62 public int getId() { in getId() method in TriggerManager.ContextMenuId
69 public int getId() { in getId() method in TriggerManager.MenuId
90 menu.add(Menu.NONE, MenuId.ADD.getId(), Menu.NONE, "Add").setIcon( in onCreateOptionsMenu()
92 menu.add(Menu.NONE, MenuId.PREFERENCES.getId(), Menu.NONE, "Preferences").setIcon( in onCreateOptionsMenu()
100 if (itemId == MenuId.PREFERENCES.getId()) { in onOptionsItemSelected()
112 menu.add(Menu.NONE, ContextMenuId.REMOVE.getId(), Menu.NONE, "Remove"); in onCreateContextMenu()
131 if (item.getItemId() == ContextMenuId.REMOVE.getId()) { in onContextItemSelected()
187 if (requestCode == MenuId.ADD.getId()) { in onActivityResult()
/external/jsilver/src/com/google/streamhtmlparser/impl/
DParserStateTable.java106 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/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DBatchRunConfiguration.java44 public String getId() { in getId() method in BatchRunConfiguration
84 return getId().equals(((BatchRunConfiguration)other).getId()); in equals()
90 return getId().hashCode(); in hashCode()
/external/testng/src/test/java/test/thread/
DSequentialSample2Test.java9 addId("SequentialSample2Test.f1()", Thread.currentThread().getId()); in f1()
13 addId("SequentialSample2Test.f2()", Thread.currentThread().getId()); in f2()
17 addId("SequentialSample2Test.f3()", Thread.currentThread().getId()); in f3()
DSequentialSample3Test.java9 addId("SequentialSample3Test.f1()", Thread.currentThread().getId()); in f1()
13 addId("SequentialSample3Test.f2()", Thread.currentThread().getId()); in f2()
17 addId("SequentialSample3Test.f3()", Thread.currentThread().getId()); in f3()
DSequentialSampleTest.java9 addId("SequentialSampleTest.f1()", Thread.currentThread().getId()); in f1()
13 addId("SequentialSampleTest.f2()", Thread.currentThread().getId()); in f2()
17 addId("SequentialSampleTest.f3()", Thread.currentThread().getId()); in f3()
DSingleThreadedSample2Test.java10 addId("SingleThreadedSample2Test.f1()", Thread.currentThread().getId()); in f1()
15 addId("SingleThreadedSample2Test.f2()", Thread.currentThread().getId()); in f2()
20 addId("SingleThreadedSample2Test.f3()", Thread.currentThread().getId()); in f3()
DSingleThreadedSample3Test.java10 addId("SingleThreadedSample3Test.f1()", Thread.currentThread().getId()); in f1()
15 addId("SingleThreadedSample3Test.f2()", Thread.currentThread().getId()); in f2()
20 addId("SingleThreadedSample3Test.f3()", Thread.currentThread().getId()); in f3()
DSingleThreadedSampleTest.java10 addId("SingleThreadedSampleTest.f1()", Thread.currentThread().getId()); in f1()
15 addId("SingleThreadedSampleTest.f2()", Thread.currentThread().getId()); in f2()
20 addId("SingleThreadedSampleTest.f3()", Thread.currentThread().getId()); in f3()
/external/bouncycastle/patches/
Dbcpkix.patch231 public static final String DIGEST_SHA384 = NISTObjectIdentifiers.id_sha384.getId();
232 public static final String DIGEST_SHA512 = NISTObjectIdentifiers.id_sha512.getId();
233 public static final String DIGEST_MD5 = PKCSObjectIdentifiers.md5.getId();
234 - public static final String DIGEST_GOST3411 = CryptoProObjectIdentifiers.gostR3411.getId();
235 - public static final String DIGEST_RIPEMD128 = TeleTrusTObjectIdentifiers.ripemd128.getId();
236 - public static final String DIGEST_RIPEMD160 = TeleTrusTObjectIdentifiers.ripemd160.getId();
237 - public static final String DIGEST_RIPEMD256 = TeleTrusTObjectIdentifiers.ripemd256.getId();
239 + // public static final String DIGEST_GOST3411 = CryptoProObjectIdentifiers.gostR3411.getId();
240 + // public static final String DIGEST_RIPEMD128 = TeleTrusTObjectIdentifiers.ripemd128.getId();
241 + // public static final String DIGEST_RIPEMD160 = TeleTrusTObjectIdentifiers.ripemd160.getId();
[all …]
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DSettingsActivity.java322 switch (parent.getId()) { in onItemSelected()
365 if (buttonView.getId() == mWavCaptureToggleButton.getId()){ in onCheckedChanged()
367 } else if (buttonView.getId() == mSystraceToggleButton.getId()) { in onCheckedChanged()
369 } else if (buttonView.getId() == mBugreportToggleButton.getId()) { in onCheckedChanged()
371 } else if (buttonView.getId() == mSoundLevelCalibrationToggleButton.getId()) { in onCheckedChanged()
396 if (view.getId() == R.id.buttonSystraceHelp || view.getId() == R.id.buttonBugreportHelp) { in onButtonHelp()
398 } else if (view.getId() == R.id.buttonCalibrateSoundLevelHelp) { in onButtonHelp()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DCertPathValidatorUtilities.java86 protected static final String CERTIFICATE_POLICIES = Extension.certificatePolicies.getId();
87 protected static final String BASIC_CONSTRAINTS = Extension.basicConstraints.getId();
88 protected static final String POLICY_MAPPINGS = Extension.policyMappings.getId();
89 … protected static final String SUBJECT_ALTERNATIVE_NAME = Extension.subjectAlternativeName.getId();
90 protected static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId();
91 protected static final String KEY_USAGE = Extension.keyUsage.getId();
92 protected static final String INHIBIT_ANY_POLICY = Extension.inhibitAnyPolicy.getId();
93 …tected static final String ISSUING_DISTRIBUTION_POINT = Extension.issuingDistributionPoint.getId();
94 protected static final String DELTA_CRL_INDICATOR = Extension.deltaCRLIndicator.getId();
95 protected static final String POLICY_CONSTRAINTS = Extension.policyConstraints.getId();
[all …]

12345678910>>...15