HomeSort by relevance Sort by last modified time
    Searched full:loader (Results 276 - 300 of 2011) sorted by null

<<11121314151617181920>>

  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/model/
PermissionGroups.java 23 import android.content.Loader;
59 public Loader<List<PermissionGroup>> onCreateLoader(int id, Bundle args) {
64 public void onLoadFinished(Loader<List<PermissionGroup>> loader,
75 public void onLoaderReset(Loader<List<PermissionGroup>> loader) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationsInOutboxTipView.java 22 import android.content.Loader;
89 public void onLoaderReset(final Loader<ObjectCursor<Folder>> loader) {
94 public void onLoadFinished(final Loader<ObjectCursor<Folder>> loader,
108 public Loader<ObjectCursor<Folder>> onCreateLoader(final int id, final Bundle args) {
NestedFolderTeaserView.java 22 import android.content.Loader;
100 // Each folder's loader will be this value plus the folder id
266 // Restart the loader
425 public void onLoaderReset(final Loader<ObjectCursor<Folder>> loader) {
430 public void onLoadFinished(final Loader<ObjectCursor<Folder>> loader,
457 // Create the holder, and init a loader
506 LogUtils.w(LOG_TAG, "Problem with folder list cursor returned from loader");
511 LogUtils.d(LOG_TAG, "Initializing folder loader %d", loaderId)
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
dynamic_loader.h 38 * Dynamic Loader
40 * The function of the dynamic loader is to load a "module" containing
47 * The dynamic loader is parameterized for a particular system by 4 classes
156 * be purged, and any host-side storage used by the dynamic loader for
175 * A class used by the dynamic loader for input of the module image
219 * A class used by the dynamic loader for symbol table support and
230 * the structure of a symbol known to the dynamic loader
260 * moduleid An opaque module id assigned by the dynamic loader
282 * moduleid An opaque module id assigned by the dynamic loader
299 * loader, or NULL for failure
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailFragment.java 28 import android.content.Loader;
203 * Start the loader to retrieve the metadata for this group.
210 * Start the loader to retrieve the list of group members.
237 * The listener for the group metadata loader.
248 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
269 public void onLoaderReset(Loader<Cursor> loader) {}
273 * The listener for the group members list loader
284 public void onLoadFinished(Loader<Cursor> loader, Cursor data)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ihooks.py 21 2) A "module loader" class provides an interface to search for a
27 Two module loader class are defined, both implementing the search
39 module loader instance passed in (by default HookableModuleLoader is
99 """Basic module loader.
208 """Default module loader; uses file system hooks.
288 """Fancy module loader -- parses and execs the code itself."""
339 """Basic module importer; uses module loader.
345 def __init__(self, loader = None, verbose = VERBOSE):
347 self.loader = loader or ModuleLoader(None, verbose
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ihooks.py 21 2) A "module loader" class provides an interface to search for a
27 Two module loader class are defined, both implementing the search
39 module loader instance passed in (by default HookableModuleLoader is
99 """Basic module loader.
208 """Default module loader; uses file system hooks.
288 """Fancy module loader -- parses and execs the code itself."""
339 """Basic module importer; uses module loader.
345 def __init__(self, loader = None, verbose = VERBOSE):
347 self.loader = loader or ModuleLoader(None, verbose
    [all...]
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 32 * Abstract Loader that provides an {@link AsyncTask} to do the work. See
33 * {@link Loader} and {@link android.app.LoaderManager} for more details.
43 * loader}
45 * <p>An example implementation of a fragment that uses the above loader to show
53 public abstract class AsyncTaskLoader<D> extends Loader<D> {
76 // cancel the Loader itself and still expects to receive a result.
77 // Additionally, the Loader's own state will not have been updated to
285 * {@link OperationCanceledException}. In either case, the {@link Loader} will
302 * This method is reserved for use by the loader framework.
341 * Locks the current thread until the loader completes the current loa
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
TagLibConfiguration.java 39 import org.eclipse.jetty.util.Loader;
116 ClassLoader loader = _context.getClassLoader(); local
117 if (loader == null || loader.getParent() == null)
118 loader = getClass().getClassLoader();
120 loader = loader.getParent();
121 Class<?> clazz = loader.loadClass("org.apache.jasper.compiler.TldLocationsCache");
357 Class<?> jsp_page = Loader.loadClass(WebXmlConfiguration.class,"javax.servlet.jsp.JspPage");
370 taglib11=Loader.getResource(Servlet.class,"javax/servlet/jsp/resources/web-jsptaglibrary_1_1.dtd",true)
    [all...]
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 34 #include "Loader.h"
58 * this new naming scheme, the loader will additionally look for:
64 ANDROID_SINGLETON_STATIC_INSTANCE( Loader )
119 Loader::driver_t::driver_t(void* gles)
126 Loader::driver_t::~driver_t()
136 status_t Loader::driver_t::set(void* hnd, int32_t api)
156 Loader::Loader()
160 Loader::~Loader() {
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/sw/
drisw.c 55 const __DRIswrastLoaderExtension *loader = sPriv->swrast_loader; local
57 loader->getDrawableInfo(dPriv,
66 const __DRIswrastLoaderExtension *loader = sPriv->swrast_loader; local
68 loader->putImage(dPriv, __DRI_SWRAST_IMAGE_OP_SWAP,
77 const __DRIswrastLoaderExtension *loader = sPriv->swrast_loader; local
79 loader->getImage(dPriv,
364 /* This is the table of extensions that the loader will dlsym() for. */
  /packages/apps/Browser/src/com/android/browser/
BrowserSnapshotPage.java 28 import android.content.Loader;
123 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
133 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
134 if (loader.getId() == LOADER_SNAPSHOTS) {
153 public void onLoaderReset(Loader<Cursor> loader) {
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncFragment.java 28 import android.content.Loader;
117 // Prepare the loader. Either re-connect with an existing one,
186 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
194 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
205 public void onLoaderReset(Loader<Cursor> loader) {
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListActivity.java 30 import android.content.Loader;
116 // Prepare the loader. Either re-connect with an existing one,
143 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
150 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
158 public void onLoaderReset(Loader<Cursor> loader) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundle.java 105 * The class loader constant to be used with getBundleInstance API
148 WholeBundle(String baseName, String localeID, ClassLoader loader,
153 this.loader = loader;
160 ClassLoader loader; field in class:ICUResourceBundle.WholeBundle
189 public static final ULocale getFunctionalEquivalent(String baseName, ClassLoader loader,
214 ULocale[] availableULocales = getAvailEntry(baseName, loader).getULocaleList();
452 public static Set<String> getAvailableLocaleNameSet(String bundlePrefix, ClassLoader loader) {
453 return getAvailEntry(bundlePrefix, loader).getLocaleNameSet();
470 public static Set<String> getFullLocaleNameSet(String bundlePrefix, ClassLoader loader) {
721 private ClassLoader loader; field in class:ICUResourceBundle.AvailEntry
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
ClassPath.java 156 final ClassLoader loader; field in class:ClassPath.ResourceInfo
158 static ResourceInfo of(String resourceName, ClassLoader loader) {
160 return new ClassInfo(resourceName, loader);
162 return new ResourceInfo(resourceName, loader);
166 ResourceInfo(String resourceName, ClassLoader loader) {
168 this.loader = checkNotNull(loader);
173 return checkNotNull(loader.getResource(resourceName),
190 && loader == that.loader;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d.c 59 return gdpy->loader->create_drm_screen(name, fd);
67 return gdpy->loader->create_sw_screen(ws);
537 gdpy->loader = gdrv->loader;
555 if (gdpy->loader->profile_masks[ST_API_OPENGL] & ST_PROFILE_DEFAULT_MASK)
557 if (gdpy->loader->profile_masks[ST_API_OPENGL] & ST_PROFILE_OPENGL_ES1_MASK)
559 if (gdpy->loader->profile_masks[ST_API_OPENGL] & ST_PROFILE_OPENGL_ES2_MASK)
561 if (gdpy->loader->profile_masks[ST_API_OPENVG] & ST_PROFILE_DEFAULT_MASK)
638 stapi = gdrv->loader->get_st_api(ST_API_OPENVG);
640 stapi = gdrv->loader->get_st_api(ST_API_OPENGL)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
RecentsTaskLoadPlan.java 93 synchronized void preloadPlan(RecentsTaskLoader loader, boolean isTopTaskHome) {
127 String activityLabel = loader.getAndUpdateActivityLabel(taskKey, t.taskDescription,
129 String contentDescription = loader.getAndUpdateContentDescription(taskKey,
131 Drawable activityIcon = loader.getAndUpdateActivityIcon(taskKey, t.taskDescription,
133 int activityColor = loader.getActivityPrimaryColor(t.taskDescription, mConfig);
152 task.thumbnail = loader.getAndUpdateThumbnail(taskKey, mSystemServicesProxy, false);
197 synchronized void executePlan(Options opts, RecentsTaskLoader loader,
238 task.activityIcon = loader.getAndUpdateActivityIcon(taskKey,
246 task.thumbnail = loader.getAndUpdateThumbnail(taskKey,
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageFooterView.java 24 import android.content.Loader;
123 // Destroy the loader if we are attempting to load a different attachment
141 // but don't do any Loader work if we're only measuring
169 // before the attachment loader results are in, we can still render immediately using
258 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
264 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
275 public void onLoaderReset(Loader<Cursor> loader) {
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
project.py 121 def loader(self): member in class:Project
130 return [self.loader.LoadModule(module_filename=filename) for
134 modules = [self.loader.LoadModule(module_name=name) for
146 modules = [self.loader.LoadModule(module_name=name) for
163 modules = [self.loader.LoadModule(module_name=name)
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 71 * A class loader properly initialized and reusable across files. It gets
166 * Set the class loader and ImageView class objects that will be used during
167 * the startElement validation logic. The class loader encompasses the class
172 * provided class loader.
190 * Initializes the class loader and {@link ImageView} Class objects.
  /external/guava/guava-tests/test/com/google/common/cache/
TestingCacheLoaders.java 40 * {@link CacheLoader#load} calls to {@code loader}.
42 static <K, V> CacheLoader<K, V> bulkLoader(final CacheLoader<K, V> loader) {
43 checkNotNull(loader);
47 return loader.load(key);
141 * An {@code Integer} loader that returns the key for {@code load} requests, and increments the
  /frameworks/base/docs/html/training/load-data-background/
handle-results.jd 32 onCreateLoader()}. The loader then provides the query results to your
99 public void onLoadFinished(Loader&lt;Cursor&gt; loader, Cursor cursor) {
129 public void onLoaderReset(Loader&lt;Cursor&gt; loader) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
FileExplorerView.java 62 ImageLoader loader = ImageLoader.getDdmUiLibLoader(); local
89 pushAction.setImageDescriptor(loader.loadDescriptor("push.png")); //$NON-NLS-1$
99 pullAction.setImageDescriptor(loader.loadDescriptor("pull.png")); //$NON-NLS-1$
109 deleteAction.setImageDescriptor(loader.loadDescriptor("delete.png")); //$NON-NLS-1$
119 createNewFolderAction.setImageDescriptor(loader.loadDescriptor("add.png")); //$NON-NLS-1$
  /frameworks/base/core/java/android/os/
Parcel.java 114 * that class to be reconstructed from the appropriate class loader when
    [all...]

Completed in 1034 milliseconds

<<11121314151617181920>>