Home
last modified time | relevance | path

Searched refs:put (Results 1 – 25 of 1435) sorted by relevance

12345678910>>...58

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DBouncyCastleProvider.java168 put("KeyStore.BKS", "org.bouncycastle.jce.provider.JDKKeyStore"); in setup()
169 put("KeyStore.BouncyCastle", "org.bouncycastle.jce.provider.JDKKeyStore$BouncyCastleStore"); in setup()
170 put("KeyStore.PKCS12", "org.bouncycastle.jce.provider.JDKPKCS12KeyStore$BCPKCS12KeyStore"); in setup()
172 put("Alg.Alias.KeyStore.BCPKCS12", "PKCS12"); in setup()
179 put("Alg.Alias.KeyStore.PKCS12-3DES-40RC2", "PKCS12"); in setup()
190 put("Alg.Alias.KeyStore.UBER", "BouncyCastle"); in setup()
191 put("Alg.Alias.KeyStore.BOUNCYCASTLE", "BouncyCastle"); in setup()
192 put("Alg.Alias.KeyStore.bouncycastle", "BouncyCastle"); in setup()
200put("AlgorithmParameters.PKCS12PBE", "org.bouncycastle.jce.provider.JDKAlgorithmParameters$PKCS12P… in setup()
207 put("Alg.Alias.AlgorithmParameters.PBEWITHSHA1ANDRC2", "PKCS12PBE"); in setup()
[all …]
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_TestProvider.java55 put("MessageDigest.SHA", in registerServices()
57 put("MessageDigest.MD2", in registerServices()
60 put("Alg.Alias.MessageDigest.SHA1", "SHA"); in registerServices()
61 put("Alg.Alias.MessageDigest.SHA-1", "SHA"); in registerServices()
62 put("Alg.Alias.MessageDigest.OID.1.3.14.3.2.26", "SHA"); in registerServices()
63 put("Alg.Alias.MessageDigest.1.3.14.3.2.26", "SHA"); in registerServices()
66 put("AlgorithmParameterGenerator.DSA", in registerServices()
70 put("AlgorithmParameters.DSA", in registerServices()
73 put("Alg.Alias.AlgorithmParameters.1.2.840.10040.4.1", "DSA"); in registerServices()
74 put("Alg.Alias.AlgorithmParameters.1.3.14.3.2.12", "DSA"); in registerServices()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/parser/
DParserFactory.java60 parserTable.put(ReplyToHeader.NAME.toLowerCase(), ReplyToParser.class); in ReplyToHeader.NAME.toLowerCase()
62 parserTable.put(
66 parserTable.put(
70 parserTable.put(
74 parserTable.put("t", ToParser.class);
75 parserTable.put(ToHeader.NAME.toLowerCase(), ToParser.class); in ToHeader.NAME.toLowerCase()
77 parserTable.put(FromHeader.NAME.toLowerCase(), FromParser.class); in FromHeader.NAME.toLowerCase()
78 parserTable.put("f", FromParser.class);
80 parserTable.put(CSeqHeader.NAME.toLowerCase(), CSeqParser.class); in CSeqHeader.NAME.toLowerCase()
82 parserTable.put(ViaHeader.NAME.toLowerCase(), ViaParser.class); in ViaHeader.NAME.toLowerCase()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DRopToDop.java227 MAP.put(Rops.NOP, Dops.NOP); in MAP.put()
228 MAP.put(Rops.MOVE_INT, Dops.MOVE); in MAP.put()
229 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE); in MAP.put()
230 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE); in MAP.put()
231 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE); in MAP.put()
232 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT); in MAP.put()
233 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE); in MAP.put()
234 MAP.put(Rops.MOVE_PARAM_LONG, Dops.MOVE_WIDE); in MAP.put()
235 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE); in MAP.put()
236 MAP.put(Rops.MOVE_PARAM_DOUBLE, Dops.MOVE_WIDE); in MAP.put()
[all …]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
DCountryCodeToRegionCodeMap.java67 countryCodeToRegionCodeMap.put(1, listWithRegionCode); in getCountryCodeToRegionCodeMap()
72 countryCodeToRegionCodeMap.put(7, listWithRegionCode); in getCountryCodeToRegionCodeMap()
76 countryCodeToRegionCodeMap.put(20, listWithRegionCode); in getCountryCodeToRegionCodeMap()
80 countryCodeToRegionCodeMap.put(27, listWithRegionCode); in getCountryCodeToRegionCodeMap()
84 countryCodeToRegionCodeMap.put(30, listWithRegionCode); in getCountryCodeToRegionCodeMap()
88 countryCodeToRegionCodeMap.put(31, listWithRegionCode); in getCountryCodeToRegionCodeMap()
92 countryCodeToRegionCodeMap.put(32, listWithRegionCode); in getCountryCodeToRegionCodeMap()
96 countryCodeToRegionCodeMap.put(33, listWithRegionCode); in getCountryCodeToRegionCodeMap()
100 countryCodeToRegionCodeMap.put(34, listWithRegionCode); in getCountryCodeToRegionCodeMap()
104 countryCodeToRegionCodeMap.put(36, listWithRegionCode); in getCountryCodeToRegionCodeMap()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableTableTest.java31 builder.put((String) data[i], (Integer) data[i + 1], in create()
42 .put('a', 1, "foo") in testBuilder()
45 expectedTable.put('a', 1, "foo"); in testBuilder()
46 expectedTable.put('b', 1, "bar"); in testBuilder()
47 expectedTable.put('a', 2, "baz"); in testBuilder()
49 otherTable.put('b', 1, "bar"); in testBuilder()
50 otherTable.put('a', 2, "baz"); in testBuilder()
60 .put(Tables.immutableCell('a', 1, "foo")) in testBuilder_withImmutableCell()
68 builder.put(Tables.immutableCell((Character) null, 1, "foo")); in testBuilder_withImmutableCellAndNullContents()
74 builder.put(Tables.immutableCell('a', (Integer) null, "foo")); in testBuilder_withImmutableCellAndNullContents()
[all …]
DAbstractMultimapTest.java120 multimap.put("foo", 1); in testSize1()
125 multimap.put("foo", 1); in testSize2Keys()
126 multimap.put("bar", 5); in testSize2Keys()
131 multimap.put("foo", 1); in testSize2Values()
132 multimap.put("foo", 7); in testSize2Values()
137 multimap.put("foo", 1); in testSizeNull()
138 multimap.put("bar", 5); in testSizeNull()
139 multimap.put(nullKey(), nullValue()); in testSizeNull()
140 multimap.put("foo", nullValue()); in testSizeNull()
141 multimap.put(nullKey(), 5); in testSizeNull()
[all …]
DImmutableListMultimapTest.java45 .put(Maps.immutableEntry("one", 1)) in testBuilder_withImmutableEntry()
53 builder.put(Maps.immutableEntry("one", (Integer) null)); in testBuilder_withImmutableEntryAndNullContents()
58 builder.put(Maps.immutableEntry((String) null, 1)); in testBuilder_withImmutableEntryAndNullContents()
82 builder.put(entry); in testBuilder_withMutableEntry()
113 toPut.put("foo", 1); in testBuilderPutAllMultimap()
114 toPut.put("bar", 4); in testBuilderPutAllMultimap()
115 toPut.put("foo", 2); in testBuilderPutAllMultimap()
116 toPut.put("foo", 3); in testBuilderPutAllMultimap()
118 moreToPut.put("foo", 6); in testBuilderPutAllMultimap()
119 moreToPut.put("bar", 5); in testBuilderPutAllMultimap()
[all …]
DAbstractListMultimapTest.java49 multimap.put("foo", 1); in testDuplicates()
50 multimap.put("foo", 3); in testDuplicates()
51 multimap.put("bar", 3); in testDuplicates()
52 multimap.put("foo", 1); in testDuplicates()
65 assertTrue(multimap.put("foo", 1)); in testPutReturn()
66 assertTrue(multimap.put("foo", 1)); in testPutReturn()
67 assertTrue(multimap.put("foo", 3)); in testPutReturn()
68 assertTrue(multimap.put("bar", 5)); in testPutReturn()
74 assertTrue(multimap.put("foo", 1)); in testPutAllReturn_existingElements()
92 multimap.put("foo", 1); in testGetEquals()
[all …]
DAbstractBiMapTest.java67 bimap.put(1, "one"); in testContainsKey()
70 bimap.put(null, null); in testContainsKey()
79 bimap.put(1, "one"); in testContainsValue()
82 bimap.put(null, null); in testContainsValue()
90 biMap.put(1, null); in testEquals()
99 bimap.put(1, "one"); in testGet()
100 bimap.put(0, null); in testGet()
101 bimap.put(null, "nothing"); in testGet()
115 bimap.put(1, "one"); in testInverseSimple()
116 bimap.put(2, "two"); in testInverseSimple()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
DSphere.java210 posBuf.put(kSliceCenter.x + tempVa.x).put( in setGeometryData()
211 kSliceCenter.y + tempVa.y).put( in setGeometryData()
219 normBuf.put(kNormal.x).put(kNormal.y).put( in setGeometryData()
222 normBuf.put(-kNormal.x).put(-kNormal.y).put( in setGeometryData()
227 texBuf.put(fRadialFraction).put( in setGeometryData()
230 texBuf.put(fRadialFraction).put( in setGeometryData()
237 texBuf.put(u).put(v); in setGeometryData()
247 texBuf.put(1.0f).put( in setGeometryData()
250 texBuf.put(1.0f).put( in setGeometryData()
255 texBuf.put(r + 0.5f).put(0.5f); in setGeometryData()
[all …]
DCylinder.java326 nb.put(vNormal.x).put(vNormal.y).put(vNormal.z); in updateGeometry()
328 nb.put(-vNormal.x).put(-vNormal.y).put(-vNormal.z); in updateGeometry()
330 nb.put(0).put(0).put(topBottom * (inverted ? -1 : 1)); in updateGeometry()
335 pb.put(tempNormal.x).put(tempNormal.y).put(tempNormal.z); in updateGeometry()
337 tb.put((inverted ? 1 - radialFraction : radialFraction)) in updateGeometry()
338 .put(axisFractionTexture); in updateGeometry()
344 tb.put((inverted ? 0.0f : 1.0f)) in updateGeometry()
345 .put(axisFractionTexture); in updateGeometry()
349 pb.put(0).put(0).put(-halfHeight); // bottom center in updateGeometry()
350 nb.put(0).put(0).put(-1 * (inverted ? -1 : 1)); in updateGeometry()
[all …]
DDome.java246 vb.put(kSliceCenter.x + tempVa.x).put( in updateGeometry()
247 kSliceCenter.y + tempVa.y).put( in updateGeometry()
254 nb.put(kNormal.x).put(kNormal.y).put(kNormal.z); in updateGeometry()
256 nb.put(-kNormal.x).put(-kNormal.y).put(-kNormal.z); in updateGeometry()
259 tb.put(fRadialFraction).put(fYFraction); in updateGeometry()
263 tb.put(1.0f).put(fYFraction); in updateGeometry()
269 vb.put(center.x).put(center.y + radius).put(center.z); in updateGeometry()
270 nb.put(0).put(insideView ? 1 : -1).put(0); in updateGeometry()
271 tb.put(0.5f).put(1.0f); in updateGeometry()
286 ib.put((short) (bottomPlaneStart + sample)); in updateGeometry()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
DRFC4519Style.java78 DefaultSymbols.put(businessCategory, "businessCategory"); in DefaultSymbols.put()
79 DefaultSymbols.put(c, "c"); in DefaultSymbols.put()
80 DefaultSymbols.put(cn, "cn"); in DefaultSymbols.put()
81 DefaultSymbols.put(dc, "dc"); in DefaultSymbols.put()
82 DefaultSymbols.put(description, "description"); in DefaultSymbols.put()
83 DefaultSymbols.put(destinationIndicator, "destinationIndicator"); in DefaultSymbols.put()
84 DefaultSymbols.put(distinguishedName, "distinguishedName"); in DefaultSymbols.put()
85 DefaultSymbols.put(dnQualifier, "dnQualifier"); in DefaultSymbols.put()
86 DefaultSymbols.put(enhancedSearchGuide, "enhancedSearchGuide"); in DefaultSymbols.put()
87 DefaultSymbols.put(facsimileTelephoneNumber, "facsimileTelephoneNumber"); in DefaultSymbols.put()
[all …]
DBCStyle.java207 DefaultSymbols.put(C, "C"); in DefaultSymbols.put()
208 DefaultSymbols.put(O, "O"); in DefaultSymbols.put()
209 DefaultSymbols.put(T, "T"); in DefaultSymbols.put()
210 DefaultSymbols.put(OU, "OU"); in DefaultSymbols.put()
211 DefaultSymbols.put(CN, "CN"); in DefaultSymbols.put()
212 DefaultSymbols.put(L, "L"); in DefaultSymbols.put()
213 DefaultSymbols.put(ST, "ST"); in DefaultSymbols.put()
214 DefaultSymbols.put(SN, "SERIALNUMBER"); in DefaultSymbols.put()
215 DefaultSymbols.put(EmailAddress, "E"); in DefaultSymbols.put()
216 DefaultSymbols.put(DC, "DC"); in DefaultSymbols.put()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
DHtmlStripFunction.java49 tempMap.put("amp", "&");
50 tempMap.put("quot", "\"");
51 tempMap.put("gt", ">");
52 tempMap.put("lt", "<");
54 tempMap.put("agrave", "\u00e0");
55 tempMap.put("aacute", "\u00e1");
56 tempMap.put("acirc", "\u00e2");
57 tempMap.put("atilde", "\u00e3");
58 tempMap.put("auml", "\u00e4");
59 tempMap.put("aring", "\u00e5");
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
DEnvironmentCheck.java573 h.put("java.version", javaVersion); in checkSystemProperties()
579 h.put( in checkSystemProperties()
592 h.put("java.class.path", cp); in checkSystemProperties()
597 h.put(FOUNDCLASSES + "java.class.path", classpathJars); in checkSystemProperties()
604 h.put("sun.boot.class.path", othercp); in checkSystemProperties()
609 h.put(FOUNDCLASSES + "sun.boot.class.path", classpathJars); in checkSystemProperties()
618 h.put("java.ext.dirs", othercp); in checkSystemProperties()
623 h.put(FOUNDCLASSES + "java.ext.dirs", classpathJars); in checkSystemProperties()
633 h.put( in checkSystemProperties()
687 h.put(jars[i] + "-path", f.getAbsolutePath()); in checkPathForJars()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/message/
DListMap.java61 headerListTable.put(ExtensionHeaderImpl.class, ExtensionHeaderList.class); in initializeListMap()
63 headerListTable.put(Contact.class, ContactList.class); in initializeListMap()
65 headerListTable.put(ContentEncoding.class, ContentEncodingList.class); in initializeListMap()
67 headerListTable.put(Via.class, ViaList.class); in initializeListMap()
69 headerListTable.put(WWWAuthenticate.class, WWWAuthenticateList.class); in initializeListMap()
71 headerListTable.put(Accept.class, AcceptList.class); in initializeListMap()
73 headerListTable.put(AcceptEncoding.class, AcceptEncodingList.class); in initializeListMap()
75 headerListTable.put(AcceptLanguage.class, AcceptLanguageList.class); in initializeListMap()
77 headerListTable.put(ProxyRequire.class, ProxyRequireList.class); in initializeListMap()
79 headerListTable.put(Route.class, RouteList.class); in initializeListMap()
[all …]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
DAppleStoreCountryCodeBox.java13 countryCodes.put("143460", "Australia");
14 countryCodes.put("143445", "Austria");
15 countryCodes.put("143446", "Belgium");
16 countryCodes.put("143455", "Canada");
17 countryCodes.put("143458", "Denmark");
18 countryCodes.put("143447", "Finland");
19 countryCodes.put("143442", "France");
20 countryCodes.put("143443", "Germany");
21 countryCodes.put("143448", "Greece");
22 countryCodes.put("143449", "Ireland");
[all …]
/external/bouncycastle/patches/
Dbcpkix.patch80 EC_ALGORITHMS.put(DIGEST_SHA1, ENCRYPTION_ECDSA_WITH_SHA1);
81 - EC_ALGORITHMS.put(DIGEST_SHA224, ENCRYPTION_ECDSA_WITH_SHA224);
83 + // EC_ALGORITHMS.put(DIGEST_SHA224, ENCRYPTION_ECDSA_WITH_SHA224);
85 EC_ALGORITHMS.put(DIGEST_SHA256, ENCRYPTION_ECDSA_WITH_SHA256);
86 EC_ALGORITHMS.put(DIGEST_SHA384, ENCRYPTION_ECDSA_WITH_SHA384);
87 EC_ALGORITHMS.put(DIGEST_SHA512, ENCRYPTION_ECDSA_WITH_SHA512);
180 encryptionAlgs.put(PKCSObjectIdentifiers.rsaEncryption.getId(), "RSA");
181 encryptionAlgs.put(TeleTrusTObjectIdentifiers.teleTrusTRSAsignatureAlgorithm, "RSA");
182 encryptionAlgs.put(X509ObjectIdentifiers.id_ea_rsa.getId(), "RSA");
183 - encryptionAlgs.put(CMSSignedDataGenerator.ENCRYPTION_RSA_PSS, "RSAandMGF1");
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/light/
DTestTangentGen.java115 vb.put(new float[]{0,2,0}); vb.put(new float[]{1,2,0}); vb.put(new float[]{2,2,0}); in createTriangleStripMesh()
116 vb.put(new float[]{0,1,0}); vb.put(new float[]{1,1,0}); vb.put(new float[]{2,1,0}); in createTriangleStripMesh()
117 vb.put(new float[]{0,0,0}); vb.put(new float[]{1,0,0}); vb.put(new float[]{2,0,0}); in createTriangleStripMesh()
120 nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}); in createTriangleStripMesh()
121 nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}); in createTriangleStripMesh()
122 nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}); in createTriangleStripMesh()
125 tb.put(new float[]{0,0}); tb.put(new float[]{0.5f,0}); tb.put(new float[]{1,0}); in createTriangleStripMesh()
126 tb.put(new float[]{0,0.5f}); tb.put(new float[]{0.5f,0.5f}); tb.put(new float[]{1,0.5f}); in createTriangleStripMesh()
127 tb.put(new float[]{0,1}); tb.put(new float[]{0.5f,1}); tb.put(new float[]{1,1}); in createTriangleStripMesh()
130 ib.put(indexes); in createTriangleStripMesh()
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DSocketHandlerTest.java94 props.put("handlers", className + "$MockHandler " + className in initProps()
96 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log"); in initProps()
97 props.put("java.util.logging.FileHandler.limit", "50000"); in initProps()
98 props.put("java.util.logging.FileHandler.count", "5"); in initProps()
99 props.put("java.util.logging.FileHandler.formatter", in initProps()
101 props.put(".level", "FINE"); in initProps()
102 props.put("java.util.logging.ConsoleHandler.level", "OFF"); in initProps()
103 props.put("java.util.logging.ConsoleHandler.formatter", in initProps()
105 props.put("foo.handlers", "java.util.logging.ConsoleHandler"); in initProps()
106 props.put("foo.level", "WARNING"); in initProps()
[all …]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DDefaultSignatureAlgorithmIdentifierFinder.java48 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
49 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
50 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
51 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
56 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption);
57 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption);
58 algorithms.put("SHA384WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha384WithRSAEncryption);
59 algorithms.put("SHA384WITHRSA", PKCSObjectIdentifiers.sha384WithRSAEncryption);
60 algorithms.put("SHA512WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha512WithRSAEncryption);
61 algorithms.put("SHA512WITHRSA", PKCSObjectIdentifiers.sha512WithRSAEncryption);
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
DParticleTriMesh.java97 tb.put(0f).put(1f); in initParticleData()
98 tb.put(1f).put(1f); in initParticleData()
99 tb.put(0f).put(0f); in initParticleData()
100 tb.put(1f).put(0f); in initParticleData()
118 ib.put((short)(startIdx + 1)) in initParticleData()
119 .put((short)(startIdx + 0)) in initParticleData()
120 .put((short)(startIdx + 2)); in initParticleData()
123 ib.put((short)(startIdx + 1)) in initParticleData()
124 .put((short)(startIdx + 2)) in initParticleData()
125 .put((short)(startIdx + 3)); in initParticleData()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DKeywords.java218 m_axisnames.put(FROM_ANCESTORS_STRING, in m_axisnames.put()
220 m_axisnames.put(FROM_ANCESTORS_OR_SELF_STRING, in m_axisnames.put()
222 m_axisnames.put(FROM_ATTRIBUTES_STRING, in m_axisnames.put()
224 m_axisnames.put(FROM_CHILDREN_STRING, in m_axisnames.put()
226 m_axisnames.put(FROM_DESCENDANTS_STRING, in m_axisnames.put()
228 m_axisnames.put(FROM_DESCENDANTS_OR_SELF_STRING, in m_axisnames.put()
230 m_axisnames.put(FROM_FOLLOWING_STRING, in m_axisnames.put()
232 m_axisnames.put(FROM_FOLLOWING_SIBLINGS_STRING, in m_axisnames.put()
234 m_axisnames.put(FROM_PARENT_STRING, in m_axisnames.put()
236 m_axisnames.put(FROM_PRECEDING_STRING, in m_axisnames.put()
[all …]

12345678910>>...58