HomeSort by relevance Sort by last modified time
    Searched full:loader (Results 51 - 75 of 2347) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/
LoaderClassPath.java 23 * A class search-path representing a class loader.
26 * class loader by <code>getResourceAsStream()</code>.
27 * The <code>LoaderClassPath</code> refers to the class loader through
28 * <code>WeakReference</code>. If the class loader is garbage collected,
31 * <p>The given class loader must have both <code>getResourceAsStream()</code>
45 * Creates a search path representing a class loader.
60 * Obtains a class file from the class loader.
62 * on the class loader.
76 * on the class loader.
Loader.java 24 * The class loader for Javassist.
26 * <p>This is a sample class loader using <code>ClassPool</code>.
27 * Unlike a regular class loader, this class loader obtains bytecode
30 * <p>Note that Javassist can be used without this class loader; programmers
31 * can define their own versions of class loader. They can run
32 * a program even without any user-defined class loader if that program
34 * This class loader is just provided as a utility class.
49 * Loader cl = new Loader(cp)
    [all...]
  /external/chromium_org/ppapi/api/trusted/
ppb_url_loader_trusted.idl 6 /* URL loader trusted interfaces. */
32 void GrantUniversalAccess([in] PP_Resource loader);
41 * mutate the URL loader or cause it to be destroyed.
45 * Loader. Setting to a NULL callback will disable it.
48 [in] PP_Resource loader,
  /external/javassist/sample/reflect/
Main.java 3 import javassist.tools.reflect.Loader;
10 would be specified by some configuration file), the class loader
17 % java javassist.tools.reflect.Loader sample.reflect.Main Joe
25 Loader cl = (Loader)Main.class.getClassLoader();
  /external/guava/guava/src/com/google/common/base/
FinalizableReferenceQueue.java 47 * If this library is loaded in the system class loader, FinalizableReferenceQueue can load
50 * If this library is loaded in an application class loader, it's important that Finalizer not
51 * have a strong reference back to the class loader. Otherwise, you could have a graph like this:
53 * Finalizer Thread runs instance of -> Finalizer.class loaded by -> Application class loader
56 * Even if no other references to classes from the application class loader remain, the Finalizer
58 * Finalizer running, and as a result, the application class loader can never be reclaimed.
62 * If the library is loaded in an application class loader, we try to break the cycle by loading
63 * Finalizer in its own independent class loader:
65 * System class loader -> Application class loader -> ReferenceMap -> FinalizableReferenceQueu
    [all...]
  /external/chromium/chrome/browser/policy/
