Home | History | Annotate | Download | only in interactions

Lines Matching refs:loaders

37  * A {@link LoaderManager} that records which loaders have been completed.
124 * Waits for the specified loaders to complete loading.
126 * If one of the loaders has already completed since the last call to {@link #reset()}, it will
131 List<Loader<?>> loaders = new ArrayList<Loader<?>>(loaderIds.length);
145 loaders.add(loader);
148 waitForLoaders(loaders.toArray(new Loader<?>[0]));
152 * Waits for the specified loaders to complete loading.
154 public static void waitForLoaders(Loader<?>... loaders) {
157 Thread[] waitThreads = new Thread[loaders.length];
158 for (int i = 0; i < loaders.length; i++) {
159 final AsyncTaskLoader<?> loader = (AsyncTaskLoader<?>) loaders[i];