/packages/apps/Dialer/java/com/android/dialer/smartdial/util/ |
D | SmartDialPrefix.java | 99 final ArrayList<String> result = new ArrayList<>(); in parseToIndexTokens() local 114 result.add(currentIndexToken.toString()); in parseToIndexTokens() 122 result.add(currentIndexToken.toString()); in parseToIndexTokens() 124 return result; in parseToIndexTokens() 135 final ArrayList<String> result = new ArrayList<>(); in generateNamePrefixes() local 150 result.add(fullNameToken.toString()); in generateNamePrefixes() 162 final int recursiveNameStart = result.size(); in generateNamePrefixes() 163 int recursiveNameEnd = result.size(); in generateNamePrefixes() 172 result.add(initial + fullNames.get(j)); in generateNamePrefixes() 175 result.add(initial + result.get(j)); in generateNamePrefixes() [all …]
|
/packages/apps/Email/tests/src/com/android/email/service/ |
D | AttachmentServiceTests.java | 58 final boolean result = dq.addRequest(dr); in testDownloadQueueAddRequest() 59 assertTrue(result); in testDownloadQueueAddRequest() 81 boolean result = dq.addRequest(dr); in testDownloadQueueAddRequestExisting() 82 assertTrue(result); in testDownloadQueueAddRequestExisting() 87 result = dq.addRequest(dr); in testDownloadQueueAddRequestExisting() 88 assertTrue(result); in testDownloadQueueAddRequestExisting() 97 boolean result = dq.addRequest(dr); in testDownloadQueueRemoveRequest() 98 assertTrue(result); in testDownloadQueueRemoveRequest() 103 result = dq.removeRequest(dr); in testDownloadQueueRemoveRequest() 104 assertTrue(result); in testDownloadQueueRemoveRequest() [all …]
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/ |
D | ThumbnailCacheTest.java | 70 Result result = mCache.getThumbnail(URI_1, MID_SIZE); in testMiss() local 72 assertMiss(result); in testMiss() 79 Result result = mCache.getThumbnail(URI_0, MID_SIZE); in testHit_Exact() local 81 assertHitExact(result); in testHit_Exact() 82 assertSame(MIDSIZE_BITMAP, result.getThumbnail()); in testHit_Exact() 89 Result result = mCache.getThumbnail(URI_0, LARGE_SIZE); in testHit_Smaller() local 91 assertHitSmaller(result); in testHit_Smaller() 92 assertSame(MIDSIZE_BITMAP, result.getThumbnail()); in testHit_Smaller() 99 Result result = mCache.getThumbnail(URI_0, SMALL_SIZE); in testHit_Larger() local 101 assertHitLarger(result); in testHit_Larger() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
D | MetadataDbHelper.java | 486 final ContentValues result = new ContentValues(COLUMN_COUNT); in makeContentValues() local 487 result.put(PENDINGID_COLUMN, pendingId); in makeContentValues() 488 result.put(TYPE_COLUMN, type); in makeContentValues() 489 result.put(WORDLISTID_COLUMN, wordlistId); in makeContentValues() 490 result.put(STATUS_COLUMN, status); in makeContentValues() 491 result.put(LOCALE_COLUMN, locale); in makeContentValues() 492 result.put(DESCRIPTION_COLUMN, description); in makeContentValues() 493 result.put(LOCAL_FILENAME_COLUMN, filename); in makeContentValues() 494 result.put(REMOTE_FILENAME_COLUMN, url); in makeContentValues() 495 result.put(DATE_COLUMN, date); in makeContentValues() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/drawer/ |
D | DrawerAdapter.java | 211 private View getBaseItemView(@LayoutRes int layoutResID, View result,ViewGroup parent) { in getBaseItemView() argument 212 if (result == null) { in getBaseItemView() 213 result = mInflater.inflate(layoutResID, parent, false); in getBaseItemView() 215 return result; in getBaseItemView() 218 private View getPrimaryItemView(PrimaryItem item, View result, ViewGroup parent) { in getPrimaryItemView() argument 219 if (result == null) { in getPrimaryItemView() 220 result = mInflater.inflate(R.layout.drawer_primary_item, parent, false); in getPrimaryItemView() 222 final TextView titleView = (TextView) result.findViewById(R.id.title); in getPrimaryItemView() 224 final ImageView iconView = (ImageView) result.findViewById(R.id.icon); in getPrimaryItemView() 226 final TextView newBadge = (TextView) result.findViewById(R.id.assistant_new_badge); in getPrimaryItemView() [all …]
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
D | HandoverDataParser.java | 370 BluetoothHandoverData result = new BluetoothHandoverData(); in parseNokia() local 371 result.valid = false; in parseNokia() 377 result.device = mBluetoothAdapter.getRemoteDevice(address); in parseNokia() 378 result.valid = true; in parseNokia() 383 result.name = new String(nameBytes, StandardCharsets.UTF_8); in parseNokia() 389 if (result.valid && result.name == null) result.name = ""; in parseNokia() 390 return result; in parseNokia() 394 BluetoothHandoverData result = new BluetoothHandoverData(); in parseBtOob() local 395 result.valid = false; in parseBtOob() 400 result.device = mBluetoothAdapter.getRemoteDevice(address); in parseBtOob() [all …]
|
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/ |
D | StorageAsyncLoaderTest.java | 95 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLoadingApps() local 97 assertThat(result.size()).isEqualTo(1); in testLoadingApps() 98 assertThat(result.get(PRIMARY_USER_ID).gamesSize).isEqualTo(0L); in testLoadingApps() 99 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(1111L); in testLoadingApps() 106 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testGamesAreFiltered() local 108 assertThat(result.size()).isEqualTo(1); in testGamesAreFiltered() 109 assertThat(result.get(PRIMARY_USER_ID).gamesSize).isEqualTo(11L); in testGamesAreFiltered() 110 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(0); in testGamesAreFiltered() 119 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLegacyGamesAreFiltered() local 121 assertThat(result.size()).isEqualTo(1); in testLegacyGamesAreFiltered() [all …]
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/storage/ |
D | StorageAsyncLoaderTest.java | 103 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLoadingApps() local 105 assertThat(result.size()).isEqualTo(1); in testLoadingApps() 106 assertThat(result.get(PRIMARY_USER_ID).getGamesSize()).isEqualTo(0L); in testLoadingApps() 107 assertThat(result.get(PRIMARY_USER_ID).getOtherAppsSize()).isEqualTo(2200L); in testLoadingApps() 114 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testGamesAreFiltered() local 116 assertThat(result.size()).isEqualTo(1); in testGamesAreFiltered() 117 assertThat(result.get(PRIMARY_USER_ID).getGamesSize()).isEqualTo(11L); in testGamesAreFiltered() 118 assertThat(result.get(PRIMARY_USER_ID).getOtherAppsSize()).isEqualTo(0L); in testGamesAreFiltered() 127 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLegacyGamesAreFiltered() local 129 assertThat(result.size()).isEqualTo(1); in testLegacyGamesAreFiltered() [all …]
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | NewOutgoingCallIntentBroadcasterTest.java | 113 int result = processIntent(intent, true).disconnectCause; in testNullHandle() local 114 assertEquals(DisconnectCause.INVALID_NUMBER, result); in testNullHandle() 126 int result = processIntent(intent, true).disconnectCause; in testVoicemailCall() local 128 assertEquals(DisconnectCause.NOT_DISCONNECTED, result); in testVoicemailCall() 154 int result = processIntent(intent, true).disconnectCause; in badCallActionHelper() local 156 assertEquals(expectedCode, result); in badCallActionHelper() 167 ReceiverIntentPair result = regularCallTestHelper(callIntent, null); in testAlreadyDisconnectedCall() local 169 result.receiver.setResultData( in testAlreadyDisconnectedCall() 170 result.intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER)); in testAlreadyDisconnectedCall() 172 result.receiver.onReceive(mContext, result.intent); in testAlreadyDisconnectedCall() [all …]
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
D | SuggestionData.java | 223 int result = 1; in hashCode() local 224 result = prime * result + ((mFormat == null) ? 0 : mFormat.hashCode()); in hashCode() 225 result = prime * result + ((mIcon1 == null) ? 0 : mIcon1.hashCode()); in hashCode() 226 result = prime * result + ((mIcon2 == null) ? 0 : mIcon2.hashCode()); in hashCode() 227 result = prime * result + ((mIntentAction == null) ? 0 : mIntentAction.hashCode()); in hashCode() 228 result = prime * result + ((mIntentData == null) ? 0 : mIntentData.hashCode()); in hashCode() 229 result = prime * result + ((mIntentExtraData == null) ? 0 : mIntentExtraData.hashCode()); in hashCode() 230 result = prime * result + ((mLogType == null) ? 0 : mLogType.hashCode()); in hashCode() 231 result = prime * result + ((mShortcutId == null) ? 0 : mShortcutId.hashCode()); in hashCode() 232 result = prime * result + ((mSource == null) ? 0 : mSource.hashCode()); in hashCode() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Attachment.java | 374 final JSONObject result = new JSONObject(); in toJSON() local 376 result.put(AttachmentColumns.NAME, name); in toJSON() 377 result.put(AttachmentColumns.SIZE, size); in toJSON() 378 result.put(AttachmentColumns.URI, stringify(uri)); in toJSON() 379 result.put(AttachmentColumns.CONTENT_TYPE, contentType); in toJSON() 380 result.put(AttachmentColumns.STATE, state); in toJSON() 381 result.put(AttachmentColumns.DESTINATION, destination); in toJSON() 382 result.put(AttachmentColumns.DOWNLOADED_SIZE, downloadedSize); in toJSON() 383 result.put(AttachmentColumns.CONTENT_URI, stringify(contentUri)); in toJSON() 384 result.put(AttachmentColumns.THUMBNAIL_URI, stringify(thumbnailUri)); in toJSON() [all …]
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaDocumentsProvider.java | 176 private void copyNotificationUri(MatrixCursor result, Cursor cursor) { in copyNotificationUri() argument 177 result.setNotificationUri(getContext().getContentResolver(), cursor.getNotificationUri()); in copyNotificationUri() 468 Bundle result = null; in getDocumentMetadataFromIndex() local 486 result = new Bundle(); in getDocumentMetadataFromIndex() 487 result.putBundle(tagType, metadata); in getDocumentMetadataFromIndex() 488 result.putStringArray( in getDocumentMetadataFromIndex() 495 return result; in getDocumentMetadataFromIndex() 546 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); in queryRoots() local 547 includeImagesRoot(result); in queryRoots() 548 includeVideosRoot(result); in queryRoots() [all …]
|
/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/ |
D | DownloadsDeletionTypeTest.java | 72 DownloadsResult result = new DownloadsResult(); in testFetchDownloads() local 73 result.files.add(temp); in testFetchDownloads() 74 result.files.add(temp2); in testFetchDownloads() 76 mDeletion.onLoadFinished(null, result); in testFetchDownloads() 86 DownloadsResult result = new DownloadsResult(); in testSetChecked() local 87 result.files.add(temp); in testSetChecked() 89 mDeletion.onLoadFinished(null, result); in testSetChecked() 107 DownloadsResult result = new DownloadsResult(); in testUncheckedFilesDoNotCountForSize() local 108 result.files.add(temp); in testUncheckedFilesDoNotCountForSize() 110 mDeletion.onLoadFinished(null, result); in testUncheckedFilesDoNotCountForSize() [all …]
|
/packages/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/ |
D | FetchDownloadsLoaderTest.java | 42 DownloadsResult result = in testEmptyDirectory() local 44 assertNotNull(result); in testEmptyDirectory() 45 assertEquals(0, result.totalSize); in testEmptyDirectory() 46 assertEquals(0, result.files.size()); in testEmptyDirectory() 54 DownloadsResult result = in testFilesInDirectory() local 56 assertNotNull(result); in testFilesInDirectory() 57 assertEquals(0, result.totalSize); in testFilesInDirectory() 58 assertEquals(2, result.files.size()); in testFilesInDirectory() 68 DownloadsResult result = in testNestedDirectories() local 70 assertNotNull(result); in testNestedDirectories() [all …]
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/picker/ |
D | ActionHandlerTest.java | 276 final Intent result = mActivity.setResult.getLastValue().second; in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination() local 277 assertPermission(result, Intent.FLAG_GRANT_READ_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination() 278 assertPermission(result, Intent.FLAG_GRANT_WRITE_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination() 279 assertPermission(result, Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination() 280 assertPermission(result, Intent.FLAG_GRANT_PREFIX_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination() 281 assertContent(result, TestEnv.FOLDER_2.derivedUri); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination() 304 final Intent result = mActivity.setResult.getLastValue().second; in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree() local 305 assertPermission(result, Intent.FLAG_GRANT_READ_URI_PERMISSION, true); in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree() 306 assertPermission(result, Intent.FLAG_GRANT_WRITE_URI_PERMISSION, true); in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree() 307 assertPermission(result, Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION, true); in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree() [all …]
|
/packages/apps/Calendar/src/com/android/calendar/widget/ |
D | CalendarAppWidgetModel.java | 124 int result = 1; in hashCode() local 125 result = prime * result + (allDay ? 1231 : 1237); in hashCode() 126 result = prime * result + (int) (id ^ (id >>> 32)); in hashCode() 127 result = prime * result + (int) (end ^ (end >>> 32)); in hashCode() 128 result = prime * result + (int) (start ^ (start >>> 32)); in hashCode() 129 result = prime * result + ((title == null) ? 0 : title.hashCode()); in hashCode() 130 result = prime * result + visibTitle; in hashCode() 131 result = prime * result + visibWhen; in hashCode() 132 result = prime * result + visibWhere; in hashCode() 133 result = prime * result + ((when == null) ? 0 : when.hashCode()); in hashCode() [all …]
|
/packages/apps/UniversalMediaPlayer/java/com/android/pump/provider/ |
D | KnowledgeGraph.java | 60 JSONObject result = getResultFromKG(artist.getName(), "Person", "MusicGroup"); in populateArtist() local 62 String imageUrl = getImageUrl(result); in populateArtist() 66 String detailedDescription = getDetailedDescription(result); in populateArtist() 81 JSONObject result = getResultFromKG(album.getTitle(), "MusicAlbum"); in populateAlbum() local 84 String imageUrl = getImageUrl(result); in populateAlbum() 88 String detailedDescription = getDetailedDescription(result); in populateAlbum() 98 JSONObject result = getResultFromKG(movie.getTitle(), "Movie"); in populateMovie() local 100 String imageUrl = getImageUrl(result); in populateMovie() 104 String detailedDescription = getDetailedDescription(result); in populateMovie() 114 JSONObject result = getResultFromKG(series.getTitle(), "TVSeries"); in populateSeries() local [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/storage/ |
D | CachedStorageValuesHelper.java | 120 final StorageAsyncLoader.AppsStorageResult result = in getCachedAppsStorageResult() local 122 result.gamesSize = gamesSize; in getCachedAppsStorageResult() 123 result.musicAppsSize = musicAppsSize; in getCachedAppsStorageResult() 124 result.videoAppsSize = videoAppsSize; in getCachedAppsStorageResult() 125 result.photosAppsSize = photoAppSize; in getCachedAppsStorageResult() 126 result.otherAppsSize = otherAppsSize; in getCachedAppsStorageResult() 127 result.cacheSize = cacheSize; in getCachedAppsStorageResult() 128 result.externalStats = externalStats; in getCachedAppsStorageResult() 130 resultArray.append(mUserId, result); in getCachedAppsStorageResult() 135 PrivateStorageInfo storageInfo, StorageAsyncLoader.AppsStorageResult result) { in cacheResult() argument [all …]
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/ |
D | CachedStorageValuesHelper.java | 120 final StorageAsyncLoader.AppsStorageResult result = in getCachedAppsStorageResult() local 122 result.gamesSize = gamesSize; in getCachedAppsStorageResult() 123 result.musicAppsSize = musicAppsSize; in getCachedAppsStorageResult() 124 result.videoAppsSize = videoAppsSize; in getCachedAppsStorageResult() 125 result.photosAppsSize = photoAppSize; in getCachedAppsStorageResult() 126 result.otherAppsSize = otherAppsSize; in getCachedAppsStorageResult() 127 result.cacheSize = cacheSize; in getCachedAppsStorageResult() 128 result.externalStats = externalStats; in getCachedAppsStorageResult() 130 resultArray.append(mUserId, result); in getCachedAppsStorageResult() 135 PrivateStorageInfo storageInfo, StorageAsyncLoader.AppsStorageResult result) { in cacheResult() argument [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | NewOutgoingCallIntentBroadcaster.java | 211 CallDisposition result = new CallDisposition(); in evaluateCall() local 219 result.disconnectCause = DisconnectCause.INVALID_NUMBER; in evaluateCall() 220 return result; in evaluateCall() 231 result.callImmediately = true; in evaluateCall() 232 result.requestRedirection = false; in evaluateCall() 233 result.sendBroadcast = false; in evaluateCall() 234 result.callingAddress = handle; in evaluateCall() 235 return result; in evaluateCall() 238 result.disconnectCause = DisconnectCause.OUTGOING_CANCELED; in evaluateCall() 239 return result; in evaluateCall() [all …]
|
/packages/apps/Bluetooth/jni/ |
D | com_android_bluetooth_hid_device.cpp | 269 jboolean result = JNI_FALSE; in registerAppNative() local 297 result = JNI_TRUE; in registerAppNative() 307 ALOGV("%s done (%d)", __FUNCTION__, result); in registerAppNative() 309 return result; in registerAppNative() 315 jboolean result = JNI_FALSE; in unregisterAppNative() local 327 result = JNI_TRUE; in unregisterAppNative() 330 ALOGV("%s done (%d)", __FUNCTION__, result); in unregisterAppNative() 332 return result; in unregisterAppNative() 337 jboolean result = JNI_FALSE; in sendReportNative() local 357 result = JNI_TRUE; in sendReportNative() [all …]
|
/packages/apps/Calendar/tests/src/com/android/calendar/ |
D | UtilsTests.java | 231 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_differentYear() local 233 assertEquals("Wednesday, April 12, 2000, 5:00 \u2013 6:00 PM", result); in testGetDisplayedDatetime_differentYear() 238 result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_differentYear() 240 assertEquals("Mon, Dec 31, 2012, 5:00 PM – Tue, Jan 1, 2013, 6:00 PM", result); in testGetDisplayedDatetime_differentYear() 248 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_sameYear() local 250 assertEquals("Thursday, April 12, 2012, 5:00 \u2013 6:00 PM", result); in testGetDisplayedDatetime_sameYear() 258 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_today() local 260 assertEquals("Today at 5:00 \u2013 6:00 PM", result); in testGetDisplayedDatetime_today() 268 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_todayMidnight() local 270 assertEquals("Today at 5:00 PM \u2013 12:00 AM", result); in testGetDisplayedDatetime_todayMidnight() [all …]
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadStorageProvider.java | 119 private void copyNotificationUri(MatrixCursor result, Cursor cursor) { in copyNotificationUri() argument 120 result.setNotificationUri(getContext().getContentResolver(), cursor.getNotificationUri()); in copyNotificationUri() 164 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); in queryRoots() local 165 final RowBuilder row = result.newRow(); in queryRoots() 174 return result; in queryRoots() 276 final DownloadsCursor result = new DownloadsCursor(projection, in queryDocument() local 280 includeDefaultDocument(result); in queryDocument() 284 copyNotificationUri(result, cursor); in queryDocument() 286 includeDownloadFromMediaStore(result, cursor, null /* filePaths */); in queryDocument() 290 copyNotificationUri(result, cursor); in queryDocument() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/ui/photoviewer/ |
D | BuglePhotoBitmapLoader.java | 57 final BitmapResult result = new BitmapResult(); in loadInBackground() local 73 result.status = BitmapResult.STATUS_SUCCESS; in loadInBackground() 74 result.drawable = mImageResource.getDrawable(context.getResources()); in loadInBackground() 77 result.status = BitmapResult.STATUS_EXCEPTION; in loadInBackground() 80 result.status = BitmapResult.STATUS_EXCEPTION; in loadInBackground() 82 return result; in loadInBackground() 90 public void deliverResult(BitmapResult result) { in deliverResult() argument 91 final Drawable drawable = result != null ? result.drawable : null; in deliverResult() 103 super.deliverResult(result); in deliverResult() 115 final BitmapResult result = new BitmapResult(); in onStartLoading() local [all …]
|
/packages/apps/TV/src/com/android/tv/search/ |
D | TvProviderSearch.java | 264 SearchResult.Builder result = SearchResult.builder(); in searchChannels() local 265 result.setChannelId(id); in searchChannels() 266 result.setChannelNumber(c.getString(1)); in searchChannels() 267 result.setTitle(c.getString(2)); in searchChannels() 268 result.setDescription(c.getString(3)); in searchChannels() 269 result.setImageUri(TvContract.buildChannelLogoUri(id).toString()); in searchChannels() 270 result.setIntentAction(Intent.ACTION_VIEW); in searchChannels() 271 result.setIntentData(buildIntentData(id)); in searchChannels() 272 result.setContentType(Programs.CONTENT_ITEM_TYPE); in searchChannels() 273 result.setIsLive(true); in searchChannels() [all …]
|