Searched defs:resource (Results 26 - 50 of 721) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/cpp/
H A Dcore.h27 /// <code>resource</code>.
29 /// @param[in] resource A <code>PP_Resource</code> corresponding to a
30 /// resource.
31 void AddRefResource(PP_Resource resource) { argument
32 interface_->AddRefResource(resource);
36 /// <code>resource</code>. The resource will be deallocated if the
39 /// @param[in] resource A <code>PP_Resource</code> corresponding to a
40 /// resource.
41 void ReleaseResource(PP_Resource resource) { argument
[all...]
H A Durl_response_info.cc25 URLResponseInfo::URLResponseInfo(PassRef, PP_Resource resource) argument
26 : Resource(PASS_REF, resource) {
/external/chromium_org/ppapi/cpp/dev/
H A Ddevice_ref_dev.cc22 DeviceRef_Dev::DeviceRef_Dev(PP_Resource resource) : Resource(resource) { argument
25 DeviceRef_Dev::DeviceRef_Dev(PassRef, PP_Resource resource) argument
26 : Resource(PASS_REF, resource) {
/external/chromium_org/ppapi/host/
H A Dmessage_filter_host.cc16 PP_Resource resource,
18 : ResourceHost(host, instance, resource) {
13 MessageFilterHost( PpapiHost* host, PP_Instance instance, PP_Resource resource, const scoped_refptr<ResourceMessageFilter>& message_filter) argument
/external/chromium_org/ppapi/proxy/
H A Dlocking_resource_releaser.h15 // LockingResourceReleaser is a simple RAII class for releasing a resource at
16 // the end of scope. This acquires the ProxyLock before releasing the resource.
22 explicit LockingResourceReleaser(PP_Resource resource) argument
23 : resource_(resource) {
/external/chromium_org/ppapi/thunk/
H A Dppb_device_ref_dev_thunk.cc19 PP_Bool IsDeviceRef(PP_Resource resource) { argument
21 EnterResource<PPB_DeviceRef_API> enter(resource, false);
H A Dppb_flash_message_loop_thunk.cc24 PP_Bool IsFlashMessageLoop(PP_Resource resource) { argument
25 EnterResource<PPB_Flash_MessageLoop_API> enter(resource, false);
29 int32_t Run(PP_Resource resource) { argument
30 EnterResource<PPB_Flash_MessageLoop_API> enter(resource, true);
36 void Quit(PP_Resource resource) { argument
37 EnterResource<PPB_Flash_MessageLoop_API> enter(resource, true);
H A Dppb_printing_dev_thunk.cc28 int32_t GetDefaultPrintSettings(PP_Resource resource, argument
32 EnterResource<PPB_Printing_API> enter(resource, callback, true);
H A Dppb_url_response_info_thunk.cc19 PP_Bool IsURLResponseInfo(PP_Resource resource) { argument
21 EnterResource<PPB_URLResponseInfo_API> enter(resource, false);
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DTransformation.java7 * @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); argument
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngineJobListener.java7 public void onEngineJobComplete(Key key, Resource resource); argument
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
H A DGifDataBytesTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
4 import com.bumptech.glide.load.resource.bytes.BytesResource;
5 import com.bumptech.glide.load.resource.gif.GifData;
16 return "GifDataBytesTranscoder.com.bumptech.glide.load.resource.transcode";
H A DGifDataDrawableTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
4 import com.bumptech.glide.load.resource.gif.GifData;
5 import com.bumptech.glide.load.resource.gif.GifDrawable;
6 import com.bumptech.glide.load.resource.gif.GifDrawableResource;
16 return "GifDataDrawableTranscoder.com.bumptech.glide.load.resource.transcode";
H A DResourceTranscoder.java1 package com.bumptech.glide.load.resource.transcode;
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.
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DResourceCallback.java7 public void onResourceReady(Resource resource); argument
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java20 * Simple container class for textures. Serves as a mapping between Android resource ids and
26 public int resource; field in class:Texture
38 resource = -1;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMenuInflater.java25 public void inflate(int resource, Menu root) { argument
26 shadowOf(context.getApplicationContext()).getResourceLoader().inflateMenu(context, resource, root);
/external/smack/src/org/jivesoftware/smack/
H A DUserAuthentication.java37 * the server. The server may assign a full JID with a username and resource different than
44 * @param resource the requested resource.
47 * @return the full JID provided by the server while binding a resource for the connection.
50 String authenticate(String username, String resource, CallbackHandler cbh) throws argument
55 * the server. The server may assign a full JID with a username and resource different than
63 * @param resource the desired resource.
64 * @return the full JID provided by the server while binding a resource for the connection.
67 String authenticate(String username, String password, String resource) throw argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DVideoBitmapDecoder.java1 package com.bumptech.glide.load.resource.bitmap;
29 public Bitmap decode(ParcelFileDescriptor resource, BitmapPool bitmapPool, int outWidth, int outHeight, argument
33 mediaMetadataRetriever.setDataSource(resource.getFileDescriptor());
36 resource.close();
42 return "VideoBitmapDecoder.com.bumptech.glide.load.resource.bitmap";
/external/apache-harmony/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java18 package tests.support.resource;
126 public static String getResourceURL(String resource) { argument
127 return "http://" + Support_Configuration.TestResources + resource;
131 * Util method to load resource files
133 * @param name - name of resource file
134 * @return - resource input stream
139 throw new RuntimeException("Failed to load resource: " + name);
145 * Util method to get absolute path to resource file
147 * @param name - name of resource file
148 * @return - path to resource
[all...]
/external/chromium_org/base/win/
H A Dresource_util.cc34 void* resource = LockResource(hres); local
35 if (!resource)
38 *data = resource;
/external/chromium_org/cc/layers/
H A Dnine_patch_layer_unittest.cc68 scoped_ptr<ScopedUIResource> resource = ScopedUIResource::Create( local
73 test_layer->SetUIResourceId(resource->id());
H A Dui_resource_layer_unittest.cc97 scoped_ptr<ScopedUIResource> resource = ScopedUIResource::Create( local
99 test_layer->SetUIResourceId(resource->id());
/external/chromium_org/cc/resources/
H A Dresource_update.cc11 ResourceUpdate ResourceUpdate::Create(PrioritizedResource* resource, argument
18 update.texture = resource;
/external/chromium_org/chrome/browser/task_manager/
H A Dtask_manager_unittest.cc117 TestResource resource; local
119 task_manager.AddResource(&resource);
120 ASSERT_FALSE(resource.refresh_called());
123 ASSERT_TRUE(resource.refresh_called());
124 task_manager.RemoveResource(&resource);

Completed in 758 milliseconds

1234567891011>>