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

1 2 3 4 5 6 7 891011>>

  /external/javassist/sample/duplicate/
Main.java 33 sample.duplicate.Viewer is loaded by javassist.tools.reflect.Loader so that
38 javassist.tools.reflect.Loader cl = new javassist.tools.reflect.Loader();
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlMessageViewFragment.java 23 import android.content.Loader;
98 // This method needs to, for example, get at the loader manager, which needs
244 public Loader<ConversationMessage> onCreateLoader(int id, Bundle args) {
254 public void onLoadFinished(Loader<ConversationMessage> loader, ConversationMessage data) {
260 public void onLoaderReset(Loader<ConversationMessage> loader) {
267 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
279 public void onLoadFinished(Loader<Cursor> loader, Cursor data)
    [all...]
  /art/test/068-classloader/src/
InaccessibleBase.java 18 * Non-public base class, inaccessible from alternate class loader.
InaccessibleInterface.java 18 * Non-public interface class, inaccessible from alternate class loader.
  /external/chromium_org/ppapi/c/
ppb_url_loader.h 81 * @param[in] loader A <code>PP_Resource</code> corresponding to a
92 int32_t (*Open)(PP_Resource loader,
99 * @param[in] loader A <code>PP_Resource</code> corresponding to a
109 int32_t (*FollowRedirect)(PP_Resource loader,
120 * @param[in] loader A <code>PP_Resource</code> corresponding to a
128 PP_Bool (*GetUploadProgress)(PP_Resource loader,
140 * @param[in] loader A <code>PP_Resource</code> corresponding to a
150 PP_Bool (*GetDownloadProgress)(PP_Resource loader,
160 * <code>URLResponseInfo</code> if successful, 0 if the loader is not a valid
163 PP_Resource (*GetResponseInfo)(PP_Resource loader);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLHtmlElement.cpp 30 #include "core/loader/DocumentLoader.h"
31 #include "core/loader/FrameLoader.h"
32 #include "core/loader/appcache/ApplicationCacheHost.h"
64 DocumentLoader* documentLoader = document().frame()->loader().documentLoader();
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
LoadableTextTrack.cpp 96 void LoadableTextTrack::newCuesAvailable(TextTrackLoader* loader)
98 ASSERT_UNUSED(loader, m_loader == loader);
115 void LoadableTextTrack::cueLoadingCompleted(TextTrackLoader* loader, bool loadingFailed)
117 ASSERT_UNUSED(loader, m_loader == loader);
125 void LoadableTextTrack::newRegionsAvailable(TextTrackLoader* loader)
127 ASSERT_UNUSED(loader, m_loader == loader);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
Makefile 73 loader: loader.o libradeon.a
74 gcc -o loader $(LLVM_LDFLAGS) -L/usr/local/lib $(LDFLAGS) loader.o libradeon.a $(LLVM_LIBS) $(LOADER_LIBS) -lpthread -ldl -lstdc++ -lm
  /external/clang/test/Driver/
emit-llvm.c 2 // <rdar://problem/7046672> clang/loader problem
  /external/guava/guava/src/com/google/common/base/internal/
Finalizer.java 37 * to load this class in the same class loader as the rest of
39 * to the class loader and prevent it from being garbage collected. This
41 * loader. For example, dynamically reloading a web application or unloading
45 * in its own class loader. That way, this class doesn't prevent the main
46 * class loader from getting garbage collected, and this class can detect when
47 * the main class loader has been garbage collected and stop itself.
74 * 2) To detect when FinalizableReference's class loader has to be garbage
174 * FinalizableReference's class loader was reclaimed. While there's a
176 * subsequently (at which point the class loader would be resurrected
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
ImageLoader.java 43 * An image loader class. It uses three loaders (AWTLoader, TGALoader and DDSLoader) in an attempt to load the image from the given
51 protected DDSLoader ddsLoader = new DDSLoader(); // DirectX image loader
54 * This method loads the image from the blender file itself. It tries each loader to load the image.
65 // loading using AWT loader
68 // loading using TGA loader
73 // loading using DDS loader
104 LOGGER.info("Unable to load image using AWT loader!");
111 LOGGER.info("Unable to load image using DDS loader!");
118 LOGGER.info("Unable to load image using TGA loader!");
  /external/littlemock/
README 15 - Change to AppDataDirGuesser to handle the new class loader toString
  /external/mesa3d/src/gallium/drivers/radeon/
Makefile 73 loader: loader.o libradeon.a
74 gcc -o loader $(LLVM_LDFLAGS) -L/usr/local/lib $(LDFLAGS) loader.o libradeon.a $(LLVM_LIBS) $(LOADER_LIBS) -lpthread -ldl -lstdc++ -lm
  /libcore/dalvik/src/main/java/dalvik/system/
PathClassLoader.java 23 * loader and for its application class loader(s).
35 * @param parent the parent class loader
61 * @param parent the parent class loader
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactLoader.java 25 * A specialized loader for the Join Contacts UI. It executes two queries:
28 * This loader also loads the "suggestion" cursor, which can be accessed with:
37 * Actual returned class. It's guaranteed that this loader always returns an instance of this
41 * Note we can't change the result type of this loader itself, because CursorLoader
LegacyContactListAdapter.java 58 public void configureLoader(CursorLoader loader, long directoryId) {
59 loader.setUri(People.CONTENT_URI);
60 loader.setProjection(PEOPLE_PROJECTION);
61 loader.setSortOrder(People.DISPLAY_NAME);
  /packages/apps/Gallery2/src/com/android/photos/
AlbumFragment.java 22 import android.content.Loader;
116 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
118 MediaItemsLoader loader = new MediaItemsLoader(getActivity(), mAlbumPath); local
119 mLoaderCompatShim = loader;
121 return loader;
125 public void onLoadFinished(Loader<Cursor> loader,
133 public void onLoaderReset(Loader<Cursor> loader) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 25 import android.content.Loader;
95 // Prepare the loader. Either re-connect with an existing one,
129 // the search filter, and restart the loader to do a new query
133 // Prevents restarting the loader when restoring state.
173 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
174 // This is called when a new Loader needs to be created. This
175 // sample only has one Loader, so we don't care about the ID.
196 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
209 public void onLoaderReset(Loader<Cursor> loader)
    [all...]
LoaderRetained.java 27 import android.content.Loader;
100 // Prepare the loader. Either re-connect with an existing one,
134 // the search filter, and restart the loader to do a new query
138 // Prevents restarting the loader when restoring state.
178 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
179 // This is called when a new Loader needs to be created. This
180 // sample only has one Loader, so we don't care about the ID.
201 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
214 public void onLoaderReset(Loader<Cursor> loader)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_http.cc 232 ScopedResource loader(mount_->ppapi());
239 &loader,
355 ScopedResource loader(mount_->ppapi());
362 &loader,
375 loader, cached_data_.data(), content_length, &real_size);
385 error = ReadEntireResponseToCache(loader, &bytes_read);
428 ScopedResource loader(mount_->ppapi());
435 &loader,
490 error = ReadResponseToTemp(loader, bytes_to_read, &bytes_read);
501 return ReadResponseToBuffer(loader, buf, count, out_bytes)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentThreadableLoader.cpp 33 #include "core/loader/DocumentThreadableLoader.h"
43 #include "core/loader/CrossOriginPreflightResultCache.h"
44 #include "core/loader/DocumentThreadableLoaderClient.h"
45 #include "core/loader/FrameLoader.h"
46 #include "core/loader/ThreadableLoaderClient.h"
57 // The loader will be deleted as soon as this function exits.
58 RefPtr<DocumentThreadableLoader> loader = adoptRef(new DocumentThreadableLoader(document, &client, LoadSynchronously, request, options)); local
59 ASSERT(loader->hasOneRef());
64 RefPtr<DocumentThreadableLoader> loader = adoptRef(new DocumentThreadableLoader(document, client, LoadAsynchronously, request, options)); local
65 if (!loader->resource()
272 DocumentLoader* loader = m_document->frame()->loader().documentLoader(); local
    [all...]
  /external/javassist/tutorial/
tutorial.html 23 <br>3. <a href="#load">Class loader</a>
105 <p><code>toClass()</code> requests the context class loader for the current
206 the system class loader. In that case, an additional class path must be
392 for each class loader (i.e. container).
542 <h2>3. Class loader</h2>
555 the users must make Javassist collaborate with a class loader.
556 Javassist can be used with a class loader so that bytecode can be
558 version of class loader but they can also use a class loader provided
569 <code>toClass()</code>, which requests the context class loader fo
    [all...]
  /dalvik/vm/native/
java_lang_VMClassLoader.cpp 34 Object* loader = (Object*) args[0]; local
43 loader, name, data, offset, len);
62 Object* loader = (Object*) args[0]; local
68 loader, data, offset, len);
81 Object* loader = (Object*) args[0]; local
103 clazz = dvmLookupClass(descriptor, loader, false);
104 LOGVV("look: %s ldr=%p --> %p", descriptor, loader, clazz);
164 * Load class using bootstrap class loader.
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
LoadLocaleProviderTestHelper.java 28 URLClassLoader loader = new URLClassLoader(classpathes); local
30 thread.setContextClassLoader(loader);
  /external/chromium/chrome/browser/policy/
configuration_policy_provider_mac.h 32 // the policies that are recognized must be known to the loader.
34 // provider, because the loader may outlive the provider, so we store our own

Completed in 1323 milliseconds

1 2 3 4 5 6 7 891011>>