Searched defs:resource (Results 51 - 75 of 351) sorted by relevance

1234567891011>>

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
H A DGifBitmapWrapperResource.java1 package com.bumptech.glide.load.resource.gifbitmap;
6 import com.bumptech.glide.load.resource.gif.GifDrawable;
9 * A resource that wraps an {@link com.bumptech.glide.load.resource.gifbitmap.GifBitmapWrapper}.
H A DGifBitmapWrapperStreamResourceDecoder.java1 package com.bumptech.glide.load.resource.gifbitmap;
12 * {@link com.bumptech.glide.load.resource.gifbitmap.GifBitmapWrapper} from {@link java.io.InputStream} data.
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
H A DBitmapBytesTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
6 import com.bumptech.glide.load.resource.bytes.BytesResource;
11 * An {@link com.bumptech.glide.load.resource.transcode.ResourceTranscoder} that converts
38 return "BitmapBytesTranscoder.com.bumptech.glide.load.resource.transcode";
H A DBitmapToGlideDrawableTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
7 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
10 * A wrapper for {@link com.bumptech.glide.load.resource.transcode.GlideBitmapDrawableTranscoder} that transcodes
11 * to {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} rather than
12 * {@link com.bumptech.glide.load.resource.bitmap.GlideBitmapDrawable}.
H A DGifBitmapWrapperDrawableTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
6 import com.bumptech.glide.load.resource.bitmap.GlideBitmapDrawable;
7 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
8 import com.bumptech.glide.load.resource.gifbitmap.GifBitmapWrapper;
11 * An {@link com.bumptech.glide.load.resource.transcode.ResourceTranscoder} that can transcode either an
12 * {@link Bitmap} or an {@link com.bumptech.glide.load.resource.gif.GifDrawable} into an
41 return "GifBitmapWrapperDrawableTranscoder.com.bumptech.glide.load.resource.transcode";
H A DGlideBitmapDrawableTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
10 import com.bumptech.glide.load.resource.bitmap.GlideBitmapDrawable;
11 import com.bumptech.glide.load.resource.bitmap.GlideBitmapDrawableResource;
14 * An {@link com.bumptech.glide.load.resource.transcode.ResourceTranscoder} that converts
38 return "GlideBitmapDrawableTranscoder.com.bumptech.glide.load.resource.transcode";
H A DTranscoderRegistry.java1 package com.bumptech.glide.load.resource.transcode;
9 * A class that allows {@link com.bumptech.glide.load.resource.transcode.ResourceTranscoder}s to be registered and
19 * Registers the given {@link com.bumptech.glide.load.resource.transcode.ResourceTranscoder} using the given
22 * @param decodedClass The class of the resource that the transcoder transcodes from.
23 * @param transcodedClass The class of the resource that the transcoder transcodes to.
25 * @param <Z> The type of the resource that the transcoder transcodes from.
26 * @param <R> The type of the resource that the transcoder transcodes to.
33 * Returns the currently registered {@link com.bumptech.glide.load.resource.transcode.ResourceTranscoder} for the
36 * @param decodedClass The class of the resource that the transcoder transcodes from.
37 * @param transcodedClass The class of the resource tha
[all...]
H A DUnitTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
6 * A simple {@link ResourceTranscoder} that simply returns the given resource.
8 * @param <Z> The type of the resource that will be transcoded from and to.
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DRequestListener.java9 * @param <R> The type of resource being loaded.
39 * @param isFirstResource True if this exception is for the first resource to load.
49 * @param resource The resource that was loaded for the target.
54 * @param isFirstResource True if this is the first resource to in this load to be loaded into the target. For
57 * @return True if the listener has handled setting the resource on the target (including any animations), false to
60 boolean onResourceReady(R resource, T model, Target<R> target, boolean isFromMemoryCache, boolean isFirstResource); argument
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DGlideDrawableImageViewTarget.java5 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
15 private GlideDrawable resource; field in class:GlideDrawableImageViewTarget
19 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} in an {@link android.widget.ImageView}.
29 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} in an {@link android.widget.ImageView}.
32 * @param maxLoopCount A value to pass to to {@link com.bumptech.glide.load.resource.drawable.GlideDrawable}s
34 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable#setLoopCount(int)}.
47 * @param resource {@inheritDoc}
51 public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> animation) { argument
52 if (!resource.isAnimated()) {
60 float drawableRatio = resource
79 setResource(GlideDrawable resource) argument
[all...]
H A DPreloadTarget.java7 * A one time use {@link com.bumptech.glide.request.target.Target} class that loads a resource into memory and then
10 * @param <Z> The type of resource that will be loaded into memory.
17 * @param width The width in pixels of the desired resource.
18 * @param height The height in pixels of the desired resource.
19 * @param <Z> The type of the desired resource.
30 public void onResourceReady(Z resource, GlideAnimation<? super Z> glideAnimation) { argument
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DConfigLoader.java22 * Internal utility to load runtime configuration from a classpath resource and
34 static Properties load(final String resource, final Properties system) { argument
36 loadResource(resource, result);
42 private static void loadResource(final String resource, argument
44 final InputStream file = Offline.class.getResourceAsStream(resource);
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
H A DAntResourcesLocator.java46 * Adds the given file or directory resource to the locator.
48 * @param resource
49 * resource to add
51 void add(final Resource resource) { argument
53 if (resource.isDirectory()) {
54 final FileResource dir = (FileResource) resource;
58 filesLocator.add(resource);
H A DInstrumentTask.java84 final Resource resource = (Resource) resourceIterator.next();
85 if (resource.isDirectory()) {
88 total += instrument(instrumenter, resource);
95 final Resource resource) {
96 final File file = new File(destdir, resource.getName());
102 input = resource.getInputStream();
105 resource.getName());
113 resource), e, getLocation());
94 instrument(final Instrumenter instrumenter, final Resource resource) argument
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_texture.h43 struct pipe_resource *resource; member in struct:trace_resource
114 (void)trace_resource(transfer->resource);
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Dnative_wayland_drm_bufmgr_helper.c60 struct pipe_resource *resource = buffer->driver_buffer; local
62 pipe_resource_reference(&resource, NULL);
78 struct pipe_resource *resource = buffer->driver_buffer; local
85 switch (resource->format) {
/external/mesa3d/src/gallium/state_trackers/gbm/
H A Dgbm_gallium_drmint.h53 struct pipe_resource *resource; member in struct:gbm_gallium_drm_bo
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_framebuffer.c56 struct pipe_resource *resource = strb->rtt ? strb->rtt->pt : strb->texture; local
59 enum pipe_format format = st->ctx->Color.sRGBEnabled ? resource->format : util_format_linear(resource->format);
63 strb->surface->texture != resource ||
68 for (level = 0; level <= resource->last_level; level++) {
69 if (u_minify(resource->width0, level) == rtt_width &&
70 u_minify(resource->height0, level) == rtt_height) {
82 resource,
164 /* Make sure the resource binding flags were set properly */
/external/replicaisland/src/com/replica/replicaisland/
H A DConversationUtils.java42 public final static ArrayList<Conversation> loadDialog(int resource, Context context) { argument
43 XmlResourceParser parser = context.getResources().getXml(resource);
/external/skia/src/gpu/
H A DGrGpuResourcePriv.h21 * Sets a unique key for the resource. If the resource was previously cached as scratch it will
22 * be converted to a uniquely-keyed resource. If the key is invalid then this is equivalent to
23 * removeUniqueKey(). If another resource is using the key then its unique key is removed and
24 * this resource takes over the key.
28 /** Removes the unique key from a resource. If the resource has a scratch key, it may be
33 * If the resource is uncached make it cached. Has no effect on resources that are wrapped or
39 * If the resource is cached make it uncached. Has no effect on resources that are wrapped or
45 * Does the resource coun
67 ResourcePriv(GrGpuResource* resource) argument
[all...]
H A DGrGpuResourceRef.cpp16 GrGpuResourceRef::GrGpuResourceRef(GrGpuResource* resource, GrIOType ioType) { argument
20 this->setResource(resource, ioType);
54 void GrGpuResourceRef::setResource(GrGpuResource* resource, GrIOType ioType) { argument
58 if (nullptr == resource) {
62 fResource = resource;
/external/skia/src/gpu/vk/
H A DGrVkUniformBuffer.h38 GrVkUniformBuffer(const GrVkBuffer::Desc& desc, const GrVkBuffer::Resource* resource) argument
39 : INHERITED(desc, resource) {
/external/skia/tests/
H A DYUVTest.cpp14 static SkStreamAsset* resource(const char path[]) { function
22 SkAutoTDelete<SkStream> stream(resource(path));
24 INFOF(reporter, "Missing resource '%s'\n", path);
/external/smali/baksmali/src/test/java/org/jf/baksmali/
H A DAnalysisTest.java115 private File findResource(String resource) throws URISyntaxException { argument
116 URL resUrl = Resources.getResource(resource);
121 private String readResource(String resource) throws URISyntaxException, IOException { argument
122 URL url = Resources.getResource(resource);
/external/webrtc/webrtc/libjingle/xmpp/
H A Djid.h21 // consists of three parts: the node, the domain and the resource, e.g.:
23 // node@domain/resource
25 // The node and resource are both optional. A valid jid is defined to have
26 // a domain. A bare jid is defined to not have a resource and a full jid
27 // *does* have a resource.
39 const std::string & resource() const { return resource_name_; } function in class:buzz::Jid

Completed in 401 milliseconds

1234567891011>>