Home
last modified time | relevance | path

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

12345678910>>...68

/packages/services/Car/tools/keventreader/client/src/com/android/car/keventreader/
DKeypressEvent.java26 put(0,"RESERVED");
27 put(1,"ESC");
28 put(2,"1");
29 put(3,"2");
30 put(4,"3");
31 put(5,"4");
32 put(6,"5");
33 put(7,"6");
34 put(8,"7");
35 put(9,"8");
[all …]
/packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
DTextUtilities.java60 ESCAPE_STRINGS.put("&nbsp", '\u00A0');
61 ESCAPE_STRINGS.put("&iexcl", '\u00A1');
62 ESCAPE_STRINGS.put("&cent", '\u00A2');
63 ESCAPE_STRINGS.put("&pound", '\u00A3');
64 ESCAPE_STRINGS.put("&curren", '\u00A4');
65 ESCAPE_STRINGS.put("&yen", '\u00A5');
66 ESCAPE_STRINGS.put("&brvbar", '\u00A6');
67 ESCAPE_STRINGS.put("&sect", '\u00A7');
68 ESCAPE_STRINGS.put("&uml", '\u00A8');
69 ESCAPE_STRINGS.put("&copy", '\u00A9');
[all …]
/packages/apps/DocumentsUI/src/com/android/documentsui/archives/
DMetadataReader.java73 TYPE_MAPPING.put(ExifInterface.TAG_ARTIST, TYPE_STRING); in TYPE_MAPPING.put()
74 TYPE_MAPPING.put(ExifInterface.TAG_BITS_PER_SAMPLE, TYPE_INT); in TYPE_MAPPING.put()
75 TYPE_MAPPING.put(ExifInterface.TAG_COMPRESSION, TYPE_INT); in TYPE_MAPPING.put()
76 TYPE_MAPPING.put(ExifInterface.TAG_COPYRIGHT, TYPE_STRING); in TYPE_MAPPING.put()
77 TYPE_MAPPING.put(ExifInterface.TAG_DATETIME, TYPE_STRING); in TYPE_MAPPING.put()
78 TYPE_MAPPING.put(ExifInterface.TAG_IMAGE_DESCRIPTION, TYPE_STRING); in TYPE_MAPPING.put()
79 TYPE_MAPPING.put(ExifInterface.TAG_IMAGE_LENGTH, TYPE_INT); in TYPE_MAPPING.put()
80 TYPE_MAPPING.put(ExifInterface.TAG_IMAGE_WIDTH, TYPE_INT); in TYPE_MAPPING.put()
81 TYPE_MAPPING.put(ExifInterface.TAG_JPEG_INTERCHANGE_FORMAT, TYPE_INT); in TYPE_MAPPING.put()
82 TYPE_MAPPING.put(ExifInterface.TAG_JPEG_INTERCHANGE_FORMAT_LENGTH, TYPE_INT); in TYPE_MAPPING.put()
[all …]
/packages/services/Car/service/src/com/android/car/hal/
DPropertyHalServiceIds.java49 mProps.put(VehicleProperty.DOOR_POS, new Pair<>( in PropertyHalServiceIds()
52 mProps.put(VehicleProperty.DOOR_MOVE, new Pair<>( in PropertyHalServiceIds()
55 mProps.put(VehicleProperty.DOOR_LOCK, new Pair<>( in PropertyHalServiceIds()
58 mProps.put(VehicleProperty.MIRROR_Z_POS, new Pair<>( in PropertyHalServiceIds()
61 mProps.put(VehicleProperty.MIRROR_Z_MOVE, new Pair<>( in PropertyHalServiceIds()
64 mProps.put(VehicleProperty.MIRROR_Y_POS, new Pair<>( in PropertyHalServiceIds()
67 mProps.put(VehicleProperty.MIRROR_Y_MOVE, new Pair<>( in PropertyHalServiceIds()
70 mProps.put(VehicleProperty.MIRROR_LOCK, new Pair<>( in PropertyHalServiceIds()
73 mProps.put(VehicleProperty.MIRROR_FOLD, new Pair<>( in PropertyHalServiceIds()
76 mProps.put(VehicleProperty.SEAT_MEMORY_SELECT, new Pair<>( in PropertyHalServiceIds()
[all …]
/packages/apps/Contacts/tests/src/com/android/contacts/model/dataitem/
DDataItemTests.java60 mValues1.put(Data._ID, 1); in setUp()
61 mValues2.put(Data._ID, 2); in setUp()
62 mValues3.put(Data._ID, 3); in setUp()
63 mValues4.put(Data._ID, 4); in setUp()
80 mValues1.put(Data.IS_SUPER_PRIMARY, 1); in testDataItemCollapsing_genericDataItemFields()
81 mValues2.put(Data.IS_PRIMARY, 0); in testDataItemCollapsing_genericDataItemFields()
90 mValues1.put(kind.typeColumn, 2); in testDataItemCollapsing_genericDataItemFields()
91 mValues2.put(kind.typeColumn, 1); in testDataItemCollapsing_genericDataItemFields()
105 mValues1.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in testDataItemCollapsing_email()
106 mValues2.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in testDataItemCollapsing_email()
[all …]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DLegacyContactsProviderTest.java72 ret.put(People.TIMES_CONTACTED, 0); in noStats()
73 ret.put(People.LAST_TIME_CONTACTED, 0); in noStats()
115 values.put(People.NAME, "John Doe"); in testPeopleDelete()
132 values.put(People.NAME, "Deer Doe"); in testPeopleFilter()
136 values.put(People.NAME, "Dear Dough"); in testPeopleFilter()
140 values.put(People.NAME, "D.R. Dauwe"); in testPeopleFilter()
151 values.put(People.NAME, "John Doe"); in testDefaultDisplayName()
163 values.put(Organizations.ISPRIMARY, 1); in testPrimaryOrganization()
164 values.put(Organizations.COMPANY, "Google"); in testPrimaryOrganization()
165 values.put(Organizations.TYPE, Organizations.TYPE_WORK); in testPrimaryOrganization()
[all …]
DCallLogProviderTest.java96 values.put(Calls.COUNTRY_ISO, "us"); in testInsert_RegularCallRecord()
112 values.put(Calls.TYPE, Calls.VOICEMAIL_TYPE); in testInsert_VoicemailCallRecord()
113 values.put(Calls.VOICEMAIL_URI, "content://foo/voicemail/2"); in testInsert_VoicemailCallRecord()
134 values.put(Calls.TYPE, Calls.OUTGOING_TYPE); in testUpdate()
135 values.put(Calls.NUMBER, "1-800-263-7643"); in testUpdate()
136 values.put(Calls.NUMBER_PRESENTATION, Calls.PRESENTATION_ALLOWED); in testUpdate()
137 values.put(Calls.DATE, 2000); in testUpdate()
138 values.put(Calls.DURATION, 40); in testUpdate()
139 values.put(Calls.CACHED_NAME, "1-800-GOOG-411"); in testUpdate()
140 values.put(Calls.CACHED_NUMBER_TYPE, Phone.TYPE_CUSTOM); in testUpdate()
[all …]
DContactsProvider2Test.java971 values.put(RawContacts.ACCOUNT_NAME, "a"); in testRawContactsInsert()
972 values.put(RawContacts.ACCOUNT_TYPE, "b"); in testRawContactsInsert()
973 values.put(RawContacts.DATA_SET, "ds"); in testRawContactsInsert()
974 values.put(RawContacts.SOURCE_ID, "c"); in testRawContactsInsert()
975 values.put(RawContacts.VERSION, 42); in testRawContactsInsert()
976 values.put(RawContacts.DIRTY, 1); in testRawContactsInsert()
977 values.put(RawContacts.DELETED, 1); in testRawContactsInsert()
978 values.put(RawContacts.AGGREGATION_MODE, RawContacts.AGGREGATION_MODE_DISABLED); in testRawContactsInsert()
979 values.put(RawContacts.CUSTOM_RINGTONE, "d"); in testRawContactsInsert()
980 values.put(RawContacts.SEND_TO_VOICEMAIL, 1); in testRawContactsInsert()
[all …]
DVoicemailProviderTest.java177 values.put(Voicemails.NUMBER, "1-800-263-7643"); in testUpdate()
178 values.put(Voicemails.DATE, 2000); in testUpdate()
179 values.put(Voicemails.DURATION, 40); in testUpdate()
180 values.put(Voicemails.TRANSCRIPTION, "Testing 123"); in testUpdate()
181 values.put(Voicemails.STATE, 2); in testUpdate()
182 values.put(Voicemails.HAS_CONTENT, 1); in testUpdate()
183 values.put(Voicemails.SOURCE_DATA, "foo"); in testUpdate()
184 values.put(Voicemails.PHONE_ACCOUNT_COMPONENT_NAME, "dummy_name"); in testUpdate()
185 values.put(Voicemails.PHONE_ACCOUNT_ID, "dummy_account"); in testUpdate()
186 values.put(Voicemails.BACKED_UP, 1); in testUpdate()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
DMockUiProvider.java72 resultMap.put(inboxfolderDetailsMap.get(FolderColumns.URI).toString(), in initializeAccount()
77 resultMap.put(((Uri) accountDetailsMap.get(AccountColumns.URI)).toString(), in initializeAccount()
82 resultMap.put(secondFolderDetailsMap.get(FolderColumns.URI).toString(), in initializeAccount()
85 resultMap.put( in initializeAccount()
96 resultMap.put(inboxfolderDetailsMap.get(FolderColumns.CONVERSATION_LIST_URI).toString(), in initializeAccount()
101 resultMap.put(message0.get(MessageColumns.URI).toString(), ImmutableList.of(message0)); in initializeAccount()
102 resultMap.put(conversations.get(0).get(ConversationColumns.MESSAGE_LIST_URI).toString(), in initializeAccount()
104 resultMap.put(message0.get(MessageColumns.ATTACHMENT_LIST_URI).toString(), in initializeAccount()
108 resultMap.put(message1.get(MessageColumns.URI).toString(), ImmutableList.of(message1)); in initializeAccount()
111 resultMap.put(message1a.get(MessageColumns.URI).toString(), ImmutableList.of(message1a)); in initializeAccount()
[all …]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
DStringUtil.java999 ESCAPE_STRINGS.put("&nbsp", '\u00A0');
1000 ESCAPE_STRINGS.put("&iexcl", '\u00A1');
1001 ESCAPE_STRINGS.put("&cent", '\u00A2');
1002 ESCAPE_STRINGS.put("&pound", '\u00A3');
1003 ESCAPE_STRINGS.put("&curren", '\u00A4');
1004 ESCAPE_STRINGS.put("&yen", '\u00A5');
1005 ESCAPE_STRINGS.put("&brvbar", '\u00A6');
1006 ESCAPE_STRINGS.put("&sect", '\u00A7');
1007 ESCAPE_STRINGS.put("&uml", '\u00A8');
1008 ESCAPE_STRINGS.put("&copy", '\u00A9');
[all …]
/packages/apps/TV/tests/common/src/com/android/tv/testing/
DFakeTvProvider.java180 sChannelProjectionMap.put(Channels._ID, CHANNELS_TABLE + "." + Channels._ID); in sChannelProjectionMap.put()
181 sChannelProjectionMap.put( in sChannelProjectionMap.put()
183 sChannelProjectionMap.put( in sChannelProjectionMap.put()
185 sChannelProjectionMap.put( in sChannelProjectionMap.put()
187 sChannelProjectionMap.put( in sChannelProjectionMap.put()
189 sChannelProjectionMap.put( in sChannelProjectionMap.put()
192 sChannelProjectionMap.put( in sChannelProjectionMap.put()
195 sChannelProjectionMap.put( in sChannelProjectionMap.put()
197 sChannelProjectionMap.put( in sChannelProjectionMap.put()
200 sChannelProjectionMap.put( in sChannelProjectionMap.put()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAppParams.java610 appParamBuf.put((byte) MAX_LIST_COUNT); in encodeParams()
611 appParamBuf.put((byte) MAX_LIST_COUNT_LEN); in encodeParams()
615 appParamBuf.put((byte) START_OFFSET); in encodeParams()
616 appParamBuf.put((byte) START_OFFSET_LEN); in encodeParams()
620 appParamBuf.put((byte) FILTER_MESSAGE_TYPE); in encodeParams()
621 appParamBuf.put((byte) FILTER_MESSAGE_TYPE_LEN); in encodeParams()
622 appParamBuf.put((byte) getFilterMessageType()); in encodeParams()
625 appParamBuf.put((byte) FILTER_PERIOD_BEGIN); in encodeParams()
626 appParamBuf.put((byte) getFilterPeriodBeginString().getBytes("UTF-8").length); in encodeParams()
627 appParamBuf.put(getFilterPeriodBeginString().getBytes("UTF-8")); in encodeParams()
[all …]
/packages/providers/TvProvider/src/com/android/providers/tv/
DTvProvider.java180 sChannelProjectionMap.put(Channels._ID, CHANNELS_TABLE + "." + Channels._ID); in initProjectionMaps()
181 sChannelProjectionMap.put(Channels._COUNT, COUNT_STAR); in initProjectionMaps()
182 sChannelProjectionMap.put(Channels.COLUMN_PACKAGE_NAME, in initProjectionMaps()
184 sChannelProjectionMap.put(Channels.COLUMN_INPUT_ID, in initProjectionMaps()
186 sChannelProjectionMap.put(Channels.COLUMN_TYPE, in initProjectionMaps()
188 sChannelProjectionMap.put(Channels.COLUMN_SERVICE_TYPE, in initProjectionMaps()
190 sChannelProjectionMap.put(Channels.COLUMN_ORIGINAL_NETWORK_ID, in initProjectionMaps()
192 sChannelProjectionMap.put(Channels.COLUMN_TRANSPORT_STREAM_ID, in initProjectionMaps()
194 sChannelProjectionMap.put(Channels.COLUMN_SERVICE_ID, in initProjectionMaps()
196 sChannelProjectionMap.put(Channels.COLUMN_DISPLAY_NUMBER, in initProjectionMaps()
[all …]
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DCarrierProviderTest.java147 contentValues.put(CarrierDatabaseHelper.KEY_TYPE, dummy_type); in testInsertCertificates()
148 contentValues.put(CarrierDatabaseHelper.MCC, dummy_mcc); in testInsertCertificates()
149 contentValues.put(CarrierDatabaseHelper.MNC, dummy_mnc); in testInsertCertificates()
150 contentValues.put(CarrierDatabaseHelper.MVNO_TYPE, dummy_mvno_type); in testInsertCertificates()
151 contentValues.put(CarrierDatabaseHelper.MVNO_MATCH_DATA, dummy_mvno_match_data); in testInsertCertificates()
152 contentValues.put(CarrierDatabaseHelper.KEY_IDENTIFIER, dummy_key_identifier_data); in testInsertCertificates()
153 contentValues.put(CarrierDatabaseHelper.PUBLIC_KEY, dummy_key1.getBytes()); in testInsertCertificates()
154 contentValues.put(CarrierDatabaseHelper.EXPIRATION_TIME, dummy_key_expiration); in testInsertCertificates()
183 contentValues.put(CarrierDatabaseHelper.KEY_TYPE, dummy_type); in testUpdateCertificates()
184 contentValues.put(CarrierDatabaseHelper.MCC, dummy_mcc); in testUpdateCertificates()
[all …]
DTelephonyProviderTest.java247 contentValues.put(Carriers.APN, insertApn); in testBulkInsertCarriers()
248 contentValues.put(Carriers.NAME, insertName); in testBulkInsertCarriers()
249 contentValues.put(Carriers.CURRENT, insertCurrent); in testBulkInsertCarriers()
250 contentValues.put(Carriers.NUMERIC, insertNumeric); in testBulkInsertCarriers()
257 contentValues2.put(Carriers.APN, insertApn2); in testBulkInsertCarriers()
258 contentValues2.put(Carriers.NAME, insertName2); in testBulkInsertCarriers()
259 contentValues2.put(Carriers.CURRENT, insertCurrent2); in testBulkInsertCarriers()
260 contentValues2.put(Carriers.NUMERIC, insertNumeric2); in testBulkInsertCarriers()
321 cv.put(Telephony.CarrierId.All.MCCMNC, mccMnc); in testMccMncMigration()
332 cv.put(SubscriptionManager.MCC, mcc); in testMccMncMigration()
[all …]
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
DContextMenuUiTest.java47 menuItems.put("Share", false); in setUp()
48 menuItems.put("Open", false); in setUp()
49 menuItems.put("Open with", false); in setUp()
50 menuItems.put("Cut", false); in setUp()
51 menuItems.put("Copy", false); in setUp()
52 menuItems.put("Rename", false); in setUp()
53 menuItems.put("Delete", false); in setUp()
54 menuItems.put("Open in new window", false); in setUp()
55 menuItems.put("Paste into folder", false); in setUp()
56 menuItems.put("Select all", false); in setUp()
[all …]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
DExifInterface.java1670 getTagInfo().put(tagDef, ifdFlags << 24 | (tagType << 16) | defaultComponentCount); in setTagDefinition()
2084 mTagInfo.put(ExifInterface.TAG_MAKE, in initTagInfo()
2086 mTagInfo.put(ExifInterface.TAG_IMAGE_WIDTH, in initTagInfo()
2088 mTagInfo.put(ExifInterface.TAG_IMAGE_LENGTH, in initTagInfo()
2090 mTagInfo.put(ExifInterface.TAG_BITS_PER_SAMPLE, in initTagInfo()
2092 mTagInfo.put(ExifInterface.TAG_COMPRESSION, in initTagInfo()
2094 mTagInfo.put(ExifInterface.TAG_PHOTOMETRIC_INTERPRETATION, in initTagInfo()
2096 mTagInfo.put(ExifInterface.TAG_ORIENTATION, ifdFlags | ExifTag.TYPE_UNSIGNED_SHORT << 16 in initTagInfo()
2098 mTagInfo.put(ExifInterface.TAG_SAMPLES_PER_PIXEL, in initTagInfo()
2100 mTagInfo.put(ExifInterface.TAG_PLANAR_CONFIGURATION, in initTagInfo()
[all …]
/packages/apps/Messaging/src/com/android/messaging/util/exif/
DExifInterface.java1670 getTagInfo().put(tagDef, ifdFlags << 24 | (tagType << 16) | defaultComponentCount); in setTagDefinition()
2125 mTagInfo.put(ExifInterface.TAG_MAKE, in initTagInfo()
2127 mTagInfo.put(ExifInterface.TAG_IMAGE_WIDTH, in initTagInfo()
2129 mTagInfo.put(ExifInterface.TAG_IMAGE_LENGTH, in initTagInfo()
2131 mTagInfo.put(ExifInterface.TAG_BITS_PER_SAMPLE, in initTagInfo()
2133 mTagInfo.put(ExifInterface.TAG_COMPRESSION, in initTagInfo()
2135 mTagInfo.put(ExifInterface.TAG_PHOTOMETRIC_INTERPRETATION, in initTagInfo()
2137 mTagInfo.put(ExifInterface.TAG_ORIENTATION, ifdFlags | ExifTag.TYPE_UNSIGNED_SHORT << 16 in initTagInfo()
2139 mTagInfo.put(ExifInterface.TAG_SAMPLES_PER_PIXEL, in initTagInfo()
2141 mTagInfo.put(ExifInterface.TAG_PLANAR_CONFIGURATION, in initTagInfo()
[all …]
/packages/apps/Camera2/src/com/android/camera/exif/
DExifInterface.java1649 getTagInfo().put(tagDef, ifdFlags << 24 | (tagType << 16) | defaultComponentCount); in setTagDefinition()
2063 mTagInfo.put(ExifInterface.TAG_MAKE, in initTagInfo()
2065 mTagInfo.put(ExifInterface.TAG_IMAGE_WIDTH, in initTagInfo()
2067 mTagInfo.put(ExifInterface.TAG_IMAGE_LENGTH, in initTagInfo()
2069 mTagInfo.put(ExifInterface.TAG_BITS_PER_SAMPLE, in initTagInfo()
2071 mTagInfo.put(ExifInterface.TAG_COMPRESSION, in initTagInfo()
2073 mTagInfo.put(ExifInterface.TAG_PHOTOMETRIC_INTERPRETATION, in initTagInfo()
2075 mTagInfo.put(ExifInterface.TAG_ORIENTATION, ifdFlags | ExifTag.TYPE_UNSIGNED_SHORT << 16 in initTagInfo()
2077 mTagInfo.put(ExifInterface.TAG_SAMPLES_PER_PIXEL, in initTagInfo()
2079 mTagInfo.put(ExifInterface.TAG_PLANAR_CONFIGURATION, in initTagInfo()
[all …]
/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorMainPortal.java94 .put("Populate database", () -> SimulatorUtils.populateDatabase(context)) in buildMainPortal()
95 .put("Populate voicemail", () -> SimulatorUtils.populateVoicemail(context)) in buildMainPortal()
96 .put( in buildMainPortal()
99 .put( in buildMainPortal()
102 .put("Clean database", () -> SimulatorUtils.cleanDatabase(context)) in buildMainPortal()
103 .put("clear preferred SIM", () -> SimulatorUtils.clearPreferredSim(context)) in buildMainPortal()
104 .put("Sync voicemail", () -> SimulatorUtils.syncVoicemail(context)) in buildMainPortal()
105 .put("Share persistent log", () -> SimulatorUtils.sharePersistentLog(context)) in buildMainPortal()
106 .put( in buildMainPortal()
110 .put( in buildMainPortal()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DAnalytics.java61 put(LogUtils.Events.SET_SELECT_PHONE_ACCOUNT,
63 put(LogUtils.Events.REQUEST_HOLD, AnalyticsEvent.REQUEST_HOLD);
64 put(LogUtils.Events.REQUEST_UNHOLD, AnalyticsEvent.REQUEST_UNHOLD);
65 put(LogUtils.Events.SWAP, AnalyticsEvent.SWAP);
66 put(LogUtils.Events.SKIP_RINGING, AnalyticsEvent.SKIP_RINGING);
67 put(LogUtils.Events.CONFERENCE_WITH, AnalyticsEvent.CONFERENCE_WITH);
68 put(LogUtils.Events.SPLIT_FROM_CONFERENCE, AnalyticsEvent.SPLIT_CONFERENCE);
69 put(LogUtils.Events.SET_PARENT, AnalyticsEvent.SET_PARENT);
70 put(LogUtils.Events.MUTE, AnalyticsEvent.MUTE);
71 put(LogUtils.Events.UNMUTE, AnalyticsEvent.UNMUTE);
[all …]
/packages/services/BuiltInPrintService/src/com/android/bips/jni/
DMediaSizes.java67 sCodeToStringMap.put(2, LETTER);
68 sCodeToStringMap.put(3, LEGAL);
69 sCodeToStringMap.put(7, NA_GOVT_LETTER);
70 sCodeToStringMap.put(11, NA_LEDGER_11X17);
71 sCodeToStringMap.put(25, ISO_A5);
72 sCodeToStringMap.put(26, ISO_A4);
73 sCodeToStringMap.put(27, ISO_A3);
74 sCodeToStringMap.put(45, JIS_B5);
75 sCodeToStringMap.put(46, JIS_B4);
76 sCodeToStringMap.put(71, JPN_HAGAKI);
[all …]
/packages/apps/Settings/tests/uitests/src/com/android/settings/ui/
DSoundSettingsTest.java44 put("angler","Dione");
45 put("bullhead","Dione");
46 put("marlin","Spaceship");
47 put("sailfish","Spaceship");
48 put("walleye","Copycat");
49 put("taimen","Copycat");
53 put("angler","38");
54 put("bullhead","38");
55 put("marlin","37");
56 put("sailfish","37");
[all …]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
DResourceUtilsTests.java36 anyKeyValue.put("anyKey", "anyValue"); in testFindConstantForKeyValuePairsSimple()
60 keyValues.put(HARDWARE_KEY, "grouper"); in testFindConstantForKeyValuePairsSimple()
62 keyValues.put(HARDWARE_KEY, "mako"); in testFindConstantForKeyValuePairsSimple()
64 keyValues.put(HARDWARE_KEY, "manta"); in testFindConstantForKeyValuePairsSimple()
68 keyValues.put("hardware", "grouper"); in testFindConstantForKeyValuePairsSimple()
72 keyValues.put(HARDWARE_KEY, "MAKO"); in testFindConstantForKeyValuePairsSimple()
74 keyValues.put(HARDWARE_KEY, "mantaray"); in testFindConstantForKeyValuePairsSimple()
101 keyValues.put(HARDWARE_KEY, "grouper"); in testFindConstantForKeyValuePairsCombined()
102 keyValues.put(MODEL_KEY, "Nexus 7"); in testFindConstantForKeyValuePairsCombined()
103 keyValues.put(MANUFACTURER_KEY, "asus"); in testFindConstantForKeyValuePairsCombined()
[all …]

12345678910>>...68