HomeSort by relevance Sort by last modified time
    Searched refs:Resource (Results 1 - 25 of 605) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/cc/resources/
layer_updater.cc 11 LayerUpdater::Resource::Resource(scoped_ptr<PrioritizedResource> texture)
14 LayerUpdater::Resource::~Resource() {}
resource.cc 5 #include "cc/resources/resource.h"
9 size_t Resource::bytes() const {
image_layer_updater.h 18 class Resource : public LayerUpdater::Resource {
20 Resource(ImageLayerUpdater* updater,
22 virtual ~Resource();
32 DISALLOW_COPY_AND_ASSIGN(Resource);
37 virtual scoped_ptr<LayerUpdater::Resource> CreateResource(
  /external/chromium_org/chrome/browser/task_manager/
resource_provider.cc 19 int Resource::GetRoutingID() const {
23 bool Resource::ReportsCacheStats() const {
27 blink::WebCache::ResourceTypeStats Resource::GetWebCoreCacheStats() const {
31 bool Resource::ReportsSqliteMemoryUsed() const {
35 size_t Resource::SqliteMemoryUsedBytes() const {
39 bool Resource::ReportsV8MemoryStats() const {
43 size_t Resource::GetV8MemoryAllocated() const {
47 size_t Resource::GetV8MemoryUsed() const {
51 bool Resource::CanInspect() const {
55 content::WebContents* Resource::GetWebContents() const
    [all...]
  /external/chromium_org/ppapi/cpp/
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...]
resource.cc 5 #include "ppapi/cpp/resource.h"
14 Resource::Resource() : pp_resource_(0) {
17 Resource::Resource(const Resource& other) : pp_resource_(other.pp_resource_) {
22 Resource::~Resource() {
27 Resource& Resource::operator=(const Resource& other)
    [all...]
file_system.h 13 #include "ppapi/cpp/resource.h"
24 class FileSystem : public Resource {
26 /// Constructs an is_null() filesystem resource. If you use this constructor,
36 /// Constructs a <code>FileSystem</code> from a <code>Resource</code>.
38 /// @param[in] resource A <code>Resource</code> containing a file system.
39 explicit FileSystem(const Resource& resource);
44 /// @param[in] resource A PP_Resource corresponding to a PPB_FileSystem.
45 FileSystem(PassRef, PP_Resource resource);
    [all...]
compositor.h 11 #include "ppapi/cpp/resource.h"
22 class Compositor : public Resource {
38 /// Constructs a <code>Compositor</code> from a <code>Resource</code>.
40 /// @param[in] resource A <code>PPB_Compositor</code> resource.
41 explicit Compositor(const Resource& resource);
46 /// @param[in] resource A <code>PPB_Compositor</code> resource.
47 Compositor(PassRef, PP_Resource resource);
    [all...]
  /external/chromium_org/ppapi/shared_impl/
ppb_message_loop_shared.cc 10 : Resource(OBJECT_IS_PROXY, instance) {}
13 : Resource(Resource::Untracked()) {}
resource.cc 5 #include "ppapi/shared_impl/resource.h"
13 Resource::Resource(ResourceObjectType type, PP_Instance instance)
20 // For the in-process case, the host resource and resource are the same.
24 // goes through the host resource. When we get the "real" resource ID,
30 Resource::Resource(ResourceObjectType type, const HostResource& host_resource)
34 // When using this constructor for the implementation, the resource I
    [all...]
  /external/chromium_org/content/renderer/pepper/
mock_resource.h 8 #include "ppapi/shared_impl/resource.h"
13 // It's assumed that a test will only need one mock resource, so it can
15 class MockResource : public ppapi::Resource {
18 : Resource(ppapi::OBJECT_IS_IMPL, instance) {}
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
RawResource.h 33 class RawResource FINAL : public Resource {
60 inline bool isRawResource(const Resource& resource)
62 Resource::Type type = resource.type();
63 return type == Resource::MainResource || type == Resource::Raw || type == Resource::TextTrack || type == Resource::Media || type == Resource::ImportResource
    [all...]
ResourceLoaderHost.h 39 class Resource;
50 virtual void incrementRequestCount(const Resource*) = 0;
51 virtual void decrementRequestCount(const Resource*) = 0;
52 virtual void didLoadResource(Resource*) = 0;
53 virtual void redirectReceived(Resource*, const ResourceResponse&) = 0;
55 virtual void didFinishLoading(const Resource*, double finishTime, int64_t encodedDataLength) = 0;
56 virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority, int intraPriorityValue) = 0;
57 virtual void didFailLoading(const Resource*, const ResourceError&) = 0;
60 virtual void didReceiveResponse(const Resource*, const ResourceResponse&) = 0;
61 virtual void didReceiveData(const Resource*, const char* data, int dataLength, int encodedDataLength) = 0
    [all...]
ResourceFetcher.h 32 #include "core/fetch/Resource.h"
64 // and enforces a bunch of security checks and rules for resource revalidation.
87 ResourcePtr<Resource> fetchSynchronously(FetchRequest&);
97 ResourcePtr<Resource> fetchLinkResource(Resource::Type, FetchRequest&);
105 Resource* cachedResource(const KURL&) const;
107 typedef HashMap<String, ResourcePtr<Resource> > DocumentResourceMap;
131 void preload(Resource::Type, FetchRequest&, const String& charset);
139 virtual void incrementRequestCount(const Resource*) OVERRIDE;
140 virtual void decrementRequestCount(const Resource*) OVERRIDE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunnerHost.h 34 class Resource;
42 virtual void notifyScriptLoaded(Resource*) = 0;
  /external/clang/test/SemaCXX/
operator-arrow-temporary.cpp 4 struct Resource {
10 Resource* operator->() { return 0; }
  /external/glide/library/src/main/java/com/bumptech/glide/load/
ResourceEncoder.java 3 import com.bumptech.glide.load.engine.Resource;
5 public interface ResourceEncoder<T> extends Encoder<Resource<T>>{
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);
UnitTransformation.java 3 import com.bumptech.glide.load.engine.Resource;
6 * A noop Transformation that simply returns the given resource.
17 public Resource<T> transform(Resource<T> resource, int outWidth, int outHeight) {
18 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);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawableResource.java 1 package com.bumptech.glide.load.resource.gif;
3 import com.bumptech.glide.load.engine.Resource;
5 public class GifDrawableResource extends Resource<GifDrawable> {
6 private Resource<GifData> wrapped;
8 public GifDrawableResource(Resource<GifData> wrapped) {
  /external/chromium_org/ppapi/proxy/
plugin_resource_var.h 10 #include "ppapi/shared_impl/resource.h"
14 // Represents a resource Var, usable on the plugin side.
17 // Makes a null resource var.
20 // Makes a resource var with an existing resource.
21 // Takes one reference to the given resource.
22 explicit PluginResourceVar(ppapi::Resource* resource);
28 scoped_refptr<ppapi::Resource> resource() const { return resource_; function in class:PluginResourceVar
    [all...]
  /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/load/engine/cache/
MemoryCache.java 5 import com.bumptech.glide.load.engine.Resource;
15 public void onResourceRemoved(Resource removed);
34 public Resource remove(Key key);
39 * @param resource The {@link Resource} to store
42 public Resource put(Key key, Resource resource);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapper.java 1 package com.bumptech.glide.load.resource.gifbitmap;
4 import com.bumptech.glide.load.engine.Resource;
5 import com.bumptech.glide.load.resource.gif.GifData;
8 private final Resource<GifData> gifResource;
9 private final Resource<Bitmap> bitmapResource;
11 public GifBitmapWrapper(Resource<Bitmap> bitmapResource, Resource<GifData> gifResource) {
13 throw new IllegalArgumentException("Can only contain either a bitmap resource or a gif resource, not both");
16 throw new IllegalArgumentException("Must contain either a bitmap resource or a gif resource")
    [all...]

Completed in 807 milliseconds

1 2 3 4 5 6 7 8 91011>>