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

1 2 3 4 5

  /frameworks/native/opengl/libs/EGL/
Loader.h 30 class Loader {
49 static Loader& getInstance();
50 ~Loader();
56 Loader();
Loader.cpp 20 #include "Loader.h"
63 * this new naming scheme, the loader will additionally look for:
69 Loader& Loader::getInstance() {
70 static Loader loader; local
71 return loader;
126 Loader::driver_t::driver_t(void* gles)
133 Loader::driver_t::~driver_t()
143 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...]
  /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...]
  /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)
717 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)
713 private ClassLoader loader; field in class:ICUResourceBundle.AvailEntry
    [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
52 public class Loader<D> {
65 * it to the Loader to have the loader re-load its data when the observer
87 * Interface that is implemented to discover when a Loader has finished
90 * to find out when a Loader it is managing has completed so that this can
92 * Loader is not being used in conjunction with LoaderManager.
96 * Called on the thread that created the Loader when the load is complete.
98 * @param loader the loader that completed the loa
    [all...]
  /frameworks/support/core-utils/java/android/support/v4/content/
Loader.java 28 * Static library support version of the framework's {@link android.content.Loader}.
34 public class Loader<D> {
47 * it to the Loader to have the loader re-load its data when the observer
69 * Interface that is implemented to discover when a Loader has finished
72 * to find out when a Loader it is managing has completed so that this can
74 * Loader is not being used in conjunction with LoaderManager.
78 * Called on the thread that created the Loader when the load is complete.
80 * @param loader the loader that completed the loa
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RelativeDateTimeFormatter.java 809 return new Loader(locale).load();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 872 return new Loader(locale).load();
    [all...]
  /external/pdfium/xfa/fxfa/app/
cxfa_textlayout.cpp 398 Loader(defaultSize, fLinePos, false);
420 Loader(size, fLinePos, true);
456 Loader(szText, fLinePos, true);
643 bool CXFA_TextLayout::Loader(const CFX_SizeF& szText,
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger/1.2.2/
dagger-1.2.2.jar 
  /prebuilts/tools/common/m2/repository/relaxngDatatype/relaxngDatatype/20020414/
relaxngDatatype-20020414.jar 
  /prebuilts/sdk/current/support/core-utils/
android-support-core-utils.jar 
  /external/clang/lib/Driver/
ToolChains.cpp     [all...]
Tools.cpp     [all...]

Completed in 1770 milliseconds

1 2 3 4 5