Searched refs:doPostProcessing (Results 1 – 8 of 8) sorted by relevance
/packages/modules/IntentResolver/tests/unit/src/com/android/intentresolver/ |
D | ResolverListAdapterTest.kt | 100 val doPostProcessing = true in test_oneTargetNoLastChosen_oneTargetInAdapter() constant 102 val isLoaded = testSubject.rebuildList(doPostProcessing) in test_oneTargetNoLastChosen_oneTargetInAdapter() 150 val doPostProcessing = true in test_oneTargetThatWasLastChosen_NoTargetsInAdapter() constant 152 val isLoaded = testSubject.rebuildList(doPostProcessing) in test_oneTargetThatWasLastChosen_NoTargetsInAdapter() 199 val doPostProcessing = true in test_oneTargetLastChosenNotInTheList_oneTargetInAdapter() constant 201 val isLoaded = testSubject.rebuildList(doPostProcessing) in test_oneTargetLastChosenNotInTheList_oneTargetInAdapter() 250 val doPostProcessing = true in test_oneTargetThatWasLastChosenFilteringDisabled_oneTargetInAdapter() constant 252 val isLoaded = testSubject.rebuildList(doPostProcessing) in test_oneTargetThatWasLastChosenFilteringDisabled_oneTargetInAdapter() 327 val doPostProcessing = true in testTwoTargets() constant 329 val isLoaded = testSubject.rebuildList(doPostProcessing) in testTwoTargets() [all …]
|
D | ChooserListAdapterDataTest.kt | 124 val doPostProcessing = true in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInResolverAdapter() constant 126 val isLoaded = testSubject.rebuildList(doPostProcessing) in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInResolverAdapter() 188 val doPostProcessing = true in test_twoTargetsWithOverlappingInitialIntent_oneTargetsInResolverAdapter() constant 190 val isLoaded = testSubject.rebuildList(doPostProcessing) in test_twoTargetsWithOverlappingInitialIntent_oneTargetsInResolverAdapter()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/ |
D | ResolverListAdapter.java | 260 public boolean rebuildList(boolean doPostProcessing) { in rebuildList() argument 316 finishRebuildingListWithFilteredResults(currentResolveList, doPostProcessing); in rebuildList() 434 @Nullable List<ResolvedComponentInfo> filteredResolveList, boolean doPostProcessing) { in finishRebuildingListWithFilteredResults() argument 438 processSortedList(filteredResolveList, doPostProcessing); in finishRebuildingListWithFilteredResults() 449 postListReadyRunnable(doPostProcessing, /* rebuildCompleted */ false); in finishRebuildingListWithFilteredResults() 466 mCallbackExecutor.execute(() -> onComponentsSorted(result, doPostProcessing)); in finishRebuildingListWithFilteredResults() 479 @Nullable List<ResolvedComponentInfo> sortedComponents, boolean doPostProcessing) { in onComponentsSorted() argument 480 processSortedList(sortedComponents, doPostProcessing); in onComponentsSorted() 485 @Nullable List<ResolvedComponentInfo> sortedComponents, boolean doPostProcessing) { in processSortedList() argument 540 postListReadyRunnable(doPostProcessing, /* rebuildCompleted */ true); in processSortedList() [all …]
|
D | ChooserListAdapter.java | 331 public boolean rebuildList(boolean doPostProcessing) { in rebuildList() argument 334 boolean result = super.rebuildList(doPostProcessing); in rebuildList() 824 @Nullable List<ResolvedComponentInfo> sortedComponents, boolean doPostProcessing) { in onComponentsSorted() argument 825 processSortedList(sortedComponents, doPostProcessing); in onComponentsSorted() 826 if (doPostProcessing) { in onComponentsSorted()
|
D | ResolverActivity.java | 1234 public final void onPostListReady(ResolverListAdapter listAdapter, boolean doPostProcessing, 1251 if (doPostProcessing) {
|
D | ChooserActivity.java | 958 public final void onPostListReady(ResolverListAdapter listAdapter, boolean doPostProcessing, in onPostListReady() argument 975 if (doPostProcessing) { in onPostListReady()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/profiles/ |
D | MultiProfilePagerAdapter.java | 564 public final boolean rebuildActiveTab(boolean doPostProcessing) { in rebuildActiveTab() argument 566 boolean result = rebuildTab(getActiveListAdapter(), doPostProcessing); in rebuildActiveTab() 575 private boolean rebuildInactiveTabs(boolean doPostProcessing) { in rebuildInactiveTabs() argument 586 rebuildTab(inactiveAdapter, doPostProcessing) || inactiveAdapter.isTabLoaded(); in rebuildInactiveTabs() 609 protected boolean rebuildTab(ListAdapterT activeListAdapter, boolean doPostProcessing) { in rebuildTab() argument 611 activeListAdapter.postListReadyRunnable(doPostProcessing, /* rebuildCompleted */ true); in rebuildTab() 614 return activeListAdapter.rebuildList(doPostProcessing); in rebuildTab()
|
D | ChooserMultiProfilePagerAdapter.java | 134 protected final boolean rebuildTab(ChooserListAdapter listAdapter, boolean doPostProcessing) { in rebuildTab() argument 135 if (doPostProcessing) { in rebuildTab() 138 return super.rebuildTab(listAdapter, doPostProcessing); in rebuildTab()
|