HomeSort by relevance Sort by last modified time
    Searched refs:isLoading (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
LoadingSpinnerController.java 53 private void setLoading(boolean isLoading) {
54 if (mListView != null && mParentActivity.isLoadingVisible() != isLoading) {
55 mParentActivity.setLoading(mListView, isLoading, true);
  /frameworks/support/slices/builders/src/main/java/androidx/slice/builders/impl/
ListBuilder.java 219 * When set to true, the parameter {@code isLoading} indicates that the app is doing work
224 * @param isLoading whether this content is being loaded in the background.
226 void setTitleItem(IconCompat icon, int imageMode, boolean isLoading);
238 * When set to true, the parameter {@code isLoading} indicates that the app is doing work
242 void setTitleItem(SliceAction action, boolean isLoading);
257 * When set to true, the parameter {@code isLoading} indicates that the app is doing work
261 void setTitle(CharSequence title, boolean isLoading);
271 * When set to true, the parameter {@code isLoading} indicates that the app is doing work
275 void setSubtitle(CharSequence subtitle, boolean isLoading);
292 * When set to true, the parameter {@code isLoading} indicates that the app is doing wor
    [all...]
ListBuilderBasicImpl.java 195 public void addEndItem(SliceAction action, boolean isLoading) {
223 public void setTitleItem(IconCompat icon, int imageMode, boolean isLoading) {
236 public void setTitleItem(SliceAction action, boolean isLoading) {
256 public void setTitle(CharSequence title, boolean isLoading) {
269 public void setSubtitle(CharSequence subtitle, boolean isLoading) {
290 public void addEndItem(IconCompat icon, int imageMode, boolean isLoading) {
329 public void setTitle(CharSequence title, boolean isLoading) {
336 public void setSubtitle(CharSequence subtitle, boolean isLoading) {
343 public void setSummary(CharSequence summarySubtitle, boolean isLoading) {
GridRowBuilder.java 96 * When set to true, the parameter {@code isLoading} indicates that the app is doing work
101 void addText(@Nullable CharSequence text, boolean isLoading);
116 * When set to true, the parameter {@code isLoading} indicates that the app is doing work
121 void addTitleText(@Nullable CharSequence text, boolean isLoading);
136 * When set to true, the parameter {@code isLoading} indicates that the app is doing work
141 void addImage(@NonNull IconCompat image, int imageMode, boolean isLoading);
GridRowBuilderBasicImpl.java 123 public void addText(@Nullable CharSequence text, boolean isLoading) {
137 public void addTitleText(@Nullable CharSequence text, boolean isLoading) {
151 public void addImage(@Nullable IconCompat image, int imageMode, boolean isLoading) {
ListBuilderV1Impl.java 385 setTitleItem(icon, imageMode, false /* isLoading */);
392 public void setTitleItem(IconCompat icon, int imageMode, boolean isLoading) {
400 if (isLoading) {
405 if (isLoading) {
416 setTitleItem(action, false /* isLoading */);
422 public void setTitleItem(SliceAction action, boolean isLoading) {
424 if (isLoading) {
443 setTitle(title, false /* isLoading */);
449 public void setTitle(CharSequence title, boolean isLoading) {
451 if (isLoading) {
    [all...]
GridRowBuilderListV1Impl.java 147 addText(text, false /* isLoading */);
153 public void addText(@Nullable CharSequence text, boolean isLoading) {
154 @Slice.SliceHint String[] hints = isLoading
165 addTitleText(text, false /* isLoading */);
172 public void addTitleText(@Nullable CharSequence text, boolean isLoading) {
173 @Slice.SliceHint String[] hints = isLoading
184 addImage(image, imageMode, false /* isLoading */);
191 public void addImage(@Nullable IconCompat image, int imageMode, boolean isLoading) {
199 if (isLoading) {
  /frameworks/support/slices/builders/src/main/java/androidx/slice/builders/
ListBuilder.java 883 public RowBuilder setTitleItem(@Nullable Icon icon, boolean isLoading) {
884 return setTitleItem(icon, ICON_IMAGE, isLoading);
893 mImpl.setTitleItem(IconCompat.createFromIcon(icon), imageMode, false /* isLoading */);
904 boolean isLoading) {
    [all...]
GridBuilder.java 246 return addText(text, false /* isLoading */);
256 * @param isLoading indicates whether the app is doing work to load the added content in the
260 public CellBuilder addText(@Nullable CharSequence text, boolean isLoading) {
261 mImpl.addText(text, isLoading);
272 return addTitleText(text, false /* isLoading */);
283 * @param isLoading indicates whether the app is doing work to load the added content in the
287 public CellBuilder addTitleText(@Nullable CharSequence text, boolean isLoading) {
288 mImpl.addTitleText(text, isLoading);
302 return addImage(image, ListBuilder.LARGE_IMAGE, false /* isLoading */);
312 * @param isLoading indicates whether the app is doing work to load the added content in th
    [all...]
GridRowBuilder.java 346 return addText(text, false /* isLoading */);
356 * @param isLoading indicates whether the app is doing work to load the added content in the
360 public CellBuilder addText(@Nullable CharSequence text, boolean isLoading) {
361 mImpl.addText(text, isLoading);
372 return addTitleText(text, false /* isLoading */);
383 * @param isLoading indicates whether the app is doing work to load the added content in the
387 public CellBuilder addTitleText(@Nullable CharSequence text, boolean isLoading) {
388 mImpl.addTitleText(text, isLoading);
406 return addImage(image, imageMode, false /* isLoading */);
418 * @param isLoading indicates whether the app is doing work to load the added content in th
    [all...]
  /frameworks/base/packages/SystemUI/shared/tests/src/com/android/systemui/shared/recents/model/
HighResThumbnailLoaderTest.java 75 assertTrue(mLoader.isLoading());
77 assertFalse(mLoader.isLoading());
80 assertFalse(mLoader.isLoading());
82 assertTrue(mLoader.isLoading());
85 assertFalse(mLoader.isLoading());
87 assertTrue(mLoader.isLoading());
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbumSet.java 69 public boolean isLoading() {
71 if (mSets[i].isLoading()) return true;
LocalAlbumSet.java 158 public synchronized boolean isLoading() {
  /libcore/ojluni/src/main/java/sun/security/jca/
ProviderConfig.java 78 private boolean isLoading;
175 if (isLoading) {
185 isLoading = true;
189 isLoading = false;
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
LoadingSpinnerControllerTest.java 58 final boolean isLoading =
60 when(mActivity.isLoadingVisible()).thenReturn(isLoading);
  /packages/apps/Contacts/src/com/android/contacts/list/
DirectoryPartition.java 91 public boolean isLoading() {
ContactBrowseListFragment.java 444 directoryLoading = directory.isLoading();
572 public boolean isLoading() {
573 return mRefreshingContactUri || super.isLoading();
ContactEntryListAdapter.java 219 if (!directoryPartition.isLoading()) {
562 public boolean isLoading() {
567 && ((DirectoryPartition) partition).isLoading()) {
ContactEntryListFragment.java 486 if (!isLoading()) {
491 public boolean isLoading() {
492 if (mAdapter != null && mAdapter.isLoading()) {
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/list/
DirectoryPartition.java 84 public boolean isLoading() {
ContactEntryListAdapter.java 220 if (!directoryPartition.isLoading()) {
543 public boolean isLoading() {
547 if (partition instanceof DirectoryPartition && ((DirectoryPartition) partition).isLoading()) {
ContactEntryListFragment.java 452 if (!isLoading()) {
457 public boolean isLoading() {
459 if (mAdapter != null && mAdapter.isLoading()) {
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
HighResThumbnailLoader.java 96 boolean isLoading() {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 59 private volatile boolean isLoading;
276 if (isLoading) {
567 if (isLoading) {
680 isLoading = true;
701 isLoading = false;
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 350 return !isLoading(partitionIndex);
353 private boolean isLoading(int partitionIndex) {
572 if (partition != excludePartition && !isLoading(partition)) {

Completed in 694 milliseconds

1 2 3 4 5 6