/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/ |
H A D | ConvertUtilsTest.java | 228 assertThat(entryList).hasSize(1); in getIndexedUsageMap_returnsExpectedResult() 231 entryList = resultMap.get(Integer.valueOf(1)); in getIndexedUsageMap_returnsExpectedResult() 232 assertThat(entryList).hasSize(3); in getIndexedUsageMap_returnsExpectedResult() 233 assertBatteryDiffEntry(entryList.get(1), 5, 5L, 5L); in getIndexedUsageMap_returnsExpectedResult() 237 entryList = resultMap.get(Integer.valueOf(-1)); in getIndexedUsageMap_returnsExpectedResult() 238 assertThat(entryList).hasSize(3); in getIndexedUsageMap_returnsExpectedResult() 253 assertThat(entryList).hasSize(1); in getIndexedUsageMap_returnsExpectedResult() 256 assertThat(entryList).hasSize(1); in getIndexedUsageMap_returnsExpectedResult() 260 assertThat(entryList).hasSize(1); in getIndexedUsageMap_returnsExpectedResult() 262 assertThat(entryList.get(0).getPackageName()) in getIndexedUsageMap_returnsExpectedResult() [all …]
|
H A D | BatteryDiffEntryTest.java | 113 final List<BatteryDiffEntry> entryList = new ArrayList<>(); in testComparator_sortCollectionsInDescOrder() local 115 entryList.add(createBatteryDiffEntry(30, mBatteryHistEntry)); in testComparator_sortCollectionsInDescOrder() 116 entryList.add(createBatteryDiffEntry(20, mBatteryHistEntry)); in testComparator_sortCollectionsInDescOrder() 117 entryList.add(createBatteryDiffEntry(10, mBatteryHistEntry)); in testComparator_sortCollectionsInDescOrder() 118 Collections.sort(entryList, BatteryDiffEntry.COMPARATOR); in testComparator_sortCollectionsInDescOrder() 120 assertThat(entryList.get(0).getPercentOfTotal()).isEqualTo(30); in testComparator_sortCollectionsInDescOrder() 121 assertThat(entryList.get(1).getPercentOfTotal()).isEqualTo(20); in testComparator_sortCollectionsInDescOrder() 122 assertThat(entryList.get(2).getPercentOfTotal()).isEqualTo(10); in testComparator_sortCollectionsInDescOrder()
|
/aosp12/packages/apps/Settings/src/com/android/settings/development/graphicsdriver/ |
H A D | GraphicsDriverEnableForAllAppsPreferenceController.java | 181 List<CharSequence> entryList = new ArrayList<>(); in constructEntryList() local 182 entryList.add(resources.getString(R.string.graphics_driver_app_preference_default)); in constructEntryList() 186 entryList.add(resources.getString( in constructEntryList() 191 entryList.add(resources.getString( in constructEntryList() 195 entryList.add(resources.getString(R.string.graphics_driver_app_preference_system)); in constructEntryList() 197 CharSequence[] filteredEntryList = new CharSequence[entryList.size()]; in constructEntryList() 198 filteredEntryList = entryList.toArray(filteredEntryList); in constructEntryList()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
H A D | ExpandingEntryCardView.java | 330 for (List<Entry> entryList : mEntries) { in initialize() 331 mNumEntries += entryList.size(); in initialize() 505 List<Entry> entryList = mEntries.get(i); in inflateInitialEntries() local 532 List<Entry> entryList = mEntries.get(i); in inflateAllEntries() local 536 final Entry entry = entryList.get(j); in inflateAllEntries() 560 for (List<View> entryList : mEntryViews) { in setEntryHeaderColor() 561 for (View entryView : entryList) { in setEntryHeaderColor() 573 for (List<View> entryList : mEntryViews) { in setEntrySubHeaderColor() 574 for (View entryView : entryList) { in setEntrySubHeaderColor() 601 for (List<Entry> entryList : mEntries) { in applyColor() [all …]
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/dialog/ |
H A D | MediaOutputControllerTest.java | 463 final List<NotificationEntry> entryList = new ArrayList<>(); in getNotificationLargeIcon_withoutLargeIcon_returnsNull() local 467 entryList.add(entry); in getNotificationLargeIcon_withoutLargeIcon_returnsNull() 470 .thenReturn(entryList); in getNotificationLargeIcon_withoutLargeIcon_returnsNull() 482 final List<NotificationEntry> entryList = new ArrayList<>(); in getNotificationLargeIcon_withPackageNameAndMediaSession_returnsIconCompat() local 487 entryList.add(entry); in getNotificationLargeIcon_withPackageNameAndMediaSession_returnsIconCompat() 490 .thenReturn(entryList); in getNotificationLargeIcon_withPackageNameAndMediaSession_returnsIconCompat() 502 final List<NotificationEntry> entryList = new ArrayList<>(); in getNotificationLargeIcon_withPackageNameAndNoMediaSession_returnsNull() local 507 entryList.add(entry); in getNotificationLargeIcon_withPackageNameAndNoMediaSession_returnsNull() 510 .thenReturn(entryList); in getNotificationLargeIcon_withPackageNameAndNoMediaSession_returnsNull()
|
/aosp12/frameworks/opt/chips/src/com/android/ex/chips/ |
H A D | BaseRecipientAdapter.java | 822 final List<RecipientEntry> entryList = entryMap.get(entry.contactId); in putOneEntry() local 823 entryList.add(RecipientEntry.constructSecondLevelEntry( in putOneEntry() 830 final List<RecipientEntry> entryList = new ArrayList<RecipientEntry>(); in putOneEntry() local 831 entryList.add(RecipientEntry.constructTopLevelEntry( in putOneEntry() 837 entryMap.put(entry.contactId, entryList); in putOneEntry() 861 final List<RecipientEntry> entryList = mapEntry.getValue(); in constructEntryList() local 862 final int size = entryList.size(); in constructEntryList() 864 RecipientEntry entry = entryList.get(i); in constructEntryList()
|
/aosp12/build/soong/bp2build/ |
H A D | symlink_forest.go | 63 entryList, err := ioutil.ReadDir(dir) 77 for _, fi := range entryList {
|
/aosp12/packages/modules/ExtServices/java/src/android/ext/services/storage/ |
H A D | CacheQuotaServiceImpl.java | 85 .map(entryList -> entryList.get(0)) in onComputeCacheQuotaHints()
|
/aosp12/build/soong/finder/ |
H A D | finder.go | 1091 var entryList = f.sortedDirEntries() 1109 if numBlocks > len(entryList) { 1110 numBlocks = len(entryList) 1120 blockMax := len(entryList) * i / numBlocks 1121 block := entryList[blockMin:blockMax]
|
/aosp12/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
H A D | ConvertUtils.java | 275 for (List<BatteryDiffEntry> entryList : indexedUsageMap.values()) { in insert24HoursData() 276 for (BatteryDiffEntry entry : entryList) { in insert24HoursData()
|
/aosp12/hardware/qcom/media/msm8974/mm-core/omxcore/inc/ |
H A D | OMX_QCOMExtns.h | 214 OMX_QCOM_PLATFORM_PRIVATE_ENTRY* entryList; member
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/model/ |
H A D | RawContactModifier.java | 972 List<ValuesDelta> entryList = oldState.getMimeEntries(mimeType); in migrateStateForNewContact() local 973 if (entryList != null && !entryList.isEmpty()) { in migrateStateForNewContact() 974 for (ValuesDelta entry : entryList) { in migrateStateForNewContact()
|
/aosp12/hardware/qcom/media/msm8974/mm-core/inc/ |
H A D | OMX_QCOMExtns.h | 243 OMX_QCOM_PLATFORM_PRIVATE_ENTRY* entryList; member
|
/aosp12/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/ |
H A D | omx_vdec.cpp | 4256 if (!pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 4258 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 4263 pmem_list->entryList->entry; in use_output_buffer() 5013 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 6169 pmem_list.entryList = &pmem_entry; in use_EGL_image() 6681 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 8102 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers() 9425 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in allocate_buffers_color_convert() 9501 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in use_output_buffer()
|
H A D | omx_vdec_copper.cpp | 3911 if (!pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 3913 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 3918 pmem_list->entryList->entry; in use_output_buffer() 4692 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 5777 pmem_list.entryList = &pmem_entry; in use_EGL_image() 6255 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 7581 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers()
|
/aosp12/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/ |
H A D | omx_vdec.cpp | 4045 if (!pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 4047 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 4053 pmem_list->entryList->entry; in use_output_buffer() 4804 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 5990 pmem_list.entryList = &pmem_entry; in use_EGL_image() 6470 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 7791 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers() 9651 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in allocate_buffers_color_convert()
|
H A D | omx_vdec_hevc.cpp | 3788 if (!pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 3790 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 3795 pmem_list->entryList->entry; in use_output_buffer() 4540 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 5578 pmem_list.entryList = &pmem_entry; in use_EGL_image() 6026 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 7433 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers() 8451 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in allocate_buffers_color_convert()
|
H A D | omx_vdec_hevc_swvdec.cpp | 4564 if (!pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 4566 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 4571 pmem_list->entryList->entry; in use_output_buffer() 5435 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 6672 pmem_list.entryList = &pmem_entry; in use_EGL_image() 7131 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 8446 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers() 9535 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in allocate_buffers_color_convert()
|
H A D | omx_vdec_msm8974.cpp | 4902 if (!pmem_list || !pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 4904 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 4909 pmem_list->entryList->entry; in use_output_buffer() 5716 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 6911 pmem_list.entryList = &pmem_entry; in use_EGL_image() 7399 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 9073 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers() 10539 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in allocate_buffers_color_convert()
|
/aosp12/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/ |
H A D | omx_vdec_hevc.cpp | 3767 if (!pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 3769 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 3774 pmem_list->entryList->entry; in use_output_buffer() 4519 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 5542 pmem_list.entryList = &pmem_entry; in use_EGL_image() 5990 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 7397 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers() 8397 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in allocate_buffers_color_convert()
|
H A D | omx_vdec_hevc_swvdec.cpp | 4761 if (!pmem_list->entryList || !pmem_list->entryList->entry || in use_output_buffer() 4763 pmem_list->entryList->type != OMX_QCOM_PLATFORM_PRIVATE_PMEM) { in use_output_buffer() 4768 pmem_list->entryList->entry; in use_output_buffer() 5639 pPlatformList->entryList = pPlatformEntry; in allocate_output_buffer() 6875 pmem_list.entryList = &pmem_entry; in use_EGL_image() 7341 buffer->pPlatformPrivate)->entryList->entry; in fill_buffer_done() 8661 pPlatformList->entryList = pPlatformEntry; in allocate_output_headers() 9737 m_platform_list_client[i].entryList = &m_platform_entry_client[i]; in allocate_buffers_color_convert()
|
/aosp12/hardware/qcom/media/msm8996/mm-core/inc/ |
H A D | OMX_QCOMExtns.h | 246 OMX_QCOM_PLATFORM_PRIVATE_ENTRY* entryList; member
|
/aosp12/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/test/ |
H A D | omx_vdec_test.cpp | 2426 pPlatformList[bufCnt].entryList = &pPlatformEntry[bufCnt]; in use_output_buffer_multiple_fd() 3428 pBufHdr->pPlatformPrivate)->entryList->entry; in overlay_fb() 3517 pBufHdr->pPlatformPrivate)->entryList->entry; in render_fb()
|
/aosp12/hardware/qcom/media/msm8998/mm-core/inc/ |
H A D | OMX_QCOMExtns.h | 289 OMX_QCOM_PLATFORM_PRIVATE_ENTRY* entryList; member
|
/aosp12/hardware/qcom/sm8150/media/mm-core/inc/ |
H A D | OMX_QCOMExtns.h | 302 OMX_QCOM_PLATFORM_PRIVATE_ENTRY* entryList; member
|