Home
last modified time | relevance | path

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

12345678910>>...131

/external/owasp/sanitizer/src/main/org/owasp/html/
DHtmlEntities.java223 .put("quot", Integer.valueOf('"'))
224 .put("amp", Integer.valueOf('&'))
225 .put("lt", Integer.valueOf('<'))
226 .put("gt", Integer.valueOf('>'))
229 .put("apos", Integer.valueOf('\''))
232 .put("nbsp", Integer.valueOf('\u00a0'))
233 .put("iexcl", Integer.valueOf('\u00a1'))
234 .put("cent", Integer.valueOf('\u00a2'))
235 .put("pound", Integer.valueOf('\u00a3'))
236 .put("curren", Integer.valueOf('\u00a4'))
[all …]
DCssSchema.java98 propertiesBuilder.put(propertyName, prop); in withProperties()
230 .put("image(", "image()")
231 .put("linear-gradient(", "linear-gradient()")
232 .put("radial-gradient(", "radial-gradient()")
233 .put("repeating-linear-gradient(", "repeating-linear-gradient()")
234 .put("repeating-radial-gradient(", "repeating-radial-gradient()")
235 .put("rgb(", "rgb()").put("rgba(", "rgba()")
390 builder.put("-moz-border-radius", mozBorderRadius);
393 builder.put("-moz-border-radius-bottomleft", mozBorderRadiusBottomleft);
395 builder.put("-moz-opacity", mozOpacity);
[all …]
DHtmlTextEscapingMode.java87 .put("iframe", CDATA)
92 .put("listing", CDATA_SOMETIMES)
93 .put("xmp", CDATA)
101 .put("comment", CDATA_SOMETIMES) // IE only
104 .put("plaintext", PLAIN_TEXT)
106 .put("script", CDATA)
107 .put("style", CDATA)
110 .put("textarea", RCDATA)
111 .put("title", RCDATA)
115 .put("area", VOID)
[all …]
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLProvider.java59 put("SSLContext.SSL", ssl3SSLContext); in OpenSSLProvider()
60 put("SSLContext.SSLv3", ssl3SSLContext); in OpenSSLProvider()
61 put("SSLContext.TLS", tls12SSLContext); in OpenSSLProvider()
62 put("SSLContext.TLSv1", classOpenSSLContextImpl + "$TLSv1"); in OpenSSLProvider()
63 put("SSLContext.TLSv1.1", classOpenSSLContextImpl + "$TLSv11"); in OpenSSLProvider()
64 put("SSLContext.TLSv1.2", tls12SSLContext); in OpenSSLProvider()
65 put("SSLContext.Default", PREFIX + "DefaultSSLContextImpl"); in OpenSSLProvider()
68 put("MessageDigest.SHA-1", PREFIX + "OpenSSLMessageDigestJDK$SHA1"); in OpenSSLProvider()
69 put("Alg.Alias.MessageDigest.SHA1", "SHA-1"); in OpenSSLProvider()
70 put("Alg.Alias.MessageDigest.SHA", "SHA-1"); in OpenSSLProvider()
[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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
DRFC4519Style.java73 DefaultSymbols.put(businessCategory, "businessCategory"); in DefaultSymbols.put()
74 DefaultSymbols.put(c, "c"); in DefaultSymbols.put()
75 DefaultSymbols.put(cn, "cn"); in DefaultSymbols.put()
76 DefaultSymbols.put(dc, "dc"); in DefaultSymbols.put()
77 DefaultSymbols.put(description, "description"); in DefaultSymbols.put()
78 DefaultSymbols.put(destinationIndicator, "destinationIndicator"); in DefaultSymbols.put()
79 DefaultSymbols.put(distinguishedName, "distinguishedName"); in DefaultSymbols.put()
80 DefaultSymbols.put(dnQualifier, "dnQualifier"); in DefaultSymbols.put()
81 DefaultSymbols.put(enhancedSearchGuide, "enhancedSearchGuide"); in DefaultSymbols.put()
82 DefaultSymbols.put(facsimileTelephoneNumber, "facsimileTelephoneNumber"); in DefaultSymbols.put()
[all …]
DBCStyle.java202 DefaultSymbols.put(C, "C"); in DefaultSymbols.put()
203 DefaultSymbols.put(O, "O"); in DefaultSymbols.put()
204 DefaultSymbols.put(T, "T"); in DefaultSymbols.put()
205 DefaultSymbols.put(OU, "OU"); in DefaultSymbols.put()
206 DefaultSymbols.put(CN, "CN"); in DefaultSymbols.put()
207 DefaultSymbols.put(L, "L"); in DefaultSymbols.put()
208 DefaultSymbols.put(ST, "ST"); in DefaultSymbols.put()
209 DefaultSymbols.put(SN, "SERIALNUMBER"); in DefaultSymbols.put()
210 DefaultSymbols.put(EmailAddress, "E"); in DefaultSymbols.put()
211 DefaultSymbols.put(DC, "DC"); in DefaultSymbols.put()
[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/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
DTestCharset.java72 us.put(lead); in TestUTF16Converter()
73 us.put(trail); in TestUTF16Converter()
74 bs1.put((byte)(lead>>8)); in TestUTF16Converter()
75 bs1.put((byte)(lead&0xFF)); in TestUTF16Converter()
76 bs1.put((byte)(trail>>8)); in TestUTF16Converter()
77 bs1.put((byte)(trail&0xFF)); in TestUTF16Converter()
79 bs2.put((byte)(lead&0xFF)); in TestUTF16Converter()
80 bs2.put((byte)(lead>>8)); in TestUTF16Converter()
81 bs2.put((byte)(trail&0xFF)); in TestUTF16Converter()
82 bs2.put((byte)(trail>>8)); in TestUTF16Converter()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java272 result.put(b & 0xFF); in build()
327 state.put("isMuted", data.isMuted()); in buildJsonAudioState()
328 state.put("AudioRoute", InCallServiceImpl.getAudioRouteString(data.getRoute())); in buildJsonAudioState()
335 dm.put("widthPixels", data.widthPixels); in buildDisplayMetrics()
336 dm.put("heightPixels", data.heightPixels); in buildDisplayMetrics()
337 dm.put("noncompatHeightPixels", data.noncompatHeightPixels); in buildDisplayMetrics()
338 dm.put("noncompatWidthPixels", data.noncompatWidthPixels); in buildDisplayMetrics()
344 address.put(data.getHostName()); in buildInetAddress()
345 address.put(data.getHostAddress()); in buildInetAddress()
351 address.put(data.getHostName()); in buildInetSocketAddress()
[all …]
/external/libphonenumber/libphonenumber/src/com/google/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/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetICU.java140 algorithmicCharsets.put("LMBCS-1", "com.ibm.icu.charset.CharsetLMBCS");
141 algorithmicCharsets.put("LMBCS-2", "com.ibm.icu.charset.CharsetLMBCS");
142 algorithmicCharsets.put("LMBCS-3", "com.ibm.icu.charset.CharsetLMBCS");
143 algorithmicCharsets.put("LMBCS-4", "com.ibm.icu.charset.CharsetLMBCS");
144 algorithmicCharsets.put("LMBCS-5", "com.ibm.icu.charset.CharsetLMBCS");
145 algorithmicCharsets.put("LMBCS-6", "com.ibm.icu.charset.CharsetLMBCS");
146 algorithmicCharsets.put("LMBCS-8", "com.ibm.icu.charset.CharsetLMBCS");
147 algorithmicCharsets.put("LMBCS-11", "com.ibm.icu.charset.CharsetLMBCS");
148 algorithmicCharsets.put("LMBCS-16", "com.ibm.icu.charset.CharsetLMBCS");
149 algorithmicCharsets.put("LMBCS-17", "com.ibm.icu.charset.CharsetLMBCS");
[all …]
/external/smali/smalidea/src/main/java/org/jf/smalidea/
DSmaliTokens.java168 tokenColors.put("ACCESS_SPEC", SmaliHighlightingColors.ACCESS);
169 tokenColors.put("ANNOTATION_DIRECTIVE", SmaliHighlightingColors.DIRECTIVE);
170 tokenColors.put("ANNOTATION_VISIBILITY", SmaliHighlightingColors.ACCESS);
171 tokenColors.put("ARRAY_DATA_DIRECTIVE", SmaliHighlightingColors.DIRECTIVE);
172 tokenColors.put("ARRAY_TYPE_PREFIX", SmaliHighlightingColors.TYPE);
173 tokenColors.put("ARROW", SmaliHighlightingColors.ARROW);
174 tokenColors.put("BOOL_LITERAL", SmaliHighlightingColors.LITERAL);
175 tokenColors.put("BYTE_LITERAL", SmaliHighlightingColors.NUMBER);
176 tokenColors.put("CATCH_DIRECTIVE", SmaliHighlightingColors.DIRECTIVE);
177 tokenColors.put("CATCHALL_DIRECTIVE", SmaliHighlightingColors.DIRECTIVE);
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DUrlComponentEncodingTester.java43 map.put( 0x0, Encoding.PERCENT); // Null character
44 map.put( 0x1, Encoding.PERCENT); // Start of Header
45 map.put( 0x2, Encoding.PERCENT); // Start of Text
46 map.put( 0x3, Encoding.PERCENT); // End of Text
47 map.put( 0x4, Encoding.PERCENT); // End of Transmission
48 map.put( 0x5, Encoding.PERCENT); // Enquiry
49 map.put( 0x6, Encoding.PERCENT); // Acknowledgment
50 map.put( 0x7, Encoding.PERCENT); // Bell
51 map.put((int) '\b', Encoding.PERCENT); // Backspace in map.put()
52 map.put((int) '\t', Encoding.SKIP); // Horizontal Tab in map.put()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
DColors.java55 public static Color put (String name, Color color) { in put() method in Colors
56 return map.put(name, color); in put()
62 map.put("CLEAR", Color.CLEAR); in reset()
63 map.put("BLACK", Color.BLACK); in reset()
65 map.put("WHITE", Color.WHITE); in reset()
66 map.put("LIGHT_GRAY", Color.LIGHT_GRAY); in reset()
67 map.put("GRAY", Color.GRAY); in reset()
68 map.put("DARK_GRAY", Color.DARK_GRAY); in reset()
70 map.put("BLUE", Color.BLUE); in reset()
71 map.put("NAVY", Color.NAVY); in reset()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DImmutableTableTest.java34 builder.put((String) data[i], (Integer) data[i + 1], in create()
45 .put('a', 1, "foo") in testBuilder()
48 expectedTable.put('a', 1, "foo"); in testBuilder()
49 expectedTable.put('b', 1, "bar"); in testBuilder()
50 expectedTable.put('a', 2, "baz"); in testBuilder()
52 otherTable.put('b', 1, "bar"); in testBuilder()
53 otherTable.put('a', 2, "baz"); in testBuilder()
63 .put(Tables.immutableCell('a', 1, "foo")) in testBuilder_withImmutableCell()
71 builder.put(Tables.immutableCell((Character) null, 1, "foo")); in testBuilder_withImmutableCellAndNullContents()
77 builder.put(Tables.immutableCell('a', (Integer) null, "foo")); in testBuilder_withImmutableCellAndNullContents()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DPluralFormatTest.java78 changes.put(new Integer(0), "other"); in TestOneFormLocales()
87 changes.put(new Integer(0), "other"); in TestSingular1Locales()
88 changes.put(new Integer(1), "one"); in TestSingular1Locales()
89 changes.put(new Integer(2), "other"); in TestSingular1Locales()
97 changes.put(new Integer(0), "one"); in TestSingular01Locales()
98 changes.put(new Integer(2), "other"); in TestSingular01Locales()
106 changes.put(new Integer(0), "zero"); in TestZeroSingularLocales()
107 changes.put(new Integer(1), "one"); in TestZeroSingularLocales()
110 changes.put(new Integer(i), "other"); in TestZeroSingularLocales()
112 changes.put(new Integer(i), "zero"); in TestZeroSingularLocales()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DPluralFormatTest.java74 changes.put(new Integer(0), "other"); in TestOneFormLocales()
83 changes.put(new Integer(0), "other"); in TestSingular1Locales()
84 changes.put(new Integer(1), "one"); in TestSingular1Locales()
85 changes.put(new Integer(2), "other"); in TestSingular1Locales()
93 changes.put(new Integer(0), "one"); in TestSingular01Locales()
94 changes.put(new Integer(2), "other"); in TestSingular01Locales()
102 changes.put(new Integer(0), "zero"); in TestZeroSingularLocales()
103 changes.put(new Integer(1), "one"); in TestZeroSingularLocales()
106 changes.put(new Integer(i), "other"); in TestZeroSingularLocales()
108 changes.put(new Integer(i), "zero"); in TestZeroSingularLocales()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
DViewInflater.java78 mColorNames.put("aliceblue", "#f0f8ff");
79 mColorNames.put("antiquewhite", "#faebd7");
80 mColorNames.put("aqua", "#00ffff");
81 mColorNames.put("aquamarine", "#7fffd4");
82 mColorNames.put("azure", "#f0ffff");
83 mColorNames.put("beige", "#f5f5dc");
84 mColorNames.put("bisque", "#ffe4c4");
85 mColorNames.put("black", "#000000");
86 mColorNames.put("blanchedalmond", "#ffebcd");
87 mColorNames.put("blue", "#0000ff");
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableTableTest.java35 builder.put((String) data[i], (Integer) data[i + 1], in create()
46 .put('a', 1, "foo") in testBuilder()
49 expectedTable.put('a', 1, "foo"); in testBuilder()
50 expectedTable.put('b', 1, "bar"); in testBuilder()
51 expectedTable.put('a', 2, "baz"); in testBuilder()
53 otherTable.put('b', 1, "bar"); in testBuilder()
54 otherTable.put('a', 2, "baz"); in testBuilder()
64 .put(Tables.immutableCell('a', 1, "foo")) in testBuilder_withImmutableCell()
72 builder.put(Tables.immutableCell((Character) null, 1, "foo")); in testBuilder_withImmutableCellAndNullContents()
78 builder.put(Tables.immutableCell('a', (Integer) null, "foo")); in testBuilder_withImmutableCellAndNullContents()
[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 …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DBaseAgreementSpi.java52 keySizes.put("DES", i64);
53 keySizes.put("DESEDE", i192);
54 keySizes.put("BLOWFISH", i128);
55 keySizes.put("AES", i256);
57 keySizes.put(NISTObjectIdentifiers.id_aes128_ECB.getId(), i128); in NISTObjectIdentifiers.id_aes128_ECB.getId()
58 keySizes.put(NISTObjectIdentifiers.id_aes192_ECB.getId(), i192); in NISTObjectIdentifiers.id_aes192_ECB.getId()
59 keySizes.put(NISTObjectIdentifiers.id_aes256_ECB.getId(), i256); in NISTObjectIdentifiers.id_aes256_ECB.getId()
60 keySizes.put(NISTObjectIdentifiers.id_aes128_CBC.getId(), i128); in NISTObjectIdentifiers.id_aes128_CBC.getId()
61 keySizes.put(NISTObjectIdentifiers.id_aes192_CBC.getId(), i192); in NISTObjectIdentifiers.id_aes192_CBC.getId()
62 keySizes.put(NISTObjectIdentifiers.id_aes256_CBC.getId(), i256); in NISTObjectIdentifiers.id_aes256_CBC.getId()
[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/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 …]

12345678910>>...131