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

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperTransformation.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;
7 import com.bumptech.glide.load.resource.gif.GifDataTransformation;
24 public Resource<GifBitmapWrapper> transform(Resource<GifBitmapWrapper> resource, int outWidth, int outHeight) {
25 Resource<Bitmap> bitmapResource = resource.get().getBitmapResource();
26 Resource<GifData> gifResource = resource.get().getGifResource()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_transfer.c 11 struct pipe_resource *resource,
28 if (box->x == 0 && box->width == resource->width0) {
35 resource,
46 if (resource->target == PIPE_BUFFER) {
58 resource->format,
81 struct pipe_resource *resource,
98 struct pipe_resource *resource,
107 transfer->resource = resource;
u_transfer.h 14 struct pipe_resource *resource,
18 struct pipe_resource *resource,
31 struct pipe_resource *resource,
44 /* Useful helper to allow >1 implementation of resource functionality
57 struct pipe_resource *resource,
76 struct pipe_resource *resource,
93 struct pipe_resource *resource,
97 struct pipe_resource *resource);
100 struct pipe_resource *resource,
119 struct pipe_resource *resource,
    [all...]
  /external/chromium_org/content/test/
test_content_client.cc 44 base::StringPiece resource; local
45 data_pack_.GetStringPiece(resource_id, &resource);
46 return resource;
  /external/chromium_org/ppapi/c/private/
ppb_output_protection_private.h 104 * IsOutputProtection() determines if the provided resource is a
107 * @param[in] resource A <code>PP_Resource</code> corresponding to a
110 * @return <code>PP_TRUE</code> if the resource is a
112 * resource is invalid or some type other than
115 PP_Bool (*IsOutputProtection)(PP_Resource resource);
120 * @param[in] resource A <code>PP_Resource</code> corresponding to a
132 int32_t (*QueryStatus)(PP_Resource resource,
147 * @param[in] resource A <code>PP_Resource</code> corresponding to a
161 int32_t (*EnableProtection)(PP_Resource resource,
  /external/chromium_org/ppapi/cpp/
media_stream_audio_track.h 11 #include "ppapi/cpp/resource.h"
16 /// audio source resource, which receives audio buffers from a MediaStream audio
27 class MediaStreamAudioTrack : public Resource {
39 /// a <code>Resource</code>.
41 /// @param[in] resource A <code>PPB_MediaStreamAudioTrack</code> resource.
42 explicit MediaStreamAudioTrack(const Resource& resource);
47 /// @param[in] resource A <code>PPB_MediaStreamAudioTrack</code> resource
    [all...]
resource.h 13 /// This file defines a <code>Resource</code> type representing data associated
19 /// A reference counted module resource.
20 class Resource {
23 Resource();
25 /// A constructor for copying a resource.
27 /// @param[in] other A <code>Resource</code>.
28 Resource(const Resource& other);
31 virtual ~Resource();
33 /// This function assigns one <code>Resource</code> to anothe
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
GifDataBytesTranscoder.java 1 package com.bumptech.glide.load.resource.transcode;
3 import com.bumptech.glide.load.engine.Resource;
4 import com.bumptech.glide.load.resource.bytes.BytesResource;
5 import com.bumptech.glide.load.resource.gif.GifData;
9 public Resource<byte[]> transcode(Resource<GifData> toTranscode) {
16 return "GifDataBytesTranscoder.com.bumptech.glide.load.resource.transcode";
  /frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/contrib/
CountingIdlingResourceTest.java 37 private CountingIdlingResource resource; field in class:CountingIdlingResourceTest
46 resource = new CountingIdlingResource(RESOURCE_NAME, true);
50 assertEquals(RESOURCE_NAME, resource.getName());
54 resource.increment();
55 resource.decrement();
57 resource.decrement();
64 resource.increment();
66 resource.decrement();
75 resource.increment();
79 resource.decrement()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
id_objects.c 39 struct pipe_resource *resource)
43 if(!resource)
46 assert(resource->screen == id_screen->screen);
52 memcpy(&id_resource->base, resource, sizeof(struct pipe_resource));
56 id_resource->resource = resource;
61 pipe_resource_reference(&resource, NULL);
68 pipe_resource_reference(&id_resource->resource, NULL);
83 assert(surface->texture == id_resource->resource);
124 assert(view->texture == id_resource->resource);
    [all...]
  /external/mesa3d/src/gallium/drivers/identity/
id_objects.c 39 struct pipe_resource *resource)
43 if(!resource)
46 assert(resource->screen == id_screen->screen);
52 memcpy(&id_resource->base, resource, sizeof(struct pipe_resource));
56 id_resource->resource = resource;
61 pipe_resource_reference(&resource, NULL);
68 pipe_resource_reference(&id_resource->resource, NULL);
83 assert(surface->texture == id_resource->resource);
124 assert(view->texture == id_resource->resource);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.cpp 74 if (m_parserBlockingScript.resource() && m_parserBlockingScript.watchingForLoad())
79 if (pendingScript.resource() && pendingScript.watchingForLoad())
107 if (script.resource()) {
108 errorOccurred = script.resource()->errorOccurred();
109 ASSERT(script.resource()->isLoaded());
110 return ScriptSourceCode(script.resource());
121 if (script.resource() && !script.resource()->isLoaded())
143 if (pendingScript.resource() && pendingScript.watchingForLoad())
150 // The parser cannot be unblocked as a microtask requested another resource
297 ScriptResource* resource = toScriptLoaderIfPossible(script)->resource().get(); local
    [all...]
  /external/chromium_org/components/domain_reliability/
config_unittest.cc 33 DomainReliabilityConfig::Resource* resource = local
34 new DomainReliabilityConfig::Resource();
35 resource->name = "home";
36 resource->url_patterns.push_back(
38 resource->success_sample_rate = 0.0;
39 resource->failure_sample_rate = 1.0;
40 config->resources.push_back(resource);
42 resource = new DomainReliabilityConfig::Resource();
67 DomainReliabilityConfig::Resource* resource = local
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_browser_font_singleton_host.h 19 PP_Resource resource);
pepper_truetype_font_list_host.h 19 PP_Resource resource);
  /external/chromium_org/ppapi/c/dev/
ppb_printing_dev.h 36 /** Create a resource for accessing printing functionality.
41 * @return A <code>PP_Resource</code> containing the printing resource if
50 * @param[in] resource The printing resource.
59 PP_Resource resource,
  /external/chromium_org/ppapi/cpp/dev/
buffer_dev.cc 26 : Resource(other) {
30 Buffer_Dev::Buffer_Dev(PP_Resource resource)
31 : Resource(resource) {
46 Buffer_Dev::Buffer_Dev(PassRef, PP_Resource resource)
47 : Resource(PassRef(), resource) {
56 Resource::operator=(rhs);
  /external/chromium_org/ppapi/thunk/
enter.h 16 #include "ppapi/shared_impl/resource.h"
32 // If this fails, then the instance or resource ID supplied was invalid.
40 // Resource member functions: EnterResource
41 // Automatically interprets the given PP_Resource as a resource ID and sets
42 // up the resource object for you.
87 explicit EnterBase(PP_Resource resource);
89 EnterBase(PP_Resource resource, const PP_CompletionCallback& callback);
116 // Helper function to return a Resource from a PP_Resource. Having this
119 static Resource* GetResource(PP_Resource resource);
189 Resource* resource() { return resource_; } function in class:ppapi::thunk::EnterResource
    [all...]
ppb_flash_menu_thunk.cc 26 PP_Bool IsFlashMenu(PP_Resource resource) {
27 EnterResource<PPB_Flash_Menu_API> enter(resource, false);
31 int32_t Show(PP_Resource resource,
35 EnterResource<PPB_Flash_Menu_API> enter(resource, callback, true);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
glhd_objects.c 39 struct pipe_resource *resource)
43 if(!resource)
46 assert(resource->screen == glhd_screen->screen);
52 memcpy(&glhd_resource->base, resource, sizeof(struct pipe_resource));
56 glhd_resource->resource = resource;
61 pipe_resource_reference(&resource, NULL);
68 pipe_resource_reference(&glhd_resource->resource, NULL);
83 assert(surface->texture == glhd_resource->resource);
123 assert(view->texture == glhd_resource->resource);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
dri2_buffer.h 11 struct pipe_resource *resource; member in struct:dri2_buffer
  /external/glide/library/src/main/java/com/bumptech/glide/load/
DecodeFormat.java 4 import com.bumptech.glide.load.resource.bitmap.BitmapDecoder;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineJobListener.java 7 public void onEngineJobComplete(Key key, Resource resource);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDataTransformation.java 1 package com.bumptech.glide.load.resource.gif;
4 import com.bumptech.glide.load.engine.Resource;
16 public Resource<GifData> transform(Resource<GifData> resource, int outWidth, int outHeight) {
17 GifData data = resource.get();
21 return resource;
  /external/glide/library/src/main/java/com/bumptech/glide/request/
ResourceCallback.java 3 import com.bumptech.glide.load.engine.Resource;
7 public void onResourceReady(Resource resource);

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 91011>>