/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
RuntimeTestBase.java | 177 final TargetLoader loader = new TargetLoader(); local 178 return (ITarget) loader.add(className.replace('/', '.'),
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
CyclomaticComplexityTest.java | 258 final TargetLoader loader = new TargetLoader(); local 259 target = (Target) loader.add(clazz, bytes).newInstance();
|
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
HandlerCollection.java | 195 final ClassLoader loader = Thread.currentThread().getContextClassLoader(); local 207 Thread.currentThread().setContextClassLoader(loader);
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
Log.java | 37 import org.eclipse.jetty.util.Loader; 94 URL testProps = Loader.getResource(Log.class,"jetty-logging.properties",true); 158 Class<?> log_class = Loader.loadClass(Log.class, __logClass); 236 ClassLoader loader = Log.class.getClassLoader(); local 237 if (loader!=null && loader.getParent()!=null) 241 Class<?> uberlog = loader.getParent().loadClass("org.eclipse.jetty.util.log.Log");
|
/external/libexif/libexif/ |
exif-loader.c | 1 /* 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) 349 if (loader) [all...] |
/external/mesa3d/src/gallium/state_trackers/dri/drm/ |
dri2.c | 80 * Retrieve __DRIbuffer from the DRI loader. 88 struct __DRIdri2LoaderExtensionRec *loader = drawable->sPriv->dri2.loader; local 95 assert(loader); 184 buffers = loader->getBuffersWithFormat(dri_drawable, 190 buffers = loader->getBuffers(dri_drawable, 399 struct __DRIdri2LoaderExtensionRec *loader = drawable->sPriv->dri2.loader; local 401 if (loader->flushFrontBuffer == NULL) 405 loader->flushFrontBuffer(dri_drawable, dri_drawable->loaderPrivate) 420 __DRIimageLookupExtension *loader = screen->sPriv->dri2.image; local [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. */
|
/external/mesa3d/src/mesa/drivers/dri/common/ |
dri_util.h | 161 __DRIdri2LoaderExtension *loader; member in struct:__DRIscreenRec::__anon20174 219 * Private data from the loader. We just hold on to it and pass 220 * it back when calling into loader provided functions. 256 * Drawable timestamp. Increased when the loader calls invalidate.
|
/external/pdfium/third_party/freetype/src/cff/ |
cffgload.h | 5 /* OpenType Glyph Loader (specification). */ 56 /* loader :: The current glyph loader. */ 91 FT_GlyphLoader loader; member in struct:CFF_Builder_
|
/external/pdfium/third_party/freetype/src/cid/ |
cidload.c | 5 /* CID-keyed Type1 font loader (body). */ 71 CID_Loader* loader, 75 CID_Parser* parser = &loader->parser; 139 error = cid_parser_load_field_table( &loader->parser, keyword, 142 error = cid_parser_load_field( &loader->parser, 295 CID_Loader* loader, 299 CID_Parser* parser = &loader->parser; 384 loader, 531 cid_init_loader( CID_Loader* loader, 536 FT_MEM_ZERO( loader, sizeof ( *loader ) ) 653 CID_Loader loader; local [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
JavaBeanWithNullValuesTest.java | 29 private Yaml loader; field in class:JavaBeanWithNullValuesTest 33 loader = new Yaml(); 51 parsed = loader.loadAs(dumpStr, JavaBeanWithNullValues.class); 69 parsed = loader.loadAs(dumpStr, JavaBeanWithNullValues.class); 120 JavaBeanWithNullValues parsed = loader.loadAs(dumpStr, JavaBeanWithNullValues.class);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue82/ |
PropOrderInfluenceWhenAliasedInGenericCollectionTest.java | 243 Yaml loader = new Yaml(); local 244 CustomerAB parsed = loader.loadAs(dump2, CustomerAB.class);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/ |
HumanGenericsTest.java | 97 Yaml loader = new Yaml(); local 98 HumanGen father2 = (HumanGen) loader.loadAs(etalon, HumanGen.class);
|
/frameworks/base/core/jni/android/graphics/pdf/ |
PdfEditor.cpp | 88 FPDF_FILEACCESS loader; local 89 loader.m_FileLen = size; 90 loader.m_Param = reinterpret_cast<void*>(intptr_t(fd)); 91 loader.m_GetBlock = &getBlock; 93 FPDF_DOCUMENT document = FPDF_LoadCustomDocument(&loader, NULL);
|
PdfRenderer.cpp | 80 FPDF_FILEACCESS loader; local 81 loader.m_FileLen = size; 82 loader.m_Param = reinterpret_cast<void*>(intptr_t(fd)); 83 loader.m_GetBlock = &getBlock; 85 FPDF_DOCUMENT document = FPDF_LoadCustomDocument(&loader, NULL);
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
PrinterRegistry.java | 22 import android.content.Loader; 114 Loader<?> loader = mActivity.getLoaderManager().getLoader(mLoaderId); local 115 return (FusedPrintersProvider) loader; 121 public void onLoaderReset(Loader<List<PrinterInfo>> loader) { 134 public void onLoadFinished(Loader<List<PrinterInfo>> loader, List<PrinterInfo> printers) { 156 public Loader<List<PrinterInfo>> onCreateLoader(int id, Bundle args) {
|
/frameworks/support/documents-archive/src/android/support/provider/ |
DocumentArchiveHelper.java | 75 private final LruCache<String, Loader> mArchives = 76 new LruCache<String, Loader>(OPENED_ARCHIVES_CACHE_SIZE) { 79 Loader oldValue, Loader newValue) { 116 Loader loader = null; local 118 loader = obtainInstance(documentId); 119 return loader.get().queryChildDocuments(documentId, projection, sortOrder); 121 releaseInstance(loader); 131 Loader loader = null local 147 Loader loader = null; local 165 Loader loader = null; local 182 Loader loader = null; local 199 Loader loader = null; local 254 Loader loader; local 287 final Loader loader = new Loader(mProvider, localFile, id, mIdDelimiter, local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
ResourceBundleTest.java | 99 @KnownFailure("It's not allowed to pass null as parent class loader to" 122 URLClassLoader loader = new URLClassLoader(urls, null); local 129 bundle = ResourceBundle.getBundle(name, Locale.getDefault(), loader); 134 ResourceBundle.getBundle(null, Locale.getDefault(), loader); 141 ResourceBundle.getBundle(name, null, loader); 155 ResourceBundle.getBundle("", Locale.getDefault(), loader);
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
FactoryFinder.java | 122 "Using context class loader: " 130 "Using the class loader of FactoryFinder: " 325 ClassLoader loader = clazz.getClassLoader(); local 329 if (loader != null) { 330 it = loader.getResource(classnameAsResource);
|
/libcore/luni/src/main/java/libcore/reflect/ |
GenericSignatureParser.java | 79 public ClassLoader loader; field in class:GenericSignatureParser 100 public GenericSignatureParser(ClassLoader loader) { 101 this.loader = loader; 319 new ParameterizedTypeImpl(null, qualIdent.toString(), typeArgs, loader); 329 loader);
|
/libcore/ojluni/src/main/java/java/lang/ |
ClassLoader.java | 66 * A class loader is an object that is responsible for loading classes. The 68 * href="#name">binary name</a> of a class, a class loader should attempt to 79 * The class loader for an array class, as returned by {@link 80 * Class#getClassLoader()} is the same as the class loader for its element 82 * class loader. 93 * associated parent class loader. When requested to find a class or 95 * class or resource to its parent class loader before attempting to find the 96 * class or resource itself. The virtual machine's built-in class loader, 97 * called the "bootstrap class loader", does not itself have a parent but may 110 * loading can lead to deadlocks because the loader lock is held for th 183 public static ClassLoader loader = ClassLoader.createSystemClassLoader(); field in class:ClassLoader.SystemClassLoader 737 ClassLoader loader; local [all...] |
/libcore/ojluni/src/main/java/java/util/ |
ServiceLoader.java | 83 * class loader that was initially queried to locate the configuration file; 84 * note that this is not necessarily the class loader from which the file was 88 * service loader maintains a cache of the providers that have been loaded so 157 * the class path of a class loader that is used for provider loading includes 176 * The type of the service to be loaded by this loader 191 // The class loader used to locate, load, and instantiate providers 192 private ClassLoader loader; field in class:ServiceLoader 201 * Clear this loader's provider cache so that all providers will be 206 * providers from scratch, just as is done by a newly-created loader. 213 lookupIterator = new LazyIterator(service, loader); 321 ClassLoader loader; field in class:ServiceLoader.LazyIterator [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
StructuredNameEditorView.java | 277 ClassLoader loader = getClass().getClassLoader(); local 278 mSuperState = in.readParcelable(loader); 281 mSnapshot = in.readParcelable(loader);
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
MissedCallNotifier.java | 117 ContactPhotoLoader loader = new ContactPhotoLoader(mContext, contactInfo); local 118 Bitmap photoIcon = loader.loadPhotoIcon();
|
/packages/apps/Dialer/tests/src/com/android/dialer/interactions/ |
PhoneNumberInteractionTest.java | 66 final CursorLoader loader = getLoader(); local 69 waitMethod.invoke(loader, null);
|