HomeSort by relevance Sort by last modified time
    Searched defs:Loader (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /frameworks/native/opengl/libs/EGL/
Loader.h 30 class Loader {
49 static Loader& getInstance();
50 ~Loader();
56 Loader();
Loader.cpp 20 #include "Loader.h"
65 * this new naming scheme, the loader will additionally look for:
71 Loader& Loader::getInstance() {
72 static Loader loader; local
73 return loader;
128 Loader::driver_t::driver_t(void* gles)
135 Loader::driver_t::~driver_t()
145 int Loader::driver_t::set(void* hnd, int32_t api
    [all...]
  /build/kati/
depgraph.go 218 // Loader is the interface that loads DepGraph.
219 type Loader interface {
230 Loader
  /external/javassist/src/main/javassist/tools/reflect/
Loader.java 23 * A class loader for reflection.
32 * javassist.tools.reflect.Loader cl
33 * = (javassist.tools.reflect.Loader)Main.class.getClassLoader();
43 * <ul><pre>% java javassist.tools.reflect.Loader Main arg1, ...</pre></ul>
57 * javassist.tools.reflect.Loader cl = new javassist.tools.reflect.Loader();
70 * is loaded by <code>javassist.tools.reflect.Loader</code> whereas the class
74 * to the same name space as <code>javassist.tools.reflect.Loader</code>.
76 * see the notes in the manual page of <code>javassist.Loader</code>.
84 * javassist.Loader c
    [all...]
  /external/python/cpython3/Lib/importlib/
abc.py 43 Returns a Loader object or None.
55 """Return a loader for the module.
68 return found.loader if found is not None else None
87 """Return (loader, namespace portion) for the path entry.
91 sequence may be empty. If loader is not None, the portion will
109 return found.loader, portions
123 class Loader(metaclass=abc.ABCMeta):
148 This method is deprecated in favor of loader.exec_module(). If
170 class ResourceLoader(Loader):
186 class InspectLoader(Loader)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_discovery.py 12 loader = unittest.TestLoader()
14 loader._top_level_dir = '/foo'
15 name = loader._get_name_from_path('/foo/bar/baz.py')
23 loader._get_name_from_path('/bar/baz.py')
26 loader = unittest.TestLoader()
55 loader._get_module_from_name = lambda path: path + ' module'
56 loader.loadTestsFromModule = lambda module: module + ' tests'
59 loader._top_level_dir = top_level
60 suite = list(loader._find_tests(top_level, 'test*.py'))
69 loader = unittest.TestLoader()
    [all...]
  /external/javassist/src/main/javassist/
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/python/cpython2/Lib/unittest/test/
test_discovery.py 13 loader = unittest.TestLoader()
15 loader._top_level_dir = '/foo'
16 name = loader._get_name_from_path('/foo/bar/baz.py')
24 loader._get_name_from_path('/bar/baz.py')
27 loader = unittest.TestLoader()
56 loader._get_module_from_name = lambda path: path + ' module'
57 loader.loadTestsFromModule = lambda module: module + ' tests'
60 loader._top_level_dir = top_level
61 suite = list(loader._find_tests(top_level, 'test*.py'))
70 loader = unittest.TestLoader(
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
Loader.java 35 public class Loader {
36 private static final String TAG = "Loader";
56 Loader(Context context, Uri archiveUri, int accessMode, Uri notificationUri) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_discovery.py 12 loader = unittest.TestLoader()
14 loader._top_level_dir = '/foo'
15 name = loader._get_name_from_path('/foo/bar/baz.py')
23 loader._get_name_from_path('/bar/baz.py')
26 loader = unittest.TestLoader()
55 loader._get_module_from_name = lambda path: path + ' module'
56 loader.loadTestsFromModule = lambda module: module + ' tests'
59 loader._top_level_dir = top_level
60 suite = list(loader._find_tests(top_level, 'test*.py'))
69 loader = unittest.TestLoader(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_discovery.py 12 loader = unittest.TestLoader()
14 loader._top_level_dir = '/foo'
15 name = loader._get_name_from_path('/foo/bar/baz.py')
23 loader._get_name_from_path('/bar/baz.py')
26 loader = unittest.TestLoader()
55 loader._get_module_from_name = lambda path: path + ' module'
56 loader.loadTestsFromModule = lambda module: module + ' tests'
59 loader._top_level_dir = top_level
60 suite = list(loader._find_tests(top_level, 'test*.py'))
69 loader = unittest.TestLoader(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 12 loader = unittest.TestLoader()
14 loader._top_level_dir = '/foo'
15 name = loader._get_name_from_path('/foo/bar/baz.py')
23 loader._get_name_from_path('/bar/baz.py')
26 loader = unittest.TestLoader()
55 loader._get_module_from_name = lambda path: path + ' module'
56 loader.loadTestsFromModule = lambda module: module + ' tests'
59 loader._top_level_dir = top_level
60 suite = list(loader._find_tests(top_level, 'test*.py'))
69 loader = unittest.TestLoader(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 12 loader = unittest.TestLoader()
14 loader._top_level_dir = '/foo'
15 name = loader._get_name_from_path('/foo/bar/baz.py')
23 loader._get_name_from_path('/bar/baz.py')
26 loader = unittest.TestLoader()
55 loader._get_module_from_name = lambda path: path + ' module'
56 loader.loadTestsFromModule = lambda module: module + ' tests'
59 loader._top_level_dir = top_level
60 suite = list(loader._find_tests(top_level, 'test*.py'))
69 loader = unittest.TestLoader(
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ResourceBundleWrapper.java 37 /** Loader for bundle instances, for caching. */
38 private static abstract class Loader {
42 private static CacheBase<String, ResourceBundleWrapper, Loader> BUNDLE_CACHE =
43 new SoftCache<String, ResourceBundleWrapper, Loader>() {
45 protected ResourceBundleWrapper createInstance(String unusedKey, Loader loader) {
46 return loader.load();
151 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() {
ICUResourceBundle.java 46 * The class loader constant to be used with getBundleInstance API
60 WholeBundle(String baseName, String localeID, ClassLoader loader,
65 this.loader = loader;
72 ClassLoader loader; field in class:ICUResourceBundle.WholeBundle
87 /** Loader for bundle instances, for caching. */
88 private static abstract class Loader {
92 private static CacheBase<String, ICUResourceBundle, Loader> BUNDLE_CACHE =
93 new SoftCache<String, ICUResourceBundle, Loader>() {
95 protected ICUResourceBundle createInstance(String unusedKey, Loader loader)
725 private ClassLoader loader; field in class:ICUResourceBundle.AvailEntry
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ResourceBundleWrapper.java 35 /** Loader for bundle instances, for caching. */
36 private static abstract class Loader {
40 private static CacheBase<String, ResourceBundleWrapper, Loader> BUNDLE_CACHE =
41 new SoftCache<String, ResourceBundleWrapper, Loader>() {
43 protected ResourceBundleWrapper createInstance(String unusedKey, Loader loader) {
44 return loader.load();
149 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() {
ICUResourceBundle.java 42 * The class loader constant to be used with getBundleInstance API
56 WholeBundle(String baseName, String localeID, ClassLoader loader,
61 this.loader = loader;
68 ClassLoader loader; field in class:ICUResourceBundle.WholeBundle
83 /** Loader for bundle instances, for caching. */
84 private static abstract class Loader {
88 private static CacheBase<String, ICUResourceBundle, Loader> BUNDLE_CACHE =
89 new SoftCache<String, ICUResourceBundle, Loader>() {
91 protected ICUResourceBundle createInstance(String unusedKey, Loader loader)
721 private ClassLoader loader; field in class:ICUResourceBundle.AvailEntry
    [all...]
  /external/python/cpython3/Lib/unittest/test/
test_discovery.py 30 loader = unittest.TestLoader()
31 loader._top_level_dir = '/foo'
32 name = loader._get_name_from_path('/foo/bar/baz.py')
40 loader._get_name_from_path('/bar/baz.py')
43 loader = unittest.TestLoader()
72 loader._get_module_from_name = lambda path: path + ' module'
73 orig_load_tests = loader.loadTestsFromModule
78 loader.loadTestsFromModule = loadTestsFromModule
79 loader.suiteClass = lambda thing: thing
82 loader._top_level_dir = top_leve
    [all...]
  /frameworks/base/core/java/android/content/
Loader.java 32 * any calls on to a Loader from the main thread of their process (that is,
34 * of Loader (such as {@link AsyncTaskLoader}) will often perform their work
53 * {@link android.support.v4.content.Loader}
56 public class Loader<D> {
69 * it to the Loader to have the loader re-load its data when the observer
74 * @deprecated Use {@link android.support.v4.content.Loader.ForceLoadContentObserver}
94 * Interface that is implemented to discover when a Loader has finished
97 * to find out when a Loader it is managing has completed so that this can
99 * Loader is not being used in conjunction with LoaderManager
    [all...]
  /frameworks/support/loader/src/main/java/androidx/loader/content/
Loader.java 17 package androidx.loader.content;
27 import androidx.loader.app.LoaderManager;
33 * Static library support version of the framework's {@link android.content.Loader}.
39 public class Loader<D> {
52 * it to the Loader to have the loader re-load its data when the observer
74 * Interface that is implemented to discover when a Loader has finished
77 * to find out when a Loader it is managing has completed so that this can
79 * Loader is not being used in conjunction with LoaderManager.
83 * Called on the thread that created the Loader when the load is complete
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/
test_spec.py 71 self.loader = TestLoader()
72 self.spec = self.machinery.ModuleSpec(self.name, self.loader)
73 self.loc_spec = self.machinery.ModuleSpec(self.name, self.loader,
78 spec = self.machinery.ModuleSpec(self.name, self.loader)
81 self.assertEqual(spec.loader, self.loader)
92 self.assertIs(spec.loader, None)
100 spec = self.machinery.ModuleSpec(self.name, self.loader,
104 self.assertEqual(spec.loader, self.loader)
    [all...]
test_util.py 46 class Loader:
49 spec = self.machinery.ModuleSpec('test', Loader())
54 class Loader(self.abc.Loader):
57 spec = self.machinery.ModuleSpec('test', Loader())
66 class Loader(self.abc.Loader):
71 spec = self.machinery.ModuleSpec('test', Loader())
87 loader = object()
88 spec = self.machinery.ModuleSpec('test', loader)
175 loader = FakeLoader() variable in class:ModuleForLoaderTests.test_reload.FakeLoader
232 loader = FakeLoader(False) variable in class:ModuleForLoaderTests.test_attributes_set.FakeLoader
240 loader = FakeLoader(True) variable in class:ModuleForLoaderTests.test_attributes_set.FakeLoader
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RelativeDateTimeFormatter.java 798 return new Loader(locale).load();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 861 return new Loader(locale).load();
    [all...]
  /external/pdfium/xfa/fxfa/
cxfa_textlayout.cpp 392 Loader(width, fLinePos, false);
413 Loader(size.width, fLinePos, true);
447 Loader(szText.width, fLinePos, true);
628 bool CXFA_TextLayout::Loader(float textWidth,
    [all...]

Completed in 483 milliseconds

1 2 3 4 5 6