HomeSort by relevance Sort by last modified time
    Searched defs:loaders (Results 1 - 9 of 9) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/interactions/
TestLoaderManager.java 37 * A {@link LoaderManager} that records which loaders have been completed.
123 * Waits for the specified loaders to complete loading.
125 * If one of the loaders has already completed since the last call to {@link #reset()}, it will
130 List<Loader<?>> loaders = new ArrayList<Loader<?>>(loaderIds.length); local
144 loaders.add(loader);
147 waitForLoaders(loaders.toArray(new Loader<?>[0]));
151 * Waits for the specified loaders to complete loading.
153 public static void waitForLoaders(Loader<?>... loaders) {
156 Thread[] waitThreads = new Thread[loaders.length];
157 for (int i = 0; i < loaders.length; i++)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
CompositeResourceLoader.java 35 private final List<ResourceLoader> loaders = new ArrayList<ResourceLoader>(); field in class:CompositeResourceLoader
37 public CompositeResourceLoader(Iterable<ResourceLoader> loaders) {
38 for (ResourceLoader loader : loaders) {
43 public CompositeResourceLoader(ResourceLoader... loaders) {
44 for (ResourceLoader loader : loaders) {
50 loaders.add(loader);
54 for (ResourceLoader loader : loaders) {
97 for (ResourceLoader loader : loaders) {
  /external/webkit/Source/WebKit/chromium/src/
SharedWorkerRepository.cpp 106 AtomicallyInitializedStatic(Vector<SharedWorkerScriptLoader*>&, loaders = *new Vector<SharedWorkerScriptLoader*>);
107 return loaders;
112 // Walk our list of pending loaders and shutdown any that belong to this context.
113 Vector<SharedWorkerScriptLoader*>& loaders = pendingLoaders(); local
114 for (unsigned i = 0; i < loaders.size(); ) {
115 SharedWorkerScriptLoader* loader = loaders[i];
117 loaders.remove(i);
  /hardware/invensense/mlsdk/mllite/
ml_stored_data.c 1170 tMLLoadFunc loaders[] = { local
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.cpp 920 Vector<DocumentLoader*> loaders; local
972 Vector<DocumentLoader*> loaders; local
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentActivity.java 118 HCSparseArray<LoaderManagerImpl> loaders; field in class:FragmentActivity.NonConfigurationInstances
179 * Perform initialization of all fragments and loaders.
194 mAllLoaderManagers = nc.loaders;
306 * Destroy all fragments and loaders.
471 nci.loaders = mAllLoaderManagers;
488 * Dispatch onStart() to all fragments. Ensure any created loaders are
529 * Dispatch onStop() to all fragments. Ensure all loaders are stopped.
  /frameworks/base/core/java/android/app/
Activity.java 686 SparseArray<LoaderManagerImpl> loaders; field in class:Activity.NonConfigurationInstances
    [all...]
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 487 milliseconds