Searched refs:keys (Results 76 - 100 of 124) sorted by relevance

12345

/packages/apps/Settings/tests/robotests/src/com/android/settings/search/
H A DDatabaseIndexingManagerTest.java189 new HashMap<>()/* Non-indexable keys */);
198 Set<String> keys = new HashSet<>();
199 keys.add(raw.key);
200 niks.put(raw.intentTargetPackage, keys);
211 new HashMap<>()/* Non-indexable keys */);
265 mManager.indexOneSearchIndexableData(mDb, localeStr, raw, null /* Non-indexable keys */);
293 String[] keys = {"brightness", "wallpaper"};
294 Map<String, Set<String>> niks = getNonIndexableKeys(keys);
989 Set<String> keys = new HashSet<>();
990 keys
1106 getNonIndexableKeys(String[] keys) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java428 public boolean areAllEmpty(ContentValues values, String[] keys) { argument
429 for (String key : keys) {
438 * Returns true if a value (possibly null) is specified for at least one of the supplied keys.
440 public boolean areAnySpecified(ContentValues values, String[] keys) { argument
441 for (String key : keys) {
/packages/apps/Settings/src/com/android/settings/
H A DSecuritySettings.java954 final List<String> keys = super.getNonIndexableKeys(context);
962 keys.add(KEY_SIM_LOCK);
967 keys.add(KEY_TRUST_AGENT);
968 keys.add(KEY_MANAGE_TRUST_AGENTS);
973 keys.add(KEY_ENTERPRISE_PRIVACY);
977 keys.add(KEY_MANAGE_DEVICE_ADMIN);
979 keys.add(KEY_LOCATION);
980 keys.add(KEY_ENCRYPTION_AND_CREDENTIALS);
981 keys.add(KEY_SCREEN_PINNING);
982 keys
[all...]
/packages/apps/Car/libs/
H A Dresource_generator.py180 for modifier in resource_values.keys():
250 if len(var_values.keys()) > 0:
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
H A DDefaultAppSettingsTest.java167 final List<String> keys = XmlTestUtils.getKeysFromPreferenceXml(context, xmlId);
169 assertThat(keys).containsAllIn(niks);
/packages/apps/Settings/tests/robotests/src/com/android/settings/language/
H A DLanguageAndInputSettingsTest.java172 final List<String> keys = XmlTestUtils.getKeysFromPreferenceXml(context, xmlId);
174 assertThat(keys).containsAllIn(niks);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
H A DGeneralPrefsFragment.java246 private void listenForPreferenceChange(String... keys) { argument
247 for (String key : keys) {
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DFragmentStatePagerAdapter2.java192 Iterable<String> keys = bundle.keySet();
193 for (String key: keys) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
H A DAbstractLayoutBase.java59 // Helper method to create an {@link ExpectedKey} object that has new "more keys".
66 // The additional more keys can be defined independently from other more keys. The position of
67 // the additional more keys in the long press popup keyboard can be controlled by specifying
68 // special marker "%" in the usual more keys definitions.
104 public static ExpectedKey[] joinKeys(final Object ... keys) { argument
105 return ExpectedKeyboardBuilder.joinKeys(keys);
136 // Functional keys.
170 // Punctuation more keys for phone form factor.
174 // Punctuation more keys fo
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
H A DLayoutTestsBase.java80 // Helper method to create an {@link ExpectedKey} object that has new "more keys".
110 static ExpectedKey[] joinKeys(final Object ... keys) { argument
111 return AbstractLayoutBase.joinKeys(keys);
166 // Test both keyboards' keys have the same visual outlook and key output.
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactLookupKeyTest.java225 String[] keys) {
234 assertEquals(keys[i], segment.key);
224 assertLookupKey(String lookupKey, int[] accountHashCodes, int[] types, String[] keys) argument
/packages/services/Car/car-lib/src/android/car/media/
H A DCarAudioManager.java394 * Return array of keys supported in this system.
414 * Only keys listed from {@link #getParameterKeys()} should be used.
432 * Only keys listed from {@link #getParameterKeys()} should be used.
433 * @param keys Keys to get value. Format is key1;key2;...
439 public String getParameters(String keys) throws CarNotConnectedException { argument
441 return mService.getParameters(keys);
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothSettings.java440 List<String> keys = super.getNonIndexableKeys(context);
443 keys.add(DATA_KEY_REFERENCE);
445 return keys;
/packages/apps/Contacts/src/com/android/contacts/model/
H A DValuesDelta.java290 * Return set of all keys defined through this object.
293 final HashSet<String> keys = Sets.newHashSet();
297 keys.add(entry.getKey());
303 keys.add(entry.getKey());
307 return keys;
392 * object, and any defined keys have equal values.
H A DContactLoader.java418 final Iterator keys = items.keys();
419 while (keys.hasNext()) {
420 final String mimetype = (String) keys.next();
447 final Iterator iterator = item.keys();
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntityDelta.java672 * Return set of all keys defined through this object.
675 final HashSet<String> keys = Sets.newHashSet();
679 keys.add(entry.getKey());
685 keys.add(entry.getKey());
689 return keys;
769 * object, and any defined keys have equal values.
/packages/services/Car/tools/io_analysis/
H A Dcheck_verity.py122 sizes = sorted(self.block_size_vs_reads_histogram.keys())
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dvaluetest.cpp1115 const char keys[][2] = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j" }; local
1117 x.AddMember(keys[i], Value(kArrayType).PushBack(i, allocator), allocator);
1124 EXPECT_FALSE(x.HasMember(keys[0]));
1129 EXPECT_STREQ(itr->name.GetString(), keys[i]);
1135 EXPECT_FALSE(x.HasMember(keys[9]));
1140 EXPECT_STREQ(itr->name.GetString(), keys[i]);
1146 EXPECT_FALSE(x.HasMember(keys[5]));
1152 EXPECT_STREQ(itr->name.GetString(), keys[i]);
1163 x.AddMember(keys[i], Value(kArrayType).PushBack(i, allocator), allocator);
1174 EXPECT_EQ(i, x[keys[
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
H A DStorageFragment.java222 private static long totalValues(HashMap<String, Long> map, String... keys) { argument
225 for (String key : keys) {
/packages/services/Car/service/src/com/android/car/
H A DGarageModeService.java360 private void readFromSettingsLocked(String... keys) { argument
361 for (String key : keys) {
/packages/apps/Dialer/java/com/android/contacts/common/model/
H A DContactLoader.java179 final Iterator keys = items.keys();
180 while (keys.hasNext()) {
181 final String mimetype = (String) keys.next();
206 final Iterator iterator = item.keys();
/packages/experimental/procstatlog/
H A Dprocstatreport.py411 for num, interface in enumerate(sorted(interface_rx.keys())):
522 for num, device in enumerate(sorted(disk_reads.keys())):
523 if [d for d in disk_reads.keys()
/packages/services/Telephony/src/com/android/services/telephony/
H A DImsConference.java198 public void onExtrasRemoved(Connection c, List<String> keys) {
199 Log.v(this, "onExtrasRemoved: c=" + c + " key=" + keys);
200 removeExtras(keys);
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DIndicatorControlWheel.java158 boolean isZoomSupported, String[] keys, String[] otherSettingKeys) {
180 addControls(keys, otherSettingKeys);
157 initialize(Context context, PreferenceGroup group, boolean isZoomSupported, String[] keys, String[] otherSettingKeys) argument
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
H A DStorageItemPreferenceController.java301 * Returns a list of keys used by this preference controller.
408 String... keys) {
412 for (String key : keys) {
407 totalValues(StorageMeasurement.MeasurementDetails details, int userId, String... keys) argument

Completed in 983 milliseconds

12345