/cts/tools/signature-tools/ |
TODO.txt | 5 Add "plugin system" to enable different loader / differ / report engines. This can be simple as register the class name of the available loaders in a property file
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/ |
PhotoBitmapLoaderInterface.java | 1 package com.android.ex.photo.loaders;
|
PhotoPagerLoader.java | 18 package com.android.ex.photo.loaders;
|
/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) {
|
/art/test/068-classloader/ |
info.txt | 1 Class loaders allow code to "redefine" a given class, e.g. it's possible to
|
/dalvik/tests/068-classloader/ |
info.txt | 1 Class loaders allow code to "redefine" a given class, e.g. it's possible to
|
/libcore/luni/src/test/etc/loading-test-jar/ |
README.txt | 3 files are used for testing the various class loaders.
|
/libcore/luni/src/test/etc/loading-test2-jar/ |
README.txt | 3 files are used for testing the various class loaders.
|
/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...] |
/developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/ |
ApplyTemplates.groovy | 88 // Create a list of Freemarker template loaders based on the 92 // against this set of loaders. 94 def List loaders = [] 98 loaders.add(0, new FileTemplateLoader(project.file(src.dir))) 101 // Add the include path(s) to the list of loaders. 107 loaders.add(0, new FileTemplateLoader(project.file(inc.dir))) 109 // Add the loaders to the freemarker config 110 cfg.setTemplateLoader(new MultiTemplateLoader(loaders.toArray(new TemplateLoader[1])))
|
/external/chromium_org/third_party/jinja2/ |
__init__.py | 35 # loaders 36 from jinja2.loaders import BaseLoader, FileSystemLoader, PackageLoader, \
|
loaders.py | 3 jinja2.loaders 40 """Baseclass for all loaders. Subclass this and override `get_source` to 105 override this method as loaders working on collections of other 106 loaders (such as :class:`PrefixLoader` or :class:`ChoiceLoader`) 315 """A loader that is passed a dict of loaders where each loader is bound 368 def __init__(self, loaders): 369 self.loaders = loaders 372 for loader in self.loaders: 381 for loader in self.loaders [all...] |
/art/test/ |
README.txt | 13 is built separately, and is intended for exercising class loaders.
|
/dalvik/tests/ |
README.txt | 13 is built separately, and is intended for exercising class loaders.
|
/external/chromium/chrome/browser/instant/ |
instant_loader_manager.h | 25 // and pending loaders. The current loader is the loader that if ready is shown 80 // Returns the number of instant loaders. 85 typedef std::map<TemplateURLID, InstantLoader*> Loaders; 105 Loaders instant_loaders_;
|
instant_loader_manager.cc | 21 for (Loaders::iterator i = instant_loaders_.begin(); 139 Loaders::iterator i = instant_loaders_.find(loader->template_url_id()); 152 Loaders::iterator i = instant_loaders_.find(id);
|
/external/chromium/chrome/browser/nacl_host/ |
nacl_broker_host_win.h | 18 // before loaders can be launched.
|
nacl_broker_service_win.cc | 57 // Stop the broker only if there are no loaders running or being launched.
|
/external/chromium_org/content/renderer/media/ |
active_loader.h | 19 // Handles deferring and deletion of loaders.
|
/external/chromium_org/third_party/WebKit/Source/web/ |
SharedWorkerRepository.cpp | 127 AtomicallyInitializedStatic(Vector<SharedWorkerScriptLoader*>&, loaders = *new Vector<SharedWorkerScriptLoader*>); 128 return loaders; 133 // Walk our list of pending loaders and shutdown any that belong to this context. 134 Vector<SharedWorkerScriptLoader*>& loaders = pendingLoaders(); local 135 for (unsigned i = 0; i < loaders.size(); ) { 136 SharedWorkerScriptLoader* loader = loaders[i]; 138 loaders.remove(i);
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
ImplHandler.java | 60 private final HashMap<String, ImplThreadLocal> loaders = field in class:ImplHandler 169 synchronized (loaders){ 170 ImplThreadLocal local = loaders.get(key.getExtension()); 183 synchronized (loaders){ 184 loaders.put(extension, local);
|
/external/chromium_org/chrome/browser/nacl_host/ |
nacl_broker_host_win.h | 25 // before loaders can be launched.
|
/frameworks/base/docs/html/guide/components/ |
loaders.jd | 1 page.title=Loaders 10 <li><a href="#app">Using Loaders in an Application</a> 44 <p>Introduced in Android 3.0, loaders make it easy to asynchronously load data 45 in an activity or fragment. Loaders have these characteristics:</p> 60 loaders in an application. They are summarized in this table:</p> 75 their own loaders for loading other types of data. 79 multiple loaders.</td> 93 loaders are active they should monitor the source of their data and deliver new 122 <h2 id ="app">Using Loaders in an Application</h2> 123 <p>This section describes how to use loaders in an Android application. A [all...] |
/frameworks/base/core/java/android/app/ |
LoaderManager.java | 35 * their own loaders for loading other types of data. 54 * <p>For more information about using loaders, read the 55 * <a href="{@docRoot}guide/topics/fundamentals/loaders.html">Loaders</a> developer guide.</p> 204 // These are the currently active loaders. A loader is here 209 // These are previously run loaders. This list is maintained internally 252 // nothing to do here, since the loaders are still started. 566 // The activity will start all existing loaders in it's onStart(), 583 * does not need to re-create its loaders. 630 * <p>This function does some throttling of Loaders. If too many Loader [all...] |
/external/smack/src/org/jivesoftware/smack/ |
SmackConfiguration.java | 82 // Get an array of class loaders to try loading the providers files from. 354 * Returns an array of class loaders to load resources from. 363 List<ClassLoader> loaders = new ArrayList<ClassLoader>(); local 366 loaders.add(classLoader); 369 return loaders.toArray(new ClassLoader[loaders.size()]);
|