Searched defs:loader (Results 126 - 150 of 282) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DUResourceBundle.java88 * <p>Note: Please use pass a class loader for loading non-ICU resources. Java security does not
89 * allow loading of resources across jar files. You must provide your class loader
243 * @param loader the loader to use
248 ClassLoader loader) {
253 return getBundleInstance(baseName, uloc.getBaseName(), loader, false);
260 * allow loading of resources across jar files. You must provide your class loader
266 * @param loader the loader to use
271 ClassLoader loader) {
247 getBundleInstance(String baseName, Locale locale, ClassLoader loader) argument
270 getBundleInstance(String baseName, ULocale locale, ClassLoader loader) argument
[all...]
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
H A DReportSupport.java62 private final ExecFileLoader loader; field in class:ReportSupport
73 this.loader = new ExecFileLoader();
87 loader.load(execFile);
133 visitor.visitInfo(loader.getSessionInfoStore().getInfos(), loader
197 loader.getExecutionDataStore(), builder);
/external/javassist/src/main/javassist/tools/web/
H A DWebserver.java28 * does not allow an applet to create and use a class loader,
111 public void setClassPool(ClassPool loader) { argument
112 classPool = loader;
/external/libexif/libexif/
H A Dexif-loader.c1 /* exif-loader.c
23 #include <libexif/exif-loader.h>
330 ExifLoader *loader; local
335 loader = exif_mem_alloc (mem, sizeof (ExifLoader));
336 if (!loader)
338 loader->ref_count = 1;
340 loader->mem = mem;
343 return loader;
347 exif_loader_ref (ExifLoader *loader) argument
349 if (loader)
354 exif_loader_free(ExifLoader *loader) argument
369 exif_loader_unref(ExifLoader *loader) argument
378 exif_loader_reset(ExifLoader *loader) argument
391 exif_loader_get_data(ExifLoader *loader) argument
407 exif_loader_get_buf(ExifLoader *loader, const unsigned char **buf, unsigned int *buf_size) argument
427 exif_loader_log(ExifLoader *loader, ExifLog *log) argument
[all...]
/external/libmojo/base/android/java/src/org/chromium/base/library_loader/
H A DLibraryLoader.java102 * @param loader the NativeLibraryPreloader, it shall only be set once and before the
105 public static void setNativeLibraryPreloader(NativeLibraryPreloader loader) { argument
108 sLibraryPreloader = loader;
458 * Override the library loader (normally with a mock) for testing.
459 * @param loader the mock library loader.
462 public static void setLibraryLoaderForTesting(LibraryLoader loader) { argument
463 sInstance = loader;
/external/mesa3d/src/mesa/drivers/dri/common/
H A Ddri_util.h172 const __DRIdri2LoaderExtension *loader; member in struct:__DRIscreenRec::__anon17041
178 const __DRIimageLoaderExtension *loader; member in struct:__DRIscreenRec::__anon17042
234 * Private data from the loader. We just hold on to it and pass
235 * it back when calling into loader provided functions.
271 * Drawable timestamp. Increased when the loader calls invalidate.
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
H A DInlineBytecodeGenerator.java156 public byte[] transform(ClassLoader loader, argument
/external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
H A DClassDefinitionUtils.java102 Class<?> loader = Class.forName("java.lang.ClassLoader"); // JVM crash w/o this
103 DEFINE_CLASS = loader.getDeclaredMethod("defineClass",
121 * Define a class in the provided class loader from the array of bytes. Inspired by cglib
127 * @param loader the class loader where the class will be loaded
132 public static <T> Class<T> defineClass(String className, byte[] b, ClassLoader loader) argument
135 Class<T> c = (Class<T>) DEFINE_CLASS.invoke(loader, args);
137 Class.forName(className, true, loader);
203 * Will convert a class name to its class loader resource name (e.g {@code org.objenesis.EmptyClass}
214 * Check if this class already exists in the class loader an
[all...]
/external/oj-libjdwp/src/share/back/
H A DReferenceTypeImpl.c90 jobject loader; local
101 error = classLoader(clazz, &loader);
107 (void)outStream_writeObjectRef(env, out, loader);
/external/python/cpython3/Lib/test/test_importlib/import_/
H A Dtest_path.py23 # Test None returned upon not finding a suitable loader.
132 self.assertEqual(spec.loader, __loader__)
136 loader = None variable in class:FinderTests.test_finder_with_find_loader.TestFinder
139 return self.loader, self.portions
145 success_finder.loader = __loader__
148 self.assertEqual(spec.loader, __loader__)
204 self.assertIs(found.loader, importer)
/external/tensorflow/tensorflow/contrib/factorization/python/ops/
H A Dclustering_ops.py26 from tensorflow.contrib.util import loader namespace
41 _clustering_ops = loader.load_op_library(
H A Dfactorization_ops.py27 from tensorflow.contrib.util import loader namespace
46 _factorization_ops = loader.load_op_library(
/external/tensorflow/tensorflow/contrib/framework/python/ops/
H A Dvariables.py27 from tensorflow.contrib.util import loader namespace
83 loader.load_op_library(
/external/tensorflow/tensorflow/python/saved_model/
H A Dsaved_model_test.py41 from tensorflow.python.saved_model import loader namespace
124 self.assertFalse(loader.maybe_saved_model_directory(base_path))
126 self.assertTrue(loader.maybe_saved_model_directory(base_path))
128 self.assertFalse(loader.maybe_saved_model_directory(base_path))
137 loader.load(sess, ["foo"], export_dir)
147 loader.load(sess, ["foo"], export_dir)
161 loader.load(sess, ["foo"], export_dir)
176 loader.load(sess, [tag_constants.TRAINING], export_dir)
244 loader.load(sess, [tag_constants.TRAINING], export_dir)
251 loader
[all...]
/external/tensorflow/tensorflow/python/tools/
H A Dsaved_model_cli.py43 from tensorflow.python.saved_model import loader namespace
294 loader.load(sess, tag_set.split(','), saved_model_dir)
/external/testng/src/main/java/org/testng/internal/
H A DClassHelper.java38 /** Add a class loader to the searchable loaders. */
39 public static void addClassLoader(final ClassLoader loader) { argument
40 m_classLoaders.add(loader);
/external/freetype/src/autofit/
H A Dafloader.c29 /* Initialize glyph loader. */
32 af_loader_init( AF_Loader loader, argument
35 FT_ZERO( loader );
37 loader->hints = hints;
41 /* Reset glyph loader and compute globals if necessary. */
44 af_loader_reset( AF_Loader loader,
51 loader->face = face;
52 loader->globals = (AF_FaceGlobals)face->autohint.data;
54 if ( !loader->globals )
56 error = af_face_globals_new( face, &loader
90 af_loader_embolden_glyph_in_slot( AF_Loader loader, FT_Face face, AF_StyleMetrics style_metrics ) argument
[all...]
/external/freetype/src/truetype/
H A Dttsubpix.c895 loader->exec->sph_tweak_flags |= SPH_TWEAK_##x;
900 loader->exec->sph_tweak_flags &= ~SPH_TWEAK_##x;
904 sph_set_tweaks( TT_Loader loader, argument
907 TT_Face face = loader->face;
909 FT_UInt ppem = loader->size->metrics->x_ppem;
924 if ( loader->exec->sph_tweak_flags & SPH_TWEAK_PIXEL_HINTING )
926 loader->exec->ignore_x_mode = FALSE;
955 if ( loader->exec->sph_tweak_flags & SPH_TWEAK_RASTERIZER_35 )
957 if ( loader->exec->rasterizer_version != TT_INTERPRETER_VERSION_35 )
959 loader
[all...]
/external/freetype/src/type42/
H A Dt42parse.c38 T42_Loader loader );
41 T42_Loader loader );
45 T42_Loader loader );
49 T42_Loader loader );
244 T42_Loader loader )
246 T42_Parser parser = &loader->parser;
295 T42_Loader loader )
297 T42_Parser parser = &loader->parser;
319 PS_Table char_table = &loader->encoding_table;
357 loader
1080 t42_load_keyword( T42_Face face, T42_Loader loader, T1_Field field ) argument
1266 t42_loader_init( T42_Loader loader, T42_Face face ) argument
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DCacheBuilder.java783 * @param loader the cache loader used to obtain new values
787 CacheLoader<? super K1, V1> loader) {
789 return new LocalCache.LocalLoadingCache<K1, V1>(this, loader);
786 build( CacheLoader<? super K1, V1> loader) argument
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java538 * @param loader the cache loader used to obtain new values
542 CacheLoader<? super K1, V1> loader) {
544 return new LocalCache.LocalLoadingCache<K1, V1>(this, loader);
541 build( CacheLoader<? super K1, V1> loader) argument
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUBinary.java434 * @param loader Used for loader.getResourceAsStream() unless the data is found elsewhere.
435 * @param resourceName Resource name for use with the loader.
440 public static ByteBuffer getData(ClassLoader loader, String resourceName, String itemPath) { argument
441 return getData(loader, resourceName, itemPath, false);
460 * @param loader Used for loader.getResourceAsStream() unless the data is found elsewhere.
461 * @param resourceName Resource name for use with the loader.
466 // public static ByteBuffer getRequiredData(ClassLoader loader, String resourceName,
468 // return getData(loader, resourceNam
484 getData(ClassLoader loader, String resourceName, String itemPath, boolean required) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Ducol_res.cpp141 CollationLoader *loader = local
144 return loader->createCacheEntry(errorCode);
161 CollationLoader loader(rootEntry, locale, errorCode);
164 return loader.getCacheEntry(errorCode);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUBinary.java430 * @param loader Used for loader.getResourceAsStream() unless the data is found elsewhere.
431 * @param resourceName Resource name for use with the loader.
436 public static ByteBuffer getData(ClassLoader loader, String resourceName, String itemPath) { argument
437 return getData(loader, resourceName, itemPath, false);
456 * @param loader Used for loader.getResourceAsStream() unless the data is found elsewhere.
457 * @param resourceName Resource name for use with the loader.
462 // public static ByteBuffer getRequiredData(ClassLoader loader, String resourceName,
464 // return getData(loader, resourceNam
480 getData(ClassLoader loader, String resourceName, String itemPath, boolean required) argument
[all...]
/external/javassist/src/main/javassist/
H A DClassPool.java966 * To load the class, this method uses the context class loader
973 * server, the context class loader might be inappropriate to load the
977 * complex functionality, you should write your own class loader.
996 * <p>The default is the context class loader.
1007 * Obtains a class loader that seems appropriate to look up a class
1028 public Class toClass(CtClass ct, ClassLoader loader) argument
1031 return toClass(ct, loader, null);
1040 * loaded by the given class loader to construct a
1042 * on the class loader is invoked through the reflection API,
1051 * complex functionality, you should write your own class loader
1064 toClass(CtClass ct, ClassLoader loader, ProtectionDomain domain) argument
1095 toClass2(Method method, ClassLoader loader, Object[] args) argument
[all...]

Completed in 615 milliseconds

1234567891011>>