Home
last modified time | relevance | path

Searched refs:join (Results 1 – 25 of 172) sorted by relevance

1234567

/packages/services/Car/tools/emulator/
Dvhal_const_generate.py63 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__)),
98 vhal_20_file = os.path.join(vhal_location, '2.0', 'types.hal')
106 vhal_20_file = open(os.path.join(script_directory, 'vhal_consts_2_0.py'), 'w')
/packages/apps/Launcher3/tests/src/com/android/launcher3/util/
DRaceConditionReproducerTest.java52 tb.join(); in run3_3_TestAction()
103 tb.join(); in test3_3_enter_exit()
155 tb.join(); in test2_1_2()
156 tc.join(); in test2_1_2()
193 tb.join(); in test2_1_2_enter_exit()
194 tc.join(); in test2_1_2_enter_exit()
/packages/apps/DocumentsUI/src/com/android/documentsui/queries/
DCommandInterceptor.java91 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()
137 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in docDetails()
153 + TextUtils.join(" ", tokens)); in forcePaging()
157 Log.w(TAG, "Invalid command structure: " + TextUtils.join(" ", tokens)); in forcePaging()
/packages/apps/Gallery/tests/src/com/android/camera/
DBitmapManagerUnitTests.java90 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/
DTextUtils.java60 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/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DActualKeyboardBuilder.java150 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/Messaging/tests/src/com/android/messaging/
DFakeContentProvider.java63 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/apps/UnifiedEmail/tests/src/com/android/mail/compose/
DComposeActivityTest.java160 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/UnifiedEmail/src/com/android/mail/providers/
DMessageModification.java51 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/services/Car/tests/BugReportApp/utils/
Dbugreport_app_tester.py198 pids_raw = [pid.strip() for pid in re.split(r'\s+', ' '.join(lines))]
263 conn = sqlite3.connect(os.path.join(tmpdir, 'databases/bugreport.db'))
481 with open(os.path.join(data_dir, file.name), 'wb') as wfile:
501 print('\n'.join(stdout_lines))
555 print('\n'.join(check_results))
/packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
DSpeedMeasurementController.java114 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/providers/ContactsProvider/src/com/android/providers/contacts/
DNameSplitter.java523 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
/packages/apps/Settings/
Dwrap_alpha.py14 os.rename(os.path.join(root, before), os.path.join(root, after))
/packages/services/Car/tests/CarDeveloperOptions/
Dwrap_alpha.py14 os.rename(os.path.join(root, before), os.path.join(root, after))
/packages/services/Car/tools/
Dupdate-obd2-sensors.py61 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/apps/Messaging/src/com/android/messaging/datamodel/
DGalleryBoundCursorLoader.java46 return Media.MIME_TYPE + " IN ('" + Joiner.on("','").join(mimeTypes) + "') AND " in createSelection()
47 + FileColumns.MEDIA_TYPE + " IN (" + Joiner.on(',').join(mediaTypes) + ")"; in createSelection()
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DStringUtils.java67 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/src/com/android/settings/development/gamedriver/
DGameDriverAppPreferenceController.java177 String.join(",", mDevOptInApps)); in onPreferenceChange()
180 String.join(",", mDevPrereleaseOptInApps)); in onPreferenceChange()
182 String.join(",", mDevOptOutApps)); in onPreferenceChange()
/packages/providers/MediaProvider/tools/genfiles/
Dgenfiles.sh133 …m audio_playlists left outer join audio_playlists_map on audio_playlists._id=audio_playlists_map.p…
/packages/apps/TV/common/src/com/android/tv/common/
DTvContentRatingCache.java61 TextUtils.join(",", getSortedSetFromCsv(commaSeparatedRatings)); in getRatings()
129 return TextUtils.join(",", ratingStrings); in contentRatingsToString()
/packages/services/Car/tools/hidl_parser/
Dparser.py136 '\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/Bluetooth/src/com/android/bluetooth/
DObexServerSockets.java260 mRfcommThread.join(); in shutdown()
264 mL2capThread.join(); in shutdown()
/packages/apps/Contacts/src/com/android/contacts/database/
DSimContactDaoImpl.java332 .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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DAdditionalSubtypeUtils.java193 return TextUtils.join(",", extraValueItems); in getPlatformVersionDependentExtraValue()
230 final String compatibilityExtraValues = TextUtils.join(",", compatibilityExtraValueItems); in getPlatformVersionIndependentSubtypeId()
/packages/apps/UniversalMediaPlayer/java/com/android/pump/provider/
DWikidata.java185 ub.appendQueryParameter("ids", TextUtils.join("|", ids)); in getContentUri()
197 + TextUtils.join(" ", dbIds) in getSparqlUri()

1234567