/packages/services/Car/tools/emulator/ |
D | vhal_const_generate.py | 63 script_directory = os.path.join(os.path.dirname(os.path.abspath(__file__))) 64 parent_location = os.path.abspath(os.path.join(script_directory, '..')) 88 vhal_location = os.path.join(android_build_top, 'hardware','interfaces','automotive','vehicle') 90 vhal_location = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), 97 vhal_20_file = os.path.join(vhal_location, '2.0', 'types.hal') 98 vhal_21_file = os.path.join(vhal_location, '2.1', 'types.hal') 114 vhal_20_file = open(os.path.join(script_directory, 'vhal_consts_2_0.py'), 'w') 137 vhal_21_file = open(os.path.join(script_directory, 'vhal_consts_2_1.py'), 'w')
|
/packages/experimental/procstatlog/ |
D | procstatreport.py | 197 os.path.join(files_dir, "total_cpu.csv")) 239 os.path.join(files_dir, "cpu_speed.csv")) 270 os.path.join(files_dir, "context_switches.csv")) 335 os.path.join(files_dir, "total_faults.csv")) 366 os.path.join(files_dir, "binder_calls.csv")) 418 os.path.join(files_dir, "net%d.csv" % num)) 471 os.path.join(files_dir, "yaffs%d.csv" % num)) 532 os.path.join(files_dir, "disk%d.csv" % num)) 556 os.path.join(files_dir, "disk%d_time.csv" % num)) 588 os.path.join(files_dir, "proc%d.csv" % pid)) [all …]
|
/packages/apps/DocumentsUI/src/com/android/documentsui/queries/ |
D | CommandInterceptor.java | 91 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in quickViewer() 109 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in gestureScale() 122 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in jobProgressDialog() 135 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in archiveCreation() 148 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in docInspector() 161 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in docDetails() 177 + TextUtils.join(" ", tokens)); in forcePaging() 181 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in forcePaging()
|
/packages/apps/Gallery/tests/src/com/android/camera/ |
D | BitmapManagerUnitTests.java | 90 t.join(); in testDefaultAllowDecoding() 102 t.join(); in testCancelDecoding() 115 t.join(); in testAllowDecoding() 131 t1.join(); in testThreadDecoding() 132 t2.join(); in testThreadDecoding()
|
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/text/ |
D | TextUtils.java | 60 public static CharSequence join(Iterable<CharSequence> list) { in join() method in TextUtils 62 return join(delimiter, list); in join() 70 public static String join(CharSequence delimiter, Object[] tokens) { in join() method in TextUtils 89 public static String join(CharSequence delimiter, Iterable<?> tokens) { in join() method in TextUtils
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/ |
D | ComposeActivityTest.java | 160 String toAsString = TextUtils.join(",", to); in testRecipientsRefReplyAllCustomFromReplyTo() 197 String toAsString = TextUtils.join(",", to); in testRecipientsRefReplyAllOnlyAccount() 238 String toAsString = TextUtils.join(",", to); in testRecipientsRefReplyAllOnlyCustomFrom() 309 String toAsString = TextUtils.join(",", to); in testReplyToSelf() 334 String toAsString = TextUtils.join(",", to); in testReplyAllToSelf() 361 String toAsString = TextUtils.join(",", to); in testReplyAllToSelfWithCc() 364 String ccAsString = TextUtils.join(",", cc); in testReplyAllToSelfWithCc() 613 String toAsString = TextUtils.join(",", to); in brokentestRecipientsRefMessageReplyAllCustomFrom() 614 String ccAsString = TextUtils.join(",", cc); in brokentestRecipientsRefMessageReplyAllCustomFrom() 615 String bccAsString = TextUtils.join(",", bcc); in brokentestRecipientsRefMessageReplyAllCustomFrom() [all …]
|
/packages/apps/Messaging/tests/src/com/android/messaging/ |
D | FakeContentProvider.java | 63 return this.args.equals(TextUtils.join(";", args)); in match() 113 + " for " + (projection == null ? null : TextUtils.join(",", projection)) in query() 115 + " with " + (selectionArgs == null ? null : TextUtils.join(";", selectionArgs))); in query() 130 + cursor.getCount() + " contains " + TextUtils.join(",", in query()
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
D | ActualKeyboardBuilder.java | 150 sb.append(MoreKeySpecStringizer.STRINGIZER.join(moreKeys)); in stringize() 172 return KeyStringizer.STRINGIZER.join(keys); in toString() 181 return KeyStringizer.STRINGIZER.join(keyArray); in stringize() 192 return KeyArrayStringizer.STRINGIZER.join(rows, "\n" /* delimiter */); in toString()
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | MessageModification.java | 51 values.put(MessageColumns.TO, TextUtils.join(UIProvider.EMAIL_SEPARATOR, toAddresses)); in putToAddresses() 61 values.put(MessageColumns.CC, TextUtils.join(UIProvider.EMAIL_SEPARATOR, ccAddresses)); in putCcAddresses() 71 values.put(MessageColumns.BCC, TextUtils.join(UIProvider.EMAIL_SEPARATOR, bccAddresses)); in putBccAddresses()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | NameSplitter.java | 523 public String join(Name name, boolean givenNameFirst, boolean includePrefix) { in join() method in NameSplitter 529 return join(prefix, name.familyName, name.middleName, name.givenNames, in join() 533 return join(prefix, name.familyName, name.middleName, name.givenNames, in join() 538 return join(prefix, name.givenNames, name.middleName, name.familyName, in join() 541 return join(prefix, name.familyName, name.givenNames, name.middleName, in join() 552 return join(null, name.phoneticFamilyName, in joinPhoneticName() 559 private String join(String prefix, String part1, String part2, String part3, String suffix, in join() method in NameSplitter
|
D | SearchIndexManager.java | 299 sb.append(TextUtils.join(",", contactIds)); in updateIndexForRawContacts() 314 sb.append(TextUtils.join(",", rawContactIds)); in updateIndexForRawContacts()
|
D | ContactDirectoryManager.java | 180 TextUtils.join(",", packages)); in saveKnownDirectoryProviders() 184 final String directoryPackages = TextUtils.join(",", packages); in haveKnownDirectoryProvidersChanged()
|
/packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/ |
D | SpeedMeasurementController.java | 114 writer.join(TEST_MAX_TIME_MS); in runTest() 117 reader.join(TEST_MAX_TIME_MS); in runTest() 122 reader.join(USB_TIMEOUT_MS); in runTest() 131 writer.join(USB_TIMEOUT_MS); in runTest()
|
/packages/services/Car/tools/ |
D | update-obd2-sensors.py | 61 return '\n'.join(parts) + "\n" 235 intfile = open(os.path.join(filepath, "IntegerSensorIndex.java"), "w") 236 floatfile = open(os.path.join(filepath, "FloatSensorIndex.java"), "w")
|
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
D | StringUtils.java | 67 public static String join(@Nonnull final CharSequence delimiter, in join() method in StringUtils 170 return join(SEPARATOR_FOR_COMMA_SPLITTABLE_TEXT, result); in removeFromCommaSplittableTextIfExists() 644 public final String join(@Nullable final E[] array) { in join() method in StringUtils.Stringizer 649 public final String join(@Nullable final E[] array, @Nullable final String delimiter) { in join() method in StringUtils.Stringizer
|
/packages/apps/Settings/ |
D | wrap_alpha.py | 14 os.rename(os.path.join(root, before), os.path.join(root, after))
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
D | GalleryBoundCursorLoader.java | 46 return Media.MIME_TYPE + " IN ('" + Joiner.on("','").join(mimeTypes) + "') AND " in createSelection() 47 + FileColumns.MEDIA_TYPE + " IN (" + Joiner.on(',').join(mediaTypes) + ")"; in createSelection()
|
/packages/providers/MediaProvider/tools/genfiles/ |
D | genfiles.sh | 133 …m audio_playlists left outer join audio_playlists_map on audio_playlists._id=audio_playlists_map.p…
|
/packages/services/Car/tools/hidl_parser/ |
D | parser.py | 136 '\n'.join(str(x) for x in self.cases)) 148 '\n'.join(str(x) for x in self.items)) 209 '\n'.join(str(x) for x in self.imports)
|
/packages/apps/TV/common/src/com/android/tv/common/ |
D | TvContentRatingCache.java | 64 .join(",", getSortedSetFromCsv(commaSeparatedRatings)); in getRatings() 135 return TextUtils.join(",", toSortedSet(ratingStrings)); in contentRatingsToString()
|
/packages/apps/Contacts/src/com/android/contacts/database/ |
D | SimContactDaoImpl.java | 332 .append(Joiner.on(',').join(Collections.nCopies(phoneCount, '?'))) in queryRawContactsForSimContacts() 348 .append(Joiner.on(',').join(Collections.nCopies(nameCount, '?'))) in queryRawContactsForSimContacts() 373 .append(Joiner.on(',').join(Collections.nCopies(args.length, '?'))) in queryAccountsOfRawContacts()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/ |
D | ObexServerSockets.java | 269 mRfcommThread.join(); in shutdown() 273 mL2capThread.join(); in shutdown()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
D | AdditionalSubtypeUtils.java | 193 return TextUtils.join(",", extraValueItems); in getPlatformVersionDependentExtraValue() 230 final String compatibilityExtraValues = TextUtils.join(",", compatibilityExtraValueItems); in getPlatformVersionIndependentSubtypeId()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator.java | 320 final String ridsInOtherAccts = TextUtils.join(",", rawContactIdsInOtherAccount); in canJoinIntoContact() 372 final String rawContactIds1 = TextUtils.join(",", rawContactIdSet1); in isDataMaching() 373 final String rawContactIds2 = TextUtils.join(",", rawContactIdSet2); in isDataMaching()
|
/packages/services/Car/tools/io_analysis/ |
D | check_file_read.py | 126 print " repeating accesses", repeating_reads_counter, " offset:count ->", ','.join(prints) 163 print " Processes opened this file:", ','.join(process_names)
|