/packages/apps/Dialer/java/com/android/voicemail/impl/ |
D | OmtpVvmCarrierConfigHelper.java | 209 Set<String> names = getCarrierVvmPackageNames(overrideConfig); in getCarrierVvmPackageNamesWithoutValidation() local 210 if (names != null) { in getCarrierVvmPackageNamesWithoutValidation() 211 return names; in getCarrierVvmPackageNamesWithoutValidation() 213 names = getCarrierVvmPackageNames(carrierConfig); in getCarrierVvmPackageNamesWithoutValidation() 214 if (names != null) { in getCarrierVvmPackageNamesWithoutValidation() 215 return names; in getCarrierVvmPackageNamesWithoutValidation() 230 Set<String> names = new ArraySet<>(); in getCarrierVvmPackageNames() local 232 names.add(bundle.getString(KEY_CARRIER_VVM_PACKAGE_NAME_STRING)); in getCarrierVvmPackageNames() 237 Collections.addAll(names, vvmPackages); in getCarrierVvmPackageNames() 240 if (names.isEmpty()) { in getCarrierVvmPackageNames() [all …]
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ |
D | ResultActivity.java | 114 String[] names = new String[columnNames.length]; in addRowsForQuery() local 115 System.arraycopy(columnNames, 0, names, 0, columnNames.length); in addRowsForQuery() 116 Arrays.sort(names); in addRowsForQuery() 117 for (int i = 0; i < names.length; i++) { in addRowsForQuery() 118 int index = cursor.getColumnIndex(names[i]); in addRowsForQuery() 120 addRow(names[i], value); in addRowsForQuery() 122 if (names[i].equals(Contacts.PHOTO_ID) && !TextUtils.isEmpty(value)) { in addRowsForQuery()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | ContactsManager.java | 186 final HashSet<String> names = new HashSet<>(); in getValidNames() local 187 for (int i = 0; i < contacts.size() && names.size() < MAX_CONTACT_NAMES; ++i) { in getValidNames() 188 names.add(contacts.get(i).mName); in getValidNames() 190 return new ArrayList<>(names); in getValidNames() 234 public void updateLocalState(final ArrayList<String> names) { in updateLocalState() argument 236 mHashCodeAtLastRebuild.set(names.hashCode()); in updateLocalState()
|
D | ContactsContentObserver.java | 122 final ArrayList<String> names = mManager.getValidNames(Contacts.CONTENT_URI); in haveContentsChanged() local 123 if (names.hashCode() != mManager.getHashCodeAtLastRebuild()) { in haveContentsChanged()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/dirlist/ |
D | DirectoryAddonsAdapterTest.java | 84 String[] names = {"Trader Joe's", "Alphabeta", "Lucky", "Vons", "Gelson's"}; in testItemCount_allDirs() local 85 for (String name : names) { in testItemCount_allDirs() 94 String[] names = {"123.txt", "234.jpg", "abc.pdf"}; in testItemCount_allFiles() local 95 for (String name : names) { in testItemCount_allFiles() 103 String[] names = {"123.txt", "234.jpg", "abc.pdf"}; in testAddsInfoMessage_WithDirectoryChildren() local 104 for (String name : names) { in testAddsInfoMessage_WithDirectoryChildren()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/ |
D | SortingCursorWrapperTest.java | 137 List<String> names = new ArrayList<>(); in testSort_names_ascending() local 148 names.add(getCursorString(cursor, Document.COLUMN_DISPLAY_NAME)); in testSort_names_ascending() 152 for (int i = 0; i < names.size()-1; ++i) { in testSort_names_ascending() 153 assertTrue(Shared.compareToIgnoreCaseNullable(names.get(i), names.get(i+1)) <= 0); in testSort_names_ascending() 161 List<String> names = new ArrayList<>(); in testSort_names_descending() local 172 names.add(getCursorString(cursor, Document.COLUMN_DISPLAY_NAME)); in testSort_names_descending() 176 for (int i = 0; i < names.size()-1; ++i) { in testSort_names_descending() 177 assertTrue(Shared.compareToIgnoreCaseNullable(names.get(i), names.get(i+1)) >= 0); in testSort_names_descending()
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
D | ContactMultiDeletionInteraction.java | 203 final HashSet<String> names = Sets.newHashSet(); in onLoadFinished() local 220 names.add(name); in onLoadFinished() 259 final String[] namesArray = names.toArray(new String[names.size()]); in onLoadFinished() 313 protected void doDeleteContact(long[] contactIds, final String[] names) { in doDeleteContact() argument 315 contactIds, names)); in doDeleteContact()
|
/packages/apps/Dialer/java/com/android/dialer/searchfragment/common/ |
D | QueryFilteringUtil.java | 80 String[] names = name.toLowerCase().split("\\s"); in nameMatchesT9Query() local 81 for (int i = 0; i < names.length && queryIndex < query.length(); i++) { in nameMatchesT9Query() 82 if (TextUtils.isEmpty(names[i])) { in nameMatchesT9Query() 86 if (getDigit(names[i].charAt(0), context) == query.charAt(queryIndex)) { in nameMatchesT9Query()
|
/packages/apps/Car/Settings/src/com/android/car/settings/units/ |
D | UnitsBasePreferenceController.java | 142 String[] names = new String[mSupportedUnits.length]; in getEntriesOfSupportedUnits() local 143 for (int i = 0; i < names.length; i++) { in getEntriesOfSupportedUnits() 145 names[i] = generateEntryStringFromUnit(unit); in getEntriesOfSupportedUnits() 147 return names; in getEntriesOfSupportedUnits()
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/ |
D | TestJobListener.java | 68 public void assertFilesFailed(List<String> names) { in assertFilesFailed() argument 73 assertEquals(finished.failedDocs.size(), names.size()); in assertFilesFailed() 74 for (String name : names) { in assertFilesFailed()
|
/packages/apps/CarrierConfig/tests/src/com/android/carrierconfig/ |
D | CarrierConfigTest.java | 272 Set<String> names = new HashSet<>(); in getCarrierConfigXmlNames() local 274 names.addAll(getCarrierConfigXmlNames(CarrierConfigManager.class)); in getCarrierConfigXmlNames() 278 names.addAll(getCarrierConfigXmlNames(nested)); in getCarrierConfigXmlNames() 281 return names; in getCarrierConfigXmlNames()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
D | EventLogTags.logtags | 21 # @param enabled_sources A pipe-separated list of source names, ordered by source ranking. 29 # @param A pipe-separated list of suggestion log names. 30 # TODO: define format of suggestion log names
|
/packages/apps/Settings/src/com/android/settings/security/trustagent/ |
D | TrustAgentsPreferenceController.java | 164 final String[] names = TextUtils.split(pref.getKey(), "/"); in removeUselessExistingPreferences() local 165 final ComponentName componentName = new ComponentName(names[0], names[1]); in removeUselessExistingPreferences()
|
/packages/apps/Car/LensPicker/src/com/android/support/car/lenspicker/ |
D | LensPickerActivity.java | 188 String names = ""; in printResolveInfo() local 190 names += " " + LensPickerUtils.getPackageName(info); in printResolveInfo() 192 Log.d(TAG, title + " resolve info name: " + names); in printResolveInfo()
|
/packages/modules/Cronet/api/ |
D | lint-baseline.txt | 3 …Acronyms should not be capitalized in method names: was `createURLStreamHandlerFactory`, should th… 15 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method org.chromium.net.C… 17 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method org.chromium.net.C… 19 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method org.chromium.net.C… 21 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method org.chromium.net.C… 23 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method org.chromium.net.C… 25 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method org.chromium.net.U… 27 …Builder methods names should use setFoo() / addFoo() / clearFoo() style: method org.chromium.net.U…
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | ContactSaveService.java | 1185 long[] contactIds, final String[] names) { in createDeleteMultipleContactsIntent() argument 1189 serviceIntent.putExtra(ContactSaveService.EXTRA_DISPLAY_NAME_ARRAY, names); in createDeleteMultipleContactsIntent() 1213 final String[] names = intent.getStringArrayExtra( in deleteMultipleContacts() local 1216 if (contactIds.length != names.length || names.length == 0) { in deleteMultipleContacts() 1219 } else if (names.length == 1) { in deleteMultipleContacts() 1221 R.string.contacts_deleted_one_named_toast, (Object[]) names); in deleteMultipleContacts() 1222 } else if (names.length == 2) { in deleteMultipleContacts() 1224 R.string.contacts_deleted_two_named_toast, (Object[]) names); in deleteMultipleContacts() 1227 R.string.contacts_deleted_many_named_toast, (Object[]) names); in deleteMultipleContacts()
|
/packages/modules/DnsResolver/ |
D | NOTICE | 12 3. Neither the name of the project nor the names of its contributors 113 3. Neither the name of the University nor the names of its contributors 146 4. Neither the name of the University nor the names of its contributors 175 3. Neither the name of the University nor the names of its contributors 226 4. Neither the name of the University nor the names of its contributors 259 4. Neither the name of the University nor the names of its contributors 288 3. Neither the name of the University nor the names of its contributors
|
/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/ |
D | HttpFetcher.java | 178 final Set<String> names = uri.getQueryParameterNames(); in obfuscateUrl() local 179 for (String name : names) { in obfuscateUrl()
|
/packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
D | MosaicRendererSurfaceView.java | 259 String[] names = { in printConfig() local 297 String name = names[i]; in printConfig()
|
/packages/apps/LegacyCamera/jni/feature_mos/doc/ |
D | feature_mos_API_doxyfile | 139 # (but less readable) file names. This can be useful is your file systems 140 # doesn't support long names like on DOS, Mac, or CD-ROM. 196 # For instance, some of the names that are used will be different. The list 381 # file names in lower-case letters. If set to YES upper-case letters are also 382 # allowed. This is useful if you have classes or files whose names only differ 383 # in case and if your file system supports case sensitive file names. Windows 430 # hierarchy of group names into alphabetical order. If set to NO (the default) 431 # the group names will appear in their defined order. 436 # sorted by fully-qualified names, including namespaces. If set to 583 # documented source files. You may enter file names like "myfile.cpp" or [all …]
|
/packages/apps/LegacyCamera/jni/feature_stab/doc/ |
D | dbreg_API_doxyfile | 139 # (but less readable) file names. This can be useful is your file systems 140 # doesn't support long names like on DOS, Mac, or CD-ROM. 196 # For instance, some of the names that are used will be different. The list 381 # file names in lower-case letters. If set to YES upper-case letters are also 382 # allowed. This is useful if you have classes or files whose names only differ 383 # in case and if your file system supports case sensitive file names. Windows 430 # hierarchy of group names into alphabetical order. If set to NO (the default) 431 # the group names will appear in their defined order. 436 # sorted by fully-qualified names, including namespaces. If set to 583 # documented source files. You may enter file names like "myfile.cpp" or [all …]
|
/packages/services/Car/car_product/sepolicy/public/ |
D | file.te | 4 # partition names for their devices.
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | ConnectionServiceFixture.java | 605 List<ComponentName> names, in sendQueryRemoteConnectionServices() 608 TestCase.assertEquals(names.size(), services.size()); in sendQueryRemoteConnectionServices() 609 mRemoteConnectionServiceNames.addAll(names); in sendQueryRemoteConnectionServices()
|
/packages/apps/Settings/tests/robotests/ |
D | README.md | 24 multiple file names, all of them will be executed.
|
/packages/services/Telecomm/proto/ |
D | telecom.proto | 285 // A list of the package names of connection services used. 297 // A map from the names of latency timings to the timings.
|