HomeSort by relevance Sort by last modified time
    Searched refs:resource (Results 401 - 425 of 2392) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ppapi/cpp/private/
x509_certificate_private.h 10 #include "ppapi/cpp/resource.h"
16 class X509CertificatePrivate : public Resource {
20 X509CertificatePrivate(PassRef, PP_Resource resource);
  /external/chromium_org/ppapi/cpp/
video_frame.cc 23 VideoFrame::VideoFrame(const VideoFrame& other) : Resource(other) {
26 VideoFrame::VideoFrame(const Resource& resource) : Resource(resource) {
29 VideoFrame::VideoFrame(PassRef, PP_Resource resource)
30 : Resource(PASS_REF, resource) {
  /external/chromium_org/ppapi/generators/test_parser/
interface.idl 12 /* OK Param(resource) */
13 [in] PP_Resource resource);
40 /* OK Param(resource) */
41 [in] PP_Resource resource);
  /external/chromium_org/ppapi/generators/test_thunk/
simple.idl 21 PP_Bool IsSimple([in] PP_Resource resource);
30 [in] PP_Resource resource);
  /external/chromium_org/ppapi/host/
message_filter_host.h 27 PP_Resource resource,
  /external/chromium_org/third_party/icu/source/test/testdata/
tstfiles.mk 3 # TEST_RES_SOURCE defines data driven tests and other resource files to be included with
4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_resource.h 97 static INLINE struct i915_texture *i915_texture(struct pipe_resource *resource)
99 struct i915_texture *tex = (struct i915_texture *)resource;
104 static INLINE struct i915_buffer *i915_buffer(struct pipe_resource *resource)
106 struct i915_buffer *tex = (struct i915_buffer *)resource;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_flush.h 48 struct pipe_resource *resource,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_buffer.h 12 * resource->data has not been updated to reflect modified VRAM contents
14 * USER_MEMORY: resource->data is a pointer to client memory and may change
24 * The address of a resource will lie within the nouveau_bo referenced,
68 nv04_resource(struct pipe_resource *resource)
70 return (struct nv04_resource *)resource;
73 /* is resource mapped into the GPU's address space (i.e. VRAM or GART) ? */
75 nouveau_resource_mapped_by_gpu(struct pipe_resource *resource)
77 return nv04_resource(resource)->domain != 0;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_objects.c 42 struct pipe_resource *resource)
46 if(!resource)
49 assert(resource->screen == rb_screen->screen);
55 memcpy(&rb_resource->base, resource, sizeof(struct pipe_resource));
59 rb_resource->resource = resource;
66 pipe_resource_reference(&resource, NULL);
76 pipe_resource_reference(&rb_resource->resource, NULL);
91 assert(surface->texture == rb_resource->resource);
132 assert(view->texture == rb_resource->resource);
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
rlimit_mmap_test.cc 6 #include <sys/resource.h>
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Transformation.java 3 import com.bumptech.glide.load.engine.Resource;
7 * @param <T> The type of the resource being transformed.
15 * @param resource The resource to transform
20 public abstract Resource<T> transform(Resource<T> resource, int outWidth, int outHeight);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
VideoBitmapDecoder.java 1 package com.bumptech.glide.load.resource.bitmap;
29 public Bitmap decode(ParcelFileDescriptor resource, BitmapPool bitmapPool, int outWidth, int outHeight,
33 mediaMetadataRetriever.setDataSource(resource.getFileDescriptor());
36 resource.close();
42 return "VideoBitmapDecoder.com.bumptech.glide.load.resource.bitmap";
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bytes/
BytesResource.java 1 package com.bumptech.glide.load.resource.bytes;
3 import com.bumptech.glide.load.engine.Resource;
5 public class BytesResource extends Resource<byte[]> {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceEncoder.java 1 package com.bumptech.glide.load.resource.gifbitmap;
4 import com.bumptech.glide.load.engine.Resource;
6 import com.bumptech.glide.load.resource.gif.GifData;
21 public boolean encode(Resource<GifBitmapWrapper> resource, OutputStream os) {
22 final GifBitmapWrapper gifBitmap = resource.get();
23 final Resource<Bitmap> bitmapResource = gifBitmap.getBitmapResource();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
ResourceTranscoder.java 1 package com.bumptech.glide.load.resource.transcode;
3 import com.bumptech.glide.load.engine.Resource;
6 * Transcodes a resource of one type to a resource of another type.
8 * @param <Z> The type of the resource that will be transcoded from.
9 * @param <R> The type of the resource that will be transcoded to.
13 * Transcodes the given resource to the new resource type and returns the wew resource.
15 * @param toTranscode The resource to transcode
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
RequestListener.java 9 * @param <R> The type of resource being loaded.
47 * @param resource The resource that was loaded for the target.
52 * @param isFirstResource True if this is the first resource to in this load to be loaded into the target. For
55 * @return True if the listener has handled setting the resource on the target (including any animations), false to
58 public abstract boolean onResourceReady(R resource, T model, Target target, boolean isFromMemoryCache,
  /external/icu/icu4c/source/test/testdata/
tstfiles.mk 3 # TEST_RES_SOURCE defines data driven tests and other resource files to be included with
4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource.h 97 static INLINE struct i915_texture *i915_texture(struct pipe_resource *resource)
99 struct i915_texture *tex = (struct i915_texture *)resource;
104 static INLINE struct i915_buffer *i915_buffer(struct pipe_resource *resource)
106 struct i915_buffer *tex = (struct i915_buffer *)resource;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.h 48 struct pipe_resource *resource,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.h 12 * resource->data has not been updated to reflect modified VRAM contents
14 * USER_MEMORY: resource->data is a pointer to client memory and may change
24 * The address of a resource will lie within the nouveau_bo referenced,
68 nv04_resource(struct pipe_resource *resource)
70 return (struct nv04_resource *)resource;
73 /* is resource mapped into the GPU's address space (i.e. VRAM or GART) ? */
75 nouveau_resource_mapped_by_gpu(struct pipe_resource *resource)
77 return nv04_resource(resource)->domain != 0;
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_objects.c 42 struct pipe_resource *resource)
46 if(!resource)
49 assert(resource->screen == rb_screen->screen);
55 memcpy(&rb_resource->base, resource, sizeof(struct pipe_resource));
59 rb_resource->resource = resource;
66 pipe_resource_reference(&resource, NULL);
76 pipe_resource_reference(&rb_resource->resource, NULL);
91 assert(surface->texture == rb_resource->resource);
132 assert(view->texture == rb_resource->resource);
    [all...]
  /external/valgrind/main/none/tests/
closeall.c 3 #include <sys/resource.h>
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
DynamicIdMap.java 44 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
47 * @param type the type of the resource
48 * @param name the name of the resource
56 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
59 * @param resource the type/name of the resource
62 public Integer getId(Pair<ResourceType, String> resource) {
63 Integer value = mDynamicIds.get(resource);
66 mDynamicIds.put(resource, value);
67 mRevDynamicIds.put(value, resource);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
DynamicIdMap.java 43 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
46 * @param type the type of the resource
47 * @param name the name of the resource
55 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
58 * @param resource the type/name of the resource
61 public Integer getId(Pair<ResourceType, String> resource) {
62 Integer value = mDynamicIds.get(resource);
65 mDynamicIds.put(resource, value);
66 mRevDynamicIds.put(value, resource);
    [all...]

Completed in 1454 milliseconds

<<11121314151617181920>>