/dalvik/dx/src/com/android/dx/dex/code/ |
RopToDop.java | 227 MAP.put(Rops.NOP, Dops.NOP); 228 MAP.put(Rops.MOVE_INT, Dops.MOVE); 229 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE); 230 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE); 231 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE); 232 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT); 233 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE); 234 MAP.put(Rops.MOVE_PARAM_LONG, Dops.MOVE_WIDE); 235 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE); 236 MAP.put(Rops.MOVE_PARAM_DOUBLE, Dops.MOVE_WIDE) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
RopToDop.java | 227 MAP.put(Rops.NOP, Dops.NOP); 228 MAP.put(Rops.MOVE_INT, Dops.MOVE); 229 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE); 230 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE); 231 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE); 232 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT); 233 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE); 234 MAP.put(Rops.MOVE_PARAM_LONG, Dops.MOVE_WIDE); 235 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE); 236 MAP.put(Rops.MOVE_PARAM_DOUBLE, Dops.MOVE_WIDE) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
RopToDop.java | 55 MAP.put(Rops.NOP, Dops.NOP); 56 MAP.put(Rops.MOVE_INT, Dops.MOVE); 57 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE); 58 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE); 59 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE); 60 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT); 61 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE); 62 MAP.put(Rops.MOVE_PARAM_LONG, Dops.MOVE_WIDE); 63 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE); 64 MAP.put(Rops.MOVE_PARAM_DOUBLE, Dops.MOVE_WIDE) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
WspTypeDecoder.java | 44 WELL_KNOWN_MIME_TYPES.put(0x00, "*/*"); 45 WELL_KNOWN_MIME_TYPES.put(0x01, "text/*"); 46 WELL_KNOWN_MIME_TYPES.put(0x02, "text/html"); 47 WELL_KNOWN_MIME_TYPES.put(0x03, "text/plain"); 48 WELL_KNOWN_MIME_TYPES.put(0x04, "text/x-hdml"); 49 WELL_KNOWN_MIME_TYPES.put(0x05, "text/x-ttml"); 50 WELL_KNOWN_MIME_TYPES.put(0x06, "text/x-vCalendar"); 51 WELL_KNOWN_MIME_TYPES.put(0x07, "text/x-vCard"); 52 WELL_KNOWN_MIME_TYPES.put(0x08, "text/vnd.wap.wml"); 53 WELL_KNOWN_MIME_TYPES.put(0x09, "text/vnd.wap.wmlscript") [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
HtmlStripFunction.java | 49 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...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
DefaultSoftKeyboardJAJP.java | 109 put("\u3042", "\u3041"); put("\u3044", "\u3043"); put("\u3046", "\u3045"); put("\u3048", "\u3047"); put("\u304a", "\u3049"); 110 put("\u3041", "\u3042"); put("\u3043", "\u3044"); put("\u3045", "\u30f4"); put("\u3047", "\u3048"); put("\u3049", "\u304a") [all...] |
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
VCardExporterTests.java | 54 .put(StructuredName.FAMILY_NAME, "Ando") 55 .put(StructuredName.GIVEN_NAME, "Roid"); 65 .put(StructuredName.FAMILY_NAME, "AppropriateFamilyName") 66 .put(StructuredName.GIVEN_NAME, "AppropriateGivenName") 67 .put(StructuredName.MIDDLE_NAME, "AppropriateMiddleName") 68 .put(StructuredName.PREFIX, "AppropriatePrefix") 69 .put(StructuredName.SUFFIX, "AppropriateSuffix") 70 .put(StructuredName.DISPLAY_NAME, "DISPLAY NAME"); 103 .put(StructuredName.FAMILY_NAME, "DoNotEmitFamilyName1") 104 .put(StructuredName.GIVEN_NAME, "DoNotEmitGivenName1" [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
GLVertex.java | 56 public void put(IntBuffer vertexBuffer, IntBuffer colorBuffer) { method in class:GLVertex 57 vertexBuffer.put(toFixed(x)); 58 vertexBuffer.put(toFixed(y)); 59 vertexBuffer.put(toFixed(z)); 61 colorBuffer.put(0); 62 colorBuffer.put(0); 63 colorBuffer.put(0); 64 colorBuffer.put(0); 66 colorBuffer.put(color.red); 67 colorBuffer.put(color.green) [all...] |
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
ContentValuesBuilder.java | 21 * ContentValues-like class which enables users to chain put() methods and restricts 31 public ContentValuesBuilder put(String key, String value) { method in class:ContentValuesBuilder 32 mContentValues.put(key, value); 37 public ContentValuesBuilder put(String key, Byte value) { 38 mContentValues.put(key, value); 42 public ContentValuesBuilder put(String key, Short value) { 43 mContentValues.put(key, value); 47 public ContentValuesBuilder put(String key, Integer value) { method in class:ContentValuesBuilder 48 mContentValues.put(key, value); 53 public ContentValuesBuilder put(String key, Long value) 73 public ContentValuesBuilder put(String key, byte[] value) { method in class:ContentValuesBuilder [all...] |
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
CountryCodeToRegionCodeMap.java | 67 countryCodeToRegionCodeMap.put(1, listWithRegionCode); 72 countryCodeToRegionCodeMap.put(7, listWithRegionCode); 76 countryCodeToRegionCodeMap.put(20, listWithRegionCode); 80 countryCodeToRegionCodeMap.put(27, listWithRegionCode); 84 countryCodeToRegionCodeMap.put(30, listWithRegionCode); 88 countryCodeToRegionCodeMap.put(31, listWithRegionCode); 92 countryCodeToRegionCodeMap.put(32, listWithRegionCode); 96 countryCodeToRegionCodeMap.put(33, listWithRegionCode); 100 countryCodeToRegionCodeMap.put(34, listWithRegionCode); 104 countryCodeToRegionCodeMap.put(36, listWithRegionCode) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
ListMap.java | 61 headerListTable.put(ExtensionHeaderImpl.class, ExtensionHeaderList.class); 63 headerListTable.put(Contact.class, ContactList.class); 65 headerListTable.put(ContentEncoding.class, ContentEncodingList.class); 67 headerListTable.put(Via.class, ViaList.class); 69 headerListTable.put(WWWAuthenticate.class, WWWAuthenticateList.class); 71 headerListTable.put(Accept.class, AcceptList.class); 73 headerListTable.put(AcceptEncoding.class, AcceptEncodingList.class); 75 headerListTable.put(AcceptLanguage.class, AcceptLanguageList.class); 77 headerListTable.put(ProxyRequire.class, ProxyRequireList.class); 79 headerListTable.put(Route.class, RouteList.class) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableTableTest.java | 31 builder.put((String) data[i], (Integer) data[i + 1], 42 .put('a', 1, "foo") 45 expectedTable.put('a', 1, "foo"); 46 expectedTable.put('b', 1, "bar"); 47 expectedTable.put('a', 2, "baz"); 49 otherTable.put('b', 1, "bar"); 50 otherTable.put('a', 2, "baz"); 60 .put(Tables.immutableCell('a', 1, "foo")) 68 builder.put(Tables.immutableCell((Character) null, 1, "foo")); 74 builder.put(Tables.immutableCell('a', (Integer) null, "foo")) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
DRLCertFactory.java | 40 put("CertificateFactory.X509", "org.apache.harmony.security.provider.cert.X509CertFactoryImpl"); 42 put("Alg.Alias.CertificateFactory.X.509", "X509");
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
RFC4519Style.java | 78 DefaultSymbols.put(businessCategory, "businessCategory"); 79 DefaultSymbols.put(c, "c"); 80 DefaultSymbols.put(cn, "cn"); 81 DefaultSymbols.put(dc, "dc"); 82 DefaultSymbols.put(description, "description"); 83 DefaultSymbols.put(destinationIndicator, "destinationIndicator"); 84 DefaultSymbols.put(distinguishedName, "distinguishedName"); 85 DefaultSymbols.put(dnQualifier, "dnQualifier"); 86 DefaultSymbols.put(enhancedSearchGuide, "enhancedSearchGuide"); 87 DefaultSymbols.put(facsimileTelephoneNumber, "facsimileTelephoneNumber") [all...] |
/sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/ |
DefaultSdkInfo.java | 156 PARENTS.put(COMPOUND_BUTTON, BUTTON); 157 PARENTS.put(ABS_SPINNER, ADAPTER_VIEW); 158 PARENTS.put(ABS_LIST_VIEW, ADAPTER_VIEW); 159 PARENTS.put(ABS_SEEK_BAR, ADAPTER_VIEW); 160 PARENTS.put(ADAPTER_VIEW, VIEW_GROUP); 161 PARENTS.put(VIEW_GROUP, VIEW); 163 PARENTS.put(TEXT_VIEW, VIEW); 164 PARENTS.put(CHECKED_TEXT_VIEW, TEXT_VIEW); 165 PARENTS.put(RADIO_BUTTON, COMPOUND_BUTTON); 166 PARENTS.put(SPINNER, ABS_SPINNER) [all...] |
/tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/generateviewbylayout/model/ |
CheckboxNode.java | 27 properties.put(ViewProperties.ViewStateSetMethod, ViewSetMethods.setChecked.name());
28 properties.put(ViewProperties.ViewStateGetMethod, ViewGetMethods.isChecked.name());
29 properties.put(ViewProperties.PreferenceSetMethod, PreferenceSetMethods.putBoolean.name());
30 properties.put(ViewProperties.PreferenceGetMethod, PreferenceGetMethods.getBoolean.name());
31 properties.put(ViewProperties.ViewStateValueType, Boolean.class.toString());
|
EditTextNode.java | 27 properties.put(ViewProperties.ViewStateSetMethod, ViewSetMethods.setText.name());
28 properties.put(ViewProperties.ViewStateGetMethod, ViewGetMethods.getText.name());
29 properties.put(ViewProperties.PreferenceSetMethod, PreferenceSetMethods.putString.name());
30 properties.put(ViewProperties.PreferenceGetMethod, PreferenceGetMethods.getString.name());
31 properties.put(ViewProperties.ViewStateValueType, String.class.toString());
|
RadioButtonNode.java | 27 properties.put(ViewProperties.ViewStateSetMethod, ViewSetMethods.setChecked.name());
28 properties.put(ViewProperties.ViewStateGetMethod, ViewGetMethods.isChecked.name());
29 properties.put(ViewProperties.PreferenceSetMethod, PreferenceSetMethods.putBoolean.name());
30 properties.put(ViewProperties.PreferenceGetMethod, PreferenceGetMethods.getBoolean.name());
31 properties.put(ViewProperties.ViewStateValueType, Boolean.class.toString());
|
SeekBarNode.java | 27 properties.put(ViewProperties.ViewStateSetMethod, ViewSetMethods.setProgress.name());
28 properties.put(ViewProperties.ViewStateGetMethod, ViewGetMethods.getProgress.name());
29 properties.put(ViewProperties.PreferenceSetMethod, PreferenceSetMethods.putInt.name());
30 properties.put(ViewProperties.PreferenceGetMethod, PreferenceGetMethods.getInt.name());
31 properties.put(ViewProperties.ViewStateValueType, Integer.class.toString());
|
SpinnerNode.java | 27 properties.put(ViewProperties.ViewStateSetMethod, ViewSetMethods.setSelection.name());
28 properties.put(ViewProperties.ViewStateGetMethod,
30 properties.put(ViewProperties.PreferenceSetMethod, PreferenceSetMethods.putInt.name());
31 properties.put(ViewProperties.PreferenceGetMethod, PreferenceGetMethods.getInt.name());
32 properties.put(ViewProperties.ViewStateValueType, Integer.class.toString());
|
/external/jmonkeyengine/engine/src/test/jme3test/light/ |
TestTangentGen.java | 115 vb.put(new float[]{0,2,0}); vb.put(new float[]{1,2,0}); vb.put(new float[]{2,2,0}); 116 vb.put(new float[]{0,1,0}); vb.put(new float[]{1,1,0}); vb.put(new float[]{2,1,0}); 117 vb.put(new float[]{0,0,0}); vb.put(new float[]{1,0,0}); vb.put(new float[]{2,0,0}); 120 nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}); nb.put(new float[]{0,0,1}) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
SignalToneUtil.java | 112 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 115 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 119 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 122 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 125 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 128 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 131 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 134 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 137 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_ISDN, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN, 142 hm.put(signalParamHash(IS95_CONST_IR_SIGNAL_TONE, TAPIAMSSCDMA_SIGNAL_PITCH_UNKNOWN [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
ContentValuesTest.java | 62 mContentValues.put("Long", 10L); 63 mContentValues.put("Integer", 201); 86 mContentValues.put("Long", expected); 90 mContentValues.put("Long", expected); 99 mContentValues.put("Byte", expected); 103 mContentValues.put("Byte", expected); 112 mContentValues.put("Integer", expected); 116 mContentValues.put("Integer", expected); 126 mContentValues.put("Integer", 10); 127 mContentValues.put("Long", 10L) [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
DefaultDigestAlgorithmIdentifierFinder.java | 31 // digestOids.put(OIWObjectIdentifiers.md4WithRSAEncryption, PKCSObjectIdentifiers.md4); 32 // digestOids.put(OIWObjectIdentifiers.md4WithRSA, PKCSObjectIdentifiers.md4); 34 digestOids.put(OIWObjectIdentifiers.sha1WithRSA, OIWObjectIdentifiers.idSHA1); 37 // digestOids.put(PKCSObjectIdentifiers.sha224WithRSAEncryption, NISTObjectIdentifiers.id_sha224); 39 digestOids.put(PKCSObjectIdentifiers.sha256WithRSAEncryption, NISTObjectIdentifiers.id_sha256); 40 digestOids.put(PKCSObjectIdentifiers.sha384WithRSAEncryption, NISTObjectIdentifiers.id_sha384); 41 digestOids.put(PKCSObjectIdentifiers.sha512WithRSAEncryption, NISTObjectIdentifiers.id_sha512); 43 // digestOids.put(PKCSObjectIdentifiers.md2WithRSAEncryption, PKCSObjectIdentifiers.md2); 44 // digestOids.put(PKCSObjectIdentifiers.md4WithRSAEncryption, PKCSObjectIdentifiers.md4); 46 digestOids.put(PKCSObjectIdentifiers.md5WithRSAEncryption, PKCSObjectIdentifiers.md5) [all...] |
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/ |
ReadOnlyCharBufferTest.java | 76 buf.put((char) 0); 86 buf.put(array); 92 buf.put((char[]) null); 102 buf.put(array, 0, array.length); 108 buf.put((char[]) null, 0, 1); 114 buf.put(new char[buf.capacity() + 1], 0, buf.capacity() + 1); 120 buf.put(array, -1, array.length); 130 buf.put(other); 136 buf.put((CharBuffer) null); 142 buf.put(buf) [all...] |