HomeSort by relevance Sort by last modified time
    Searched refs:put (Results 76 - 100 of 4779) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.virtuals/
Android.mk 17 test_makefile := external/libcxx/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.virtuals/Android.mk
19 test_name := localization/locale.categories/category.time/locale.time.put/locale.time.put.virtuals/tested_elsewhere
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ActionMultiMap.java 27 public void put(String mimeType, Action info) { method in class:ActionMultiMap
28 put(mimeType, info, false); method
35 public void put(String mimeType, Action info, boolean front) { method in class:ActionMultiMap
36 // Put the info first
42 put(mimeType, collectList); method
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
VerificationError.java 54 verificationErrorNames.put("generic-error", GENERIC);
55 verificationErrorNames.put("no-such-class", NO_SUCH_CLASS);
56 verificationErrorNames.put("no-such-field", NO_SUCH_FIELD);
57 verificationErrorNames.put("no-such-method", NO_SUCH_METHOD);
58 verificationErrorNames.put("illegal-class-access", ILLEGAL_CLASS_ACCESS);
59 verificationErrorNames.put("illegal-field-access", ILLEGAL_FIELD_ACCESS);
60 verificationErrorNames.put("illegal-method-access", ILLEGAL_METHOD_ACCESS);
61 verificationErrorNames.put("class-change-error", CLASS_CHANGE_ERROR);
62 verificationErrorNames.put("instantiation-error", INSTANTIATION_ERROR);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VCardTestsBase.java 52 mContentValuesForQP.put("ENCODING", "QUOTED-PRINTABLE");
54 mContentValuesForSJis.put("CHARSET", "SHIFT_JIS");
56 mContentValuesForUtf8.put("CHARSET", "UTF-8");
58 mContentValuesForQPAndSJis.put("ENCODING", "QUOTED-PRINTABLE");
59 mContentValuesForQPAndSJis.put("CHARSET", "SHIFT_JIS");
61 mContentValuesForQPAndUtf8.put("ENCODING", "QUOTED-PRINTABLE");
62 mContentValuesForQPAndUtf8.put("CHARSET", "UTF-8");
64 mContentValuesForBase64V21.put("ENCODING", "BASE64");
66 mContentValuesForBase64V30.put("ENCODING", "b");
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
CountryCodeToRegionCodeMapForTesting.java 44 countryCodeToRegionCodeMap.put(1, listWithRegionCode);
48 countryCodeToRegionCodeMap.put(33, listWithRegionCode);
52 countryCodeToRegionCodeMap.put(36, listWithRegionCode);
56 countryCodeToRegionCodeMap.put(39, listWithRegionCode);
61 countryCodeToRegionCodeMap.put(44, listWithRegionCode);
65 countryCodeToRegionCodeMap.put(48, listWithRegionCode);
69 countryCodeToRegionCodeMap.put(49, listWithRegionCode);
73 countryCodeToRegionCodeMap.put(52, listWithRegionCode);
77 countryCodeToRegionCodeMap.put(54, listWithRegionCode);
81 countryCodeToRegionCodeMap.put(55, listWithRegionCode)
    [all...]
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbHid.java 46 buffer.put(new byte[] {
92 buffer.put(collection);
94 buffer.put(new byte[] {
102 buffer.put((byte)mReportId);
104 buffer.put((byte)contactCount);
109 buffer.put((byte)((contact.id << 2) | 0x03));
111 buffer.put((byte)contact.x).put((byte)(contact.x >> 8));
113 buffer.put((byte)contact.y).put((byte)(contact.y >> 8))
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ColorResourceLoader.java 14 androidColors.put("black", Color.BLACK);
15 androidColors.put("darkgray", Color.DKGRAY);
16 androidColors.put("gray", Color.GRAY);
17 androidColors.put("lightgray", Color.LTGRAY);
18 androidColors.put("white", Color.WHITE);
19 androidColors.put("red", Color.RED);
20 androidColors.put("green", Color.GREEN);
21 androidColors.put("blue", Color.BLUE);
22 androidColors.put("yellow", Color.YELLOW);
23 androidColors.put("cyan", Color.CYAN)
    [all...]
  /packages/apps/Stk/src/com/android/stk/
TonePlayer.java 34 mToneMap.put(Tone.DIAL, ToneGenerator.TONE_SUP_DIAL);
35 mToneMap.put(Tone.BUSY, ToneGenerator.TONE_SUP_BUSY);
36 mToneMap.put(Tone.CONGESTION, ToneGenerator.TONE_SUP_CONGESTION);
37 mToneMap.put(Tone.RADIO_PATH_ACK, ToneGenerator.TONE_SUP_RADIO_ACK);
38 mToneMap.put(Tone.RADIO_PATH_NOT_AVAILABLE, ToneGenerator.TONE_SUP_RADIO_NOTAVAIL);
39 mToneMap.put(Tone.ERROR_SPECIAL_INFO, ToneGenerator.TONE_SUP_ERROR);
40 mToneMap.put(Tone.CALL_WAITING, ToneGenerator.TONE_SUP_CALL_WAITING);
41 mToneMap.put(Tone.RINGING, ToneGenerator.TONE_SUP_RINGTONE);
42 mToneMap.put(Tone.GENERAL_BEEP, ToneGenerator.TONE_PROP_BEEP);
43 mToneMap.put(Tone.POSITIVE_ACK, ToneGenerator.TONE_PROP_ACK)
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkVars.java 64 VAR_MAP.put("build.board", new StaticVarGetter(Build.BOARD));
65 VAR_MAP.put("build.brand", new StaticVarGetter(Build.BRAND));
66 VAR_MAP.put("build.device", new StaticVarGetter(Build.DEVICE));
67 VAR_MAP.put("build.display", new StaticVarGetter(Build.DISPLAY));
68 VAR_MAP.put("build.fingerprint", new StaticVarGetter(Build.FINGERPRINT));
69 VAR_MAP.put("build.host", new StaticVarGetter(Build.HOST));
70 VAR_MAP.put("build.id", new StaticVarGetter(Build.ID));
71 VAR_MAP.put("build.model", new StaticVarGetter(Build.MODEL));
72 VAR_MAP.put("build.product", new StaticVarGetter(Build.PRODUCT));
73 VAR_MAP.put("build.tags", new StaticVarGetter(Build.TAGS))
    [all...]
  /packages/apps/Settings/src/com/android/settings/search/
Ranking.java 90 sRankMap.put(WifiSettings.class.getName(), RANK_WIFI);
91 sRankMap.put(AdvancedWifiSettings.class.getName(), RANK_WIFI);
92 sRankMap.put(SavedAccessPointsWifiSettings.class.getName(), RANK_WIFI);
95 sRankMap.put(BluetoothSettings.class.getName(), RANK_BT);
98 sRankMap.put(SimSettings.class.getName(), RANK_SIM);
101 sRankMap.put(DataUsageSummary.class.getName(), RANK_DATA_USAGE);
102 sRankMap.put(DataUsageMeteredSettings.class.getName(), RANK_DATA_USAGE);
105 sRankMap.put(WirelessSettings.class.getName(), RANK_WIRELESS);
108 sRankMap.put(HomeSettings.class.getName(), RANK_HOME);
111 sRankMap.put(DisplaySettings.class.getName(), RANK_DISPLAY)
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/
DataItemTests.java 64 mValues1.put(Data._ID, 1);
65 mValues2.put(Data._ID, 2);
66 mValues3.put(Data._ID, 3);
67 mValues4.put(Data._ID, 4);
84 mValues1.put(Data.IS_SUPER_PRIMARY, 1);
85 mValues2.put(Data.IS_PRIMARY, 0);
87 mValues1.put(Entity.TIMES_USED, 5);
88 mValues2.put(Entity.TIMES_USED, 4);
90 mValues1.put(Entity.LAST_TIME_USED, 555);
91 mValues2.put(Entity.LAST_TIME_USED, 999)
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
ResultSetTest.java 34 thePublicStatics.put("CLOSE_CURSORS_AT_COMMIT",
36 thePublicStatics.put("HOLD_CURSORS_OVER_COMMIT", new java.lang.Integer(
38 thePublicStatics.put("CONCUR_UPDATABLE", new java.lang.Integer(1008));
39 thePublicStatics.put("CONCUR_READ_ONLY", new java.lang.Integer(1007));
40 thePublicStatics.put("TYPE_SCROLL_SENSITIVE", new java.lang.Integer(
42 thePublicStatics.put("TYPE_SCROLL_INSENSITIVE", new java.lang.Integer(
44 thePublicStatics.put("TYPE_FORWARD_ONLY", new java.lang.Integer(1003));
45 thePublicStatics.put("FETCH_UNKNOWN", new java.lang.Integer(1002));
46 thePublicStatics.put("FETCH_REVERSE", new java.lang.Integer(1001));
47 thePublicStatics.put("FETCH_FORWARD", new java.lang.Integer(1000))
    [all...]
ParameterMetaDataTest.java 34 thePublicStatics.put("parameterModeOut", new Integer(4));
35 thePublicStatics.put("parameterModeInOut", new Integer(2));
36 thePublicStatics.put("parameterModeIn", new Integer(1));
37 thePublicStatics.put("parameterModeUnknown", new Integer(0));
38 thePublicStatics.put("parameterNullableUnknown", new Integer(2));
39 thePublicStatics.put("parameterNullable", new Integer(1));
40 thePublicStatics.put("parameterNoNulls", new Integer(0));
StatementTest.java 34 thePublicStatics.put("NO_GENERATED_KEYS", new Integer(2));
35 thePublicStatics.put("RETURN_GENERATED_KEYS", new Integer(1));
36 thePublicStatics.put("EXECUTE_FAILED", new Integer(-3));
37 thePublicStatics.put("SUCCESS_NO_INFO", new Integer(-2));
38 thePublicStatics.put("CLOSE_ALL_RESULTS", new Integer(3));
39 thePublicStatics.put("KEEP_CURRENT_RESULT", new Integer(2));
40 thePublicStatics.put("CLOSE_CURRENT_RESULT", new Integer(1));
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FsInfoSector.java 146 buffer.put((byte) 0x52);
147 buffer.put((byte) 0x52);
148 buffer.put((byte) 0x61);
149 buffer.put((byte) 0x41);
154 buffer.put((byte) 0x72);
155 buffer.put((byte) 0x72);
156 buffer.put((byte) 0x41);
157 buffer.put((byte) 0x61);
163 buffer.put((byte) 0x55);
164 buffer.put((byte) 0xaa)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 199 * <p>Various system and CLASSPATH, etc. properties are put into
201 * of that item as the value. Any serious problems will be put in
558 * @param h Hashtable to put information in
573 h.put("java.version", javaVersion);
579 h.put(
592 h.put("java.class.path", cp);
597 h.put(FOUNDCLASSES + "java.class.path", classpathJars);
604 h.put("sun.boot.class.path", othercp);
609 h.put(FOUNDCLASSES + "sun.boot.class.path", classpathJars);
618 h.put("java.ext.dirs", othercp)
    [all...]
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 81 put("aa", new LinkedHashMap<String, DisplayModifier>() {
83 put("true", new DisplayModifier() {
89 put("false", new DisplayModifier() {
97 put("style", new LinkedHashMap<String, DisplayModifier>() {
99 put("fill", new DisplayModifier() {
105 put("stroke", new DisplayModifier() {
113 put("fillAndStroke", new DisplayModifier() {
124 put("strokeWidth", new LinkedHashMap<String, DisplayModifier>() {
126 put("hair", new DisplayModifier() {
134 put("0.3", new DisplayModifier()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockUiProvider.java 72 resultMap.put(inboxfolderDetailsMap.get(FolderColumns.URI).toString(),
77 resultMap.put(((Uri) accountDetailsMap.get(AccountColumns.URI)).toString(),
82 resultMap.put(secondFolderDetailsMap.get(FolderColumns.URI).toString(),
85 resultMap.put(
96 resultMap.put(inboxfolderDetailsMap.get(FolderColumns.CONVERSATION_LIST_URI).toString(),
101 resultMap.put(message0.get(MessageColumns.URI).toString(), ImmutableList.of(message0));
102 resultMap.put(conversations.get(0).get(ConversationColumns.MESSAGE_LIST_URI).toString(),
104 resultMap.put(message0.get(MessageColumns.ATTACHMENT_LIST_URI).toString(),
108 resultMap.put(message1.get(MessageColumns.URI).toString(), ImmutableList.of(message1));
111 resultMap.put(message1a.get(MessageColumns.URI).toString(), ImmutableList.of(message1a))
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MessageModification.java 41 values.put(MessageColumns.SUBJECT, subject);
51 values.put(MessageColumns.TO, TextUtils.join(UIProvider.EMAIL_SEPARATOR, toAddresses));
61 values.put(MessageColumns.CC, TextUtils.join(UIProvider.EMAIL_SEPARATOR, ccAddresses));
71 values.put(MessageColumns.BCC, TextUtils.join(UIProvider.EMAIL_SEPARATOR, bccAddresses));
82 values.put(MessageColumns.CUSTOM_FROM_ADDRESS, customFromAddress);
93 values.put(MessageColumns.DRAFT_TYPE, DraftType.FORWARD);
104 values.put(MessageColumns.APPEND_REF_MESSAGE_CONTENT, includeQuotedText ? 1 : 0);
114 values.put(MessageColumns.BODY_TEXT, body);
124 values.put(MessageColumns.BODY_HTML, body);
134 values.put(MessageColumns.DRAFT_TYPE, draftType)
    [all...]
  /system/core/libutils/tests/
LruCache_test.cpp 126 cache.put(1, "one");
127 cache.put(2, "two");
128 cache.put(3, "three");
138 cache.put(1, "one");
139 cache.put(2, "two");
140 cache.put(3, "three");
150 cache.put(1, "one");
151 cache.put(2, "two");
152 cache.put(3, "three");
163 cache.put(1, "one")
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
TreeMapTest.java 38 map.put("A", "a");
39 map.put("B", "b");
40 map.put("C", "c");
63 map.put("A", "a");
64 map.put("B", "b");
65 map.put("C", "c");
66 map.put("D", "d");
92 map.put("A", "a");
93 map.put("B", "b");
94 map.put("C", "c")
208 map.subMap("a", "z").put(null, "b"); method
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableListMultimapTest.java 45 .put(Maps.immutableEntry("one", 1))
53 builder.put(Maps.immutableEntry("one", (Integer) null));
58 builder.put(Maps.immutableEntry((String) null, 1));
82 builder.put(entry);
113 toPut.put("foo", 1);
114 toPut.put("bar", 4);
115 toPut.put("foo", 2);
116 toPut.put("foo", 3);
118 moreToPut.put("foo", 6);
119 moreToPut.put("bar", 5)
    [all...]
SubMapMultimapAsMapImplementsMapTest.java 43 multimap.put("a", -1);
44 multimap.put("a", -3);
45 multimap.put("z", -2);
55 multimap.put("f", 1);
56 multimap.put("f", 2);
57 multimap.put("g", 3);
58 multimap.put("h", 4);
  /packages/providers/DownloadProvider/tests/public_api_access/src/com/android/providers/downloads/public_api_access_tests/
PublicApiAccessTest.java 71 values.put(Downloads.Impl.COLUMN_TITLE, "foo");
72 values.put(Downloads.Impl.COLUMN_DESCRIPTION, "foo");
73 values.put(Downloads.Impl.COLUMN_MIME_TYPE, "foo");
74 values.put(Downloads.Impl.COLUMN_NOTIFICATION_PACKAGE, "foo");
75 values.put(Downloads.Impl.COLUMN_ALLOWED_NETWORK_TYPES, 0);
76 values.put(Downloads.Impl.COLUMN_ALLOW_ROAMING, true);
77 values.put(Downloads.Impl.RequestHeaders.INSERT_KEY_PREFIX + "0", "X-Some-Header: value");
83 values.put(Downloads.Impl.COLUMN_URI, "foo");
84 values.put(Downloads.Impl.COLUMN_DESTINATION,
86 values.put(Downloads.Impl.COLUMN_VISIBILITY, Downloads.Impl.VISIBILITY_VISIBLE)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
SecretKeyUtil.java 18 keySizes.put(PKCSObjectIdentifiers.des_EDE3_CBC.getId(), Integers.valueOf(192));
20 keySizes.put(NISTObjectIdentifiers.id_aes128_CBC, Integers.valueOf(128));
21 keySizes.put(NISTObjectIdentifiers.id_aes192_CBC, Integers.valueOf(192));
22 keySizes.put(NISTObjectIdentifiers.id_aes256_CBC, Integers.valueOf(256));
24 keySizes.put(NTTObjectIdentifiers.id_camellia128_cbc, Integers.valueOf(128));
25 keySizes.put(NTTObjectIdentifiers.id_camellia192_cbc, Integers.valueOf(192));
26 keySizes.put(NTTObjectIdentifiers.id_camellia256_cbc, Integers.valueOf(256));

Completed in 709 milliseconds

1 2 34 5 6 7 8 91011>>