/packages/apps/Dialer/java/com/android/dialer/calllog/ui/menu/ |
D | Modules.java | 43 static List<HistoryItemActionModule> fromRow(Context context, CoalescedRow row) { in fromRow() argument 45 new HistoryItemActionModulesBuilder(context, buildModuleInfo(row)); in fromRow() 51 row.getNumber().getNormalizedNumber(), row.getNumberPresentation())) { in fromRow() 65 modules.add(createModuleForAccessingCallDetails(context, row)); in fromRow() 66 modules.add(new DeleteCallLogItemModule(context, row.getCoalescedIds())); in fromRow() 71 Context context, CoalescedRow row) { in createModuleForAccessingCallDetails() argument 73 !row.getIsVoicemailCall() && row.getNumberAttributes().getCanReportAsInvalidNumber(); in createModuleForAccessingCallDetails() 79 row.getCoalescedIds(), in createModuleForAccessingCallDetails() 80 createCallDetailsHeaderInfoFromRow(context, row), in createModuleForAccessingCallDetails() 82 canSupportAssistedDialing(row)), in createModuleForAccessingCallDetails() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/calllogutils/ |
D | CallLogEntryText.java | 47 public static CharSequence buildPrimaryText(Context context, CoalescedRow row) { in buildPrimaryText() argument 49 if (row.getNumberAttributes().getIsEmergencyNumber()) { in buildPrimaryText() 56 PhoneNumberDisplayUtil.getNameForPresentation(context, row.getNumberPresentation()); in buildPrimaryText() 62 if (row.getIsVoicemailCall() && !TextUtils.isEmpty(row.getVoicemailCallTag())) { in buildPrimaryText() 63 return row.getVoicemailCallTag(); in buildPrimaryText() 67 if (!TextUtils.isEmpty(row.getNumberAttributes().getName())) { in buildPrimaryText() 68 return row.getNumberAttributes().getName(); in buildPrimaryText() 72 if (!TextUtils.isEmpty(row.getFormattedNumber())) { in buildPrimaryText() 73 return PhoneNumberUtils.createTtsSpannable(row.getFormattedNumber()); in buildPrimaryText() 97 Context context, Clock clock, CoalescedRow row) { in buildSecondaryTextForEntries() argument [all …]
|
D | CallLogEntryDescriptions.java | 60 Context context, Clock clock, CoalescedRow row) { in buildDescriptionForEntry() argument 73 getPrimaryDescriptionResIdForCallType(row), in buildDescriptionForEntry() 74 row.getCoalescedIds().getCoalescedIdCount()), in buildDescriptionForEntry() 75 String.valueOf(row.getCoalescedIds().getCoalescedIdCount()), in buildDescriptionForEntry() 76 CallLogEntryText.buildPrimaryText(context, row)); in buildDescriptionForEntry() 83 context, clock, row, /* abbreviateDateTime = */ false)); in buildDescriptionForEntry() 87 CharSequence phoneAccountDescription = buildPhoneAccountDescription(context, row); in buildDescriptionForEntry() 106 private static @PluralsRes int getPrimaryDescriptionResIdForCallType(CoalescedRow row) { in getPrimaryDescriptionResIdForCallType() argument 107 switch (row.getCallType()) { in getPrimaryDescriptionResIdForCallType() 128 private static CharSequence buildPhoneAccountDescription(Context context, CoalescedRow row) { in buildPhoneAccountDescription() argument [all …]
|
/packages/apps/TV/src/com/android/tv/dvr/ui/list/ |
D | ScheduleRowPresenter.java | 368 ScheduleRow row = (ScheduleRow) item; in onBindRowViewHolder() local 369 @ScheduleRowAction int[] actions = getAvailableActions(row); in onBindRowViewHolder() 375 if (isInfoClickable(row)) { in onBindRowViewHolder() 376 onInfoClicked(row); in onBindRowViewHolder() 385 onActionClicked(actions[0], row); in onBindRowViewHolder() 393 onActionClicked(actions[1], row); in onBindRowViewHolder() 397 viewHolder.mTimeView.setText(onGetRecordingTimeText(row)); in onBindRowViewHolder() 398 String programInfoText = onGetProgramInfoText(row); in onBindRowViewHolder() 400 int durationMins = Math.max(1, Utils.getRoundOffMinsFromMs(row.getDuration())); in onBindRowViewHolder() 408 String channelName = getChannelNameText(row); in onBindRowViewHolder() [all …]
|
D | SeriesScheduleRowPresenter.java | 57 protected String onGetRecordingTimeText(ScheduleRow row) { in onGetRecordingTimeText() argument 59 getContext(), row.getStartTimeMs(), row.getEndTimeMs(), false, true, true, 0); in onGetRecordingTimeText() 63 protected String onGetProgramInfoText(ScheduleRow row) { in onGetProgramInfoText() argument 64 return row.getEpisodeDisplayTitle(getContext()); in onGetProgramInfoText() 71 EpisodicProgramRow row = (EpisodicProgramRow) item; in onBindRowViewHolder() local 72 if (getDvrManager().isConflicting(row.getSchedule())) { in onBindRowViewHolder() 90 protected void onInfoClicked(ScheduleRow row) { in onInfoClicked() argument 91 DvrUiHelper.startSchedulesActivity(getContext(), row.getSchedule()); in onInfoClicked() 95 protected void onStartRecording(ScheduleRow row) { in onStartRecording() argument 97 row.getSchedule() == null, TAG, "Start request with the existing schedule: " + row); in onStartRecording() local [all …]
|
D | ScheduleRowAdapter.java | 148 ScheduleRow row = (ScheduleRow) get(i); in stop() local 149 if (row.isScheduleCanceled()) { in stop() 150 dvrManager.removeScheduledRecording(row.getSchedule()); in stop() 178 ScheduleRow row = (ScheduleRow) item; in findRowWithStartRequest() local 179 if (row.getSchedule() != null in findRowWithStartRequest() 180 && row.isStartRecordingRequested() in findRowWithStartRequest() 181 && row.matchSchedule(schedule)) { in findRowWithStartRequest() 182 return row; in findRowWithStartRequest() 271 ScheduleRow row = findRowWithStartRequest(schedule); in onScheduledRecordingAdded() local 277 if (row == null) { in onScheduledRecordingAdded() [all …]
|
/packages/modules/ExtServices/native/pHash/ |
D | fast_dct-inl.h | 106 for (int row = 0; row < block_size_; row++) { in ForwardTransform2D() local 108 ddct2d_in_out_ptr_array_[row][col] = static_cast<double>(m_in(row, col)); in ForwardTransform2D() 116 for (int row = 0; row < block_size_; row++) { in ForwardTransform2D() local 118 ddct2d_in_out_ptr_array_[row][col] *= orth_scale_factor_ * isf_squared; in ForwardTransform2D() 126 for (int row = 0; row < block_size_; row++) { in ForwardTransform2D() local 128 (*m_out)(row, col) = static_cast<Tdct>(ddct2d_in_out_ptr_array_[row][col] + 0.5) - in ForwardTransform2D() 138 for (int row = 0; row < block_size_; row++) { in ReverseTransform2D() local 140 ddct2d_in_out_ptr_array_[row][col] = static_cast<double>(m_in(row, col)); in ReverseTransform2D() 153 for (int row = 0; row < block_size_; row++) { in ReverseTransform2D() local 155 ddct2d_in_out_ptr_array_[row][col] *= orth_scale_factor_ * inv_isf_squared; in ReverseTransform2D() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | MatrixUtils.java | 46 private static void findPivotAndSwapRow(final int row, final float[][] squareMatrix0, in findPivotAndSwapRow() argument 48 int ip = row; in findPivotAndSwapRow() 49 float pivot = Math.abs(squareMatrix0[row][row]); in findPivotAndSwapRow() 50 for (int i = row + 1; i < size; ++i) { in findPivotAndSwapRow() 51 if (pivot < Math.abs(squareMatrix0[i][row])) { in findPivotAndSwapRow() 53 pivot = Math.abs(squareMatrix0[i][row]); in findPivotAndSwapRow() 56 if (ip != row) { in findPivotAndSwapRow() 59 squareMatrix0[ip][j] = squareMatrix0[row][j]; in findPivotAndSwapRow() 60 squareMatrix0[row][j] = temp0; in findPivotAndSwapRow() 62 squareMatrix1[ip][j] = squareMatrix1[row][j]; in findPivotAndSwapRow() [all …]
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
D | HbpcdLookupDatabaseHelper.java | 202 ContentValues row = null; in loadTable() local 204 row = getTableMccIddRow(parser); in loadTable() 206 row = getTableMccLookupTableRow(parser); in loadTable() 208 row = getTableMccSidConflictRow(parser); in loadTable() 210 row = getTableMccSidRangeRow(parser); in loadTable() 212 row = getTableNanpAreaCodeRow(parser); in loadTable() 215 row = getTableArbitraryMccSidMatch(parser); in loadTable() 220 if (row != null) { in loadTable() 221 db.insert(tableName, null, row); in loadTable() 233 ContentValues row = new ContentValues(); in getTableMccIddRow() local [all …]
|
/packages/apps/Dialer/java/com/android/dialer/calllog/ui/ |
D | NewCallLogViewHolder.java | 120 private void displayRow(CoalescedRow row) { in displayRow() argument 122 primaryTextView.setText(CallLogEntryText.buildPrimaryText(activity, row)); in displayRow() 123 secondaryTextView.setText(CallLogEntryText.buildSecondaryTextForEntries(activity, clock, row)); in displayRow() 125 if (isUnreadMissedCall(row)) { in displayRow() 137 setNumberCalls(row); in displayRow() 138 setPhoto(row); in displayRow() 139 setFeatureIcons(row); in displayRow() 140 setCallTypeIcon(row); in displayRow() 141 setPhoneAccounts(row); in displayRow() 142 setCallButon(row); in displayRow() [all …]
|
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/qc/ |
D | WifiRowTest.java | 66 QCRow row = getWifiRow(); in getQCItem_setsTitle() local 67 assertThat(row.getTitle()).isEqualTo(mContext.getString(R.string.wifi_settings)); in getQCItem_setsTitle() 74 QCRow row = getWifiRow(); in getQCItem_wifiDisabled_returnsRow() local 75 assertThat(row.getSubtitle()).isEqualTo(mContext.getString(R.string.wifi_disabled)); in getQCItem_wifiDisabled_returnsRow() 76 assertThat(row.getStartIcon().getResId()).isEqualTo(R.drawable.ic_qc_wifi_disabled); in getQCItem_wifiDisabled_returnsRow() 77 QCActionItem actionItem = row.getEndItems().get(0); in getQCItem_wifiDisabled_returnsRow() 89 QCRow row = getWifiRow(); in getQCItem_wifiNotConnected_returnsRow() local 90 assertThat(row.getSubtitle()).isEqualTo(mContext.getString(R.string.wifi_disconnected)); in getQCItem_wifiNotConnected_returnsRow() 91 assertThat(row.getStartIcon().getResId()).isEqualTo(R.drawable.ic_qc_wifi_disconnected); in getQCItem_wifiNotConnected_returnsRow() 92 QCActionItem actionItem = row.getEndItems().get(0); in getQCItem_wifiNotConnected_returnsRow() [all …]
|
D | PairedBluetoothDevicesTest.java | 132 QCRow row = list.getRows().get(0); in getQCItem_bluetoothDisabled_returnsBluetoothDisabledMessage() local 133 assertThat(row.getTitle()).isEqualTo( in getQCItem_bluetoothDisabled_returnsBluetoothDisabledMessage() 135 assertThat(row.getStartIcon()).isNotNull(); in getQCItem_bluetoothDisabled_returnsBluetoothDisabledMessage() 142 QCRow row = list.getRows().get(0); in getQCItem_noDevices_returnsPairMessage() local 143 assertThat(row.getTitle()).isEqualTo( in getQCItem_noDevices_returnsPairMessage() 145 assertThat(row.getStartIcon()).isNotNull(); in getQCItem_noDevices_returnsPairMessage() 196 QCRow row = list.getRows().get(0); in getQCItem_setsTitle() local 197 assertThat(row.getTitle()).isEqualTo(DEFAULT_NAME); in getQCItem_setsTitle() 206 QCRow row = list.getRows().get(0); in getQCItem_bluetoothDisabled_togglesUpdated() local 207 QCActionItem btToggle = row.getEndItems().get(0); in getQCItem_bluetoothDisabled_togglesUpdated() [all …]
|
D | HotspotRowTest.java | 82 QCRow row = getHotspotRow(); in getQCItem_setsTitleAndIcon() local 83 assertThat(row.getTitle()).isEqualTo(mContext.getString(R.string.hotspot_settings_title)); in getQCItem_setsTitleAndIcon() 84 assertThat(row.getStartIcon()).isNotNull(); in getQCItem_setsTitleAndIcon() 85 assertThat(row.getStartIcon().getResId()).isEqualTo(R.drawable.ic_qc_hotspot); in getQCItem_setsTitleAndIcon() 91 QCRow row = getHotspotRow(); in getQCItem_hotspotDisabled_returnsRow() local 92 assertThat(row.getSubtitle()).isEqualTo( in getQCItem_hotspotDisabled_returnsRow() 94 QCActionItem actionItem = row.getEndItems().get(0); in getQCItem_hotspotDisabled_returnsRow() 101 QCRow row = getHotspotRow(); in getQCItem_hotspotEnabled_noDevices_returnsRow() local 102 assertThat(row.getSubtitle()).isEqualTo(String.format("%s / %s", TEST_SSID, TEST_PASSWORD)); in getQCItem_hotspotEnabled_noDevices_returnsRow() 103 QCActionItem actionItem = row.getEndItems().get(0); in getQCItem_hotspotEnabled_noDevices_returnsRow() [all …]
|
D | AdaptiveBrightnessSwitchTest.java | 79 QCRow row = getQCRow(); in getQCItem_createsRow_zoneWrite() local 80 QCActionItem actionItem = row.getEndItems().get(0); in getQCItem_createsRow_zoneWrite() 87 QCRow row = getQCRow(); in getQCItem_createsRow_zoneRead() local 88 QCActionItem actionItem = row.getEndItems().get(0); in getQCItem_createsRow_zoneRead() 102 QCRow row = getQCRow(); in getQCItem_titleSet() local 103 assertThat(row.getTitle()).isEqualTo(mContext.getString(R.string.auto_brightness_title)); in getQCItem_titleSet() 108 QCRow row = getQCRow(); in getQCItem_hasActionSwitch() local 109 assertThat(row.getEndItems().size()).isEqualTo(1); in getQCItem_hasActionSwitch() 110 QCActionItem actionItem = row.getEndItems().get(0); in getQCItem_hasActionSwitch() 117 QCRow row = getQCRow(); in getQCItem_adaptiveBrightnessOn_switchChecked() local [all …]
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/ |
D | TestRootProvider.java | 70 final RowBuilder row = c.newRow(); in queryRoots() local 71 row.add(Root.COLUMN_ROOT_ID, mRootId); in queryRoots() 72 row.add(Root.COLUMN_TITLE, mRootName); in queryRoots() 73 row.add(Root.COLUMN_FLAGS, mFlags); in queryRoots() 74 row.add(Root.COLUMN_DOCUMENT_ID, mRootDocId); in queryRoots() 75 row.add(Root.COLUMN_AVAILABLE_BYTES, 1024 * 1024 * 1000); in queryRoots() 84 final RowBuilder row = c.newRow(); in addFile() local 85 row.add(Document.COLUMN_DOCUMENT_ID, id); in addFile() 86 row.add(Document.COLUMN_DISPLAY_NAME, id); in addFile() 87 row.add(Document.COLUMN_SIZE, 0); in addFile() [all …]
|
/packages/providers/MediaProvider/apex/framework/java/android/provider/mediacognitionutils/ |
D | ProcessMediaCallbackImpl.java | 108 for (int row = 0; row < responses.size(); row++) { in wrapInCursorWindows() 113 + " window for large data set (row " + row + ")"); in wrapInCursorWindows() 115 window.setStartPosition(row); in wrapInCursorWindows() 132 final MediaCognitionProcessingRequest request = responses.get(row).getRequest(); in wrapInCursorWindows() 142 row, 0); in wrapInCursorWindows() 143 dataAdded &= addImageOcrLatin(window, responses.get(row), request, row); in wrapInCursorWindows() 144 dataAdded &= addImageLabels(window, responses.get(row), request, row); in wrapInCursorWindows() 154 window.setStartPosition(row + 1); in wrapInCursorWindows() 160 + "data for row " + row + " - allocating new window."); in wrapInCursorWindows() 163 window.setStartPosition(row); in wrapInCursorWindows() [all …]
|
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/sitemap/ |
D | HighlightableMenu.java | 66 public static String getMenuKey(Context context, IndexData row) { in getMenuKey() argument 72 SiteMapPair pair = siteMap.getTopLevelPair(context, row.className, row.screenTitle); in getMenuKey() 81 menuKey = sAuthorityToMenuKeyMap.get(row.authority); in getMenuKey() 83 logD("Matched authority, title: " + row.updatedTitle + ", menuKey: " + menuKey); in getMenuKey() 88 menuKey = sPackageToMenuKeyMap.get(row.packageName); in getMenuKey() 90 logD("Matched package, title: " + row.updatedTitle + ", menuKey: " + menuKey); in getMenuKey() 95 menuKey = sPackageToMenuKeyMap.get(row.intentTargetPackage); in getMenuKey() 97 logD("Matched target package, title: " + row.updatedTitle + ", menuKey: " + menuKey); in getMenuKey() 102 if (!TextUtils.isEmpty(row.className)) { in getMenuKey() 104 if (row.className.startsWith(entry.getKey())) { in getMenuKey() [all …]
|
/packages/apps/Car/systemlibs/car-qc-lib/tests/unit/src/com/android/car/qc/view/ |
D | QCRowViewTest.java | 76 QCRow row = new QCRow.Builder().build(); in setRow_notNull_visible() local 77 mView.setRow(row); in setRow_notNull_visible() 84 QCRow row = new QCRow.Builder().setTitle(title).build(); in setRow_setsTitle() local 85 mView.setRow(row); in setRow_setsTitle() 94 QCRow row = new QCRow.Builder().setSubtitle(subtitle).build(); in setRow_setsSubtitle() local 95 mView.setRow(row); in setRow_setsSubtitle() 104 QCRow row = new QCRow.Builder().setIcon(icon).build(); in setRow_setsIcon() local 105 mView.setRow(row); in setRow_setsIcon() 114 QCRow row = new QCRow.Builder() in setRow_createsStartItems() local 118 mView.setRow(row); in setRow_createsStartItems() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
D | AbstractKeyboardBuilder.java | 57 final E[] row = rows[rowIndex]; in AbstractKeyboardBuilder() local 58 mRows[rowIndex] = Arrays.copyOf(row, row.length); in AbstractKeyboardBuilder() 84 E[] getRowAt(final int row) { in getRowAt() argument 85 final int rowIndex = row - 1; in getRowAt() 87 throw new RuntimeException("Illegal row number: " + row); in getRowAt() 98 void setRowAt(final int row, final E[] elements) { in setRowAt() argument 99 final int rowIndex = row - 1; in setRowAt() 101 throw new RuntimeException("Illegal row number: " + row); in setRowAt() 118 void setElementAt(final int row, final int column, final E element, final boolean insert) { in setElementAt() argument 119 final E[] elements = getRowAt(row); in setElementAt() [all …]
|
D | ExpectedKeyboardBuilder.java | 90 for (int row = 1; row <= rowCount; row++) { in replaceKeyOf() 91 ExpectedKey[] keys = getRowAt(row); in replaceKeyOf() 101 setRowAt(row, keys); in replaceKeyOf() 139 public ExpectedKeyboardBuilder setKeysOfRow(final int row, final Object ... keys) { in setKeysOfRow() argument 140 setRowAt(row, joinKeys(keys)); in setKeysOfRow() 220 public ExpectedKeyboardBuilder insertKeysAtRow(final int row, final int column, in insertKeysAtRow() argument 224 setElementAt(row, column + index, expectedKeys[index], true /* insert */); in insertKeysAtRow() 237 public ExpectedKeyboardBuilder addKeysOnTheLeftOfRow(final int row, in addKeysOnTheLeftOfRow() argument 242 setElementAt(row, 1, expectedKeys[index], true /* insert */); in addKeysOnTheLeftOfRow() 255 public ExpectedKeyboardBuilder addKeysOnTheRightOfRow(final int row, in addKeysOnTheRightOfRow() argument [all …]
|
/packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/ |
D | Cp2Contact.java | 114 Object[] row = new Object[Projections.CP2_PROJECTION.length]; in toCursorRow() local 115 row[Projections.ID] = phoneId(); in toCursorRow() 116 row[Projections.PHONE_TYPE] = phoneType(); in toCursorRow() 117 row[Projections.PHONE_LABEL] = phoneLabel(); in toCursorRow() 118 row[Projections.PHONE_NUMBER] = phoneNumber(); in toCursorRow() 119 row[Projections.DISPLAY_NAME] = displayName(); in toCursorRow() 120 row[Projections.PHOTO_ID] = photoId(); in toCursorRow() 121 row[Projections.PHOTO_URI] = photoUri(); in toCursorRow() 122 row[Projections.LOOKUP_KEY] = lookupKey(); in toCursorRow() 123 row[Projections.CARRIER_PRESENCE] = carrierPresence(); in toCursorRow() [all …]
|
/packages/apps/Launcher3/tools/ |
D | print_db.py | 57 for row in c: 58 rows.append(row) 66 for row in c: 67 rows.append(row) 158 data = [dict(zip(columns,row)) for row in rows] 209 for row in rows: 212 for i in range(0,len(row)): 213 cell = row[i] 216 print_functions[i](out, row[0], row, cell) 236 for row in data: [all …]
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaDocumentsProvider.java | 1124 final RowBuilder row = result.newRow(); in includeImagesRoot() local 1125 row.add(Root.COLUMN_ROOT_ID, TYPE_IMAGES_ROOT); in includeImagesRoot() 1126 row.add(Root.COLUMN_FLAGS, flags); in includeImagesRoot() 1127 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.root_images)); in includeImagesRoot() 1128 row.add(Root.COLUMN_DOCUMENT_ID, TYPE_IMAGES_ROOT); in includeImagesRoot() 1129 row.add(Root.COLUMN_MIME_TYPES, IMAGE_MIME_TYPES); in includeImagesRoot() 1130 row.add(Root.COLUMN_QUERY_ARGS, SUPPORTED_QUERY_ARGS); in includeImagesRoot() 1140 final RowBuilder row = result.newRow(); in includeVideosRoot() local 1141 row.add(Root.COLUMN_ROOT_ID, TYPE_VIDEOS_ROOT); in includeVideosRoot() 1142 row.add(Root.COLUMN_FLAGS, flags); in includeVideosRoot() [all …]
|
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/archives/ |
D | ResourcesProvider.java | 81 final RowBuilder row = result.newRow(); in queryRoots() local 82 row.add(Root.COLUMN_ROOT_ID, "root-id"); in queryRoots() 83 row.add(Root.COLUMN_FLAGS, 0); in queryRoots() 84 row.add(Root.COLUMN_TITLE, "ResourcesProvider"); in queryRoots() 85 row.add(Root.COLUMN_DOCUMENT_ID, "root-document-id"); in queryRoots() 95 final RowBuilder row = result.newRow(); in queryDocument() local 96 row.add(Document.COLUMN_DOCUMENT_ID, "root-document-id"); in queryDocument() 97 row.add(Document.COLUMN_FLAGS, 0); in queryDocument() 98 row.add(Document.COLUMN_DISPLAY_NAME, "ResourcesProvider"); in queryDocument() 99 row.add(Document.COLUMN_SIZE, 0); in queryDocument() [all …]
|
/packages/apps/Settings/src/com/android/settings/notification/ |
D | NotificationBackend.java | 80 final AppRow row = new AppRow(); in loadAppRow() local 81 row.pkg = app.packageName; in loadAppRow() 82 row.uid = app.uid; in loadAppRow() 84 row.label = app.loadLabel(pm); in loadAppRow() 86 Log.e(TAG, "Error loading application label for " + row.pkg, t); in loadAppRow() 87 row.label = row.pkg; in loadAppRow() 89 row.icon = IconDrawableFactory.newInstance(context).getBadgedIcon(app); in loadAppRow() 90 row.banned = getNotificationsBanned(row.pkg, row.uid); in loadAppRow() 91 row.showBadge = canShowBadge(row.pkg, row.uid); in loadAppRow() 92 row.bubblePreference = getBubblePreference(row.pkg, row.uid); in loadAppRow() [all …]
|