asynchronous_policy_provider.cc 13 scoped_refptr<AsynchronousPolicyLoader> loader)
15 loader_(loader) {
42 scoped_refptr<AsynchronousPolicyLoader> AsynchronousPolicyProvider::loader() { function in class:policy::AsynchronousPolicyProvider
  /external/chromium_org/content/renderer/media/
active_loader.h 22 // Creates an ActiveLoader with the given loader. It is assumed that the
23 // initial state of |loader| is loading and not deferred.
24 explicit ActiveLoader(scoped_ptr<blink::WebURLLoader> loader);
active_loader.cc 12 ActiveLoader::ActiveLoader(scoped_ptr<blink::WebURLLoader> loader)
13 : loader_(loader.Pass()),
  /frameworks/base/docs/html/guide/components/
loaders.jd 9 <li><a href="#summary">Loader API Summary</a></li>
13 <li><a href="#starting">Starting a Loader</a></li>
14 <li><a href="#restarting">Restarting a Loader</a></li>
28 <li>{@link android.content.Loader}</li>
52 <li>They automatically reconnect to the last loader's cursor when being
57 <h2 id="summary">Loader API Summary</h2>
71 android.content.Loader} instances. This helps an application manage
86 callback method to create a new loader.</td>
89 <td>{@link android.content.Loader}</td>
91 the base class for a loader. You would typically use {@lin
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceLoaderSet.h 43 void add(const RefPtr<ResourceLoader>& loader) { m_set.add(loader); }
44 void remove(const RefPtr<ResourceLoader>& loader) { m_set.remove(loader); }
46 bool contains(const RefPtr<ResourceLoader>& loader) const { return m_set.contains(loader); }
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_cursor_loader_updater_auralinux.cc 34 void LoadImageCursors(float device_scale_factor, ui::CursorLoader* loader) {
45 loader->LoadImageCursor(kImageCursorIds[i], resource_id, point);
57 ui::CursorLoader* loader) {
58 LoadImageCursors(window->compositor()->device_scale_factor(), loader);
63 ui::CursorLoader* loader) {
64 LoadImageCursors(display.device_scale_factor(), loader);
desktop_cursor_loader_updater_auralinux.h 21 ui::CursorLoader* loader) OVERRIDE;
23 ui::CursorLoader* loader) OVERRIDE;
  /frameworks/base/core/java/android/app/
ApplicationLoaders.java 34 * this should be the "system" class loader; in practice we
36 * bootstrap class loader.
46 * If we're one step up from the base class loader, find
51 ClassLoader loader = mLoaders.get(zip); local
52 if (loader != null) {
53 return loader;
  /frameworks/base/core/java/android/os/
ParcelableParcel.java 27 public ParcelableParcel(ClassLoader loader) {
29 mClassLoader = loader;
32 public ParcelableParcel(Parcel src, ClassLoader loader) {
34 mClassLoader = loader;
67 public ParcelableParcel createFromParcel(Parcel in, ClassLoader loader) {
68 return new ParcelableParcel(in, loader);
  /external/chromium_org/chrome/browser/resources/image_loader/
manifest.json 4 "name": "Image loader",
6 "description": "Image loader",
  /external/chromium_org/content/browser/loader/
resource_handler.cc 5 #include "content/browser/loader/resource_handler.h"
7 #include "content/browser/loader/resource_request_info_impl.h"
  /external/chromium_org/content/test/
weburl_loader_mock_factory.cc 85 WebURLLoaderMock* loader = iter->first; local
92 // Follow any redirects while the loader is still active.
95 WebURLRequest newRequest = loader->ServeRedirect(response);
96 if (!IsPending(loader) || loader->isDeferred())
101 // Serve the request if the loader is still active.
102 if (IsPending(loader) && !loader->isDeferred())
103 loader->ServeAsynchronousRequest(response, data, error);
104 // The loader might have already been removed
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_http.h 67 // Read as much as possible from |loader|, using |buffer_| as a scratch area.
68 Error ReadEntireResponseToTemp(const ScopedResource& loader, int* out_bytes);
69 // Read as much as possible from |loader|, storing the result in
71 Error ReadEntireResponseToCache(const ScopedResource& loader, int* out_bytes);
73 // Read up to |count| bytes from |loader|, using |buffer_| as a scratch area.
74 Error ReadResponseToTemp(const ScopedResource& loader,
78 // Read up to |count| bytes from |loader|, and store the result in |buf|,
80 Error ReadResponseToBuffer(const ScopedResource& loader,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
__init__.py 7 loader = unittest.defaultTestLoader variable
16 suite.addTest(loader.loadTestsFromModule(module))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
__init__.py 7 loader = unittest.defaultTestLoader variable
16 suite.addTest(loader.loadTestsFromModule(module))
  /external/chromium_org/chrome/browser/resources/backloader/scripts/
background.js 5 function Loader(pages) {
12 Loader.instance_ = null;
15 Loader.getInstance = function() {
16 if (!Loader.instance_) {
19 Loader.instance_ = new Loader(g_pages);
22 return Loader.instance_;
25 Loader.prototype = {
38 // Loader start up. Kicks off alarm initialization if needed.
73 console.log('#### Loader.onMessage_: unknown message')
    [all...]
  /external/chromium_org/content/renderer/media/android/
media_info_loader.h 40 // At this point you should delete the loader.
62 // Only valid to call after the loader becomes ready.
66 // Only valid to call after the loader becomes ready.
74 blink::WebURLLoader* loader,
78 blink::WebURLLoader* loader,
82 blink::WebURLLoader* loader,
85 blink::WebURLLoader* loader,
89 blink::WebURLLoader* loader,
94 blink::WebURLLoader* loader,
97 blink::WebURLLoader* loader,
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
CompositeResourceLoader.java 38 for (ResourceLoader loader : loaders) {
39 add(loader);
44 for (ResourceLoader loader : loaders) {
45 add(loader);
49 public void add(ResourceLoader loader) {
50 loaders.add(loader);
54 for (ResourceLoader loader : loaders) {
55 Reader reader = loader.open(name);
57 return new ReaderTracer(reader, loader);
97 for (ResourceLoader loader : loaders)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DefaultContactListAdapter.java 56 public void configureLoader(CursorLoader loader, long directoryId) {
57 if (loader instanceof ProfileAndContactsLoader) {
58 ((ProfileAndContactsLoader) loader).setLoadProfile(shouldIncludeProfile());
71 loader.setUri(Contacts.CONTENT_URI);
72 loader.setProjection(getProjection(false));
73 loader.setSelection("0");
86 loader.setUri(builder.build());
87 loader.setProjection(getProjection(true));
90 configureUri(loader, directoryId, filter);
91 loader.setProjection(getProjection(false))
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheExpirationTest.java 52 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
57 .build(loader);
58 checkExpiration(cache, loader, ticker, removalListener);
64 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
69 .build(loader);
70 checkExpiration(cache, loader, ticker, removalListener);
73 private void checkExpiration(LoadingCache<String, Integer> cache, WatchedCreatorLoader loader,
81 loader.reset();
83 assertFalse("Creator should not have been called @#" + i, loader.wasCalled());
101 WatchedCreatorLoader loader = new WatchedCreatorLoader() local
113 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
188 CacheLoader<Integer, AtomicInteger> loader = new CacheLoader<Integer, AtomicInteger>() { local
215 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
227 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
239 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
252 IdentityLoader<Integer> loader = identityLoader(); local
304 IdentityLoader<Integer> loader = identityLoader(); local
351 IdentityLoader<Integer> loader = identityLoader(); local
    [all...]

Completed in 285 milliseconds

1 23 4 5 6 7 8 91011>>