HomeSort by relevance Sort by last modified time
    Searched refs:Resource (Results 76 - 100 of 504) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/ppapi/shared_impl/
ppb_message_loop_shared.h 13 #include "ppapi/shared_impl/resource.h"
24 // MessageLoop resource. In the host side, there is not a concrete class that
28 : public Resource,
resource.h 19 // All resource types should be added here. This implements our hand-rolled
97 // Forward declare all the resource APIs.
99 #define DECLARE_RESOURCE_CLASS(RESOURCE) class RESOURCE;
105 // in-process ("impl") resource in the host (renderer) process, or when they're
106 // a proxied resource in the plugin process. This enum differentiates those
113 class PPAPI_SHARED_EXPORT Resource : public base::RefCounted<Resource> {
118 // associated instance, and generates a new resource ID. The host resource
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
MockImageResourceClient.h 56 virtual void notifyFinished(Resource*)
ScriptResource.h 29 #include "core/loader/cache/Resource.h"
36 class ScriptResource : public Resource {
XSLStyleSheetResource.h 29 #include "core/loader/cache/Resource.h"
36 class XSLStyleSheetResource : public Resource {
MemoryCache.cpp 29 #include "core/loader/cache/Resource.h"
99 void MemoryCache::add(Resource* resource)
102 m_resources.set(resource->url(), resource);
103 resource->setInCache(true);
104 resource->updateForAccess();
106 LOG(ResourceLoading, "MemoryCache::add Added '%s', resource %p\n", resource->url().string().latin1().data(), resource);
127 Resource* resource = m_resources.get(url); local
525 Resource* resource = i->value; local
    [all...]
MemoryCacheTest.cpp 46 class MockImageResource : public WebCore::Resource {
49 : Resource(request, type)
55 Resource::appendData(data, len);
101 // Verifies that dead resources that exceed dead resource capacity are evicted
110 ResourcePtr<Resource> cachedResource =
111 new Resource(ResourceRequest(""), Resource::Raw);
114 // The resource size has to be nonzero for this test to be meaningful, but
136 new MockImageResource(ResourceRequest(""), Resource::Raw);
138 new MockImageResource(ResourceRequest(""), Resource::Raw)
    [all...]
DocumentResource.cpp 36 : Resource(request, type)
67 Resource::checkNotify();
  /external/chromium_org/chrome/browser/task_manager/
resource_provider.h 48 // A resource represents one row in the task manager.
50 class Resource {
52 virtual ~Resource() {}
76 // Return extension associated with the resource, or NULL if not applicable.
83 // Returns true if this resource can be inspected using developer tools.
86 // Invokes or reveals developer tools window for this resource.
89 // A helper function for ActivateProcess when selected resource refers
94 // Whether this resource does report the network usage accurately.
115 // Returns true if this resource is not visible to the user because it lives
126 // Returns resource identifier that is unique within single task manage
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLResourcePreloader.h 30 #include "core/loader/cache/Resource.h"
38 static PassOwnPtr<PreloadRequest> create(const String& initiatorName, const TextPosition& initiatorPosition, const String& resourceURL, const KURL& baseURL, Resource::Type resourceType, const String& mediaAttribute)
43 static PassOwnPtr<PreloadRequest> create(const String& initiatorName, const TextPosition& initiatorPosition, const String& resourceURL, const KURL& baseURL, Resource::Type resourceType)
57 Resource::Type resourceType() const { return m_resourceType; }
60 PreloadRequest(const String& initiatorName, const TextPosition& initiatorPosition, const String& resourceURL, const KURL& baseURL, Resource::Type resourceType, const String& mediaAttribute)
79 Resource::Type m_resourceType;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglcontext.h 44 /* A context is a display resource */
45 _EGLResource Resource;
88 _eglGetResource(&ctx->Resource);
99 return (ctx) ? _eglPutResource(&ctx->Resource) : EGL_FALSE;
110 _eglLinkResource(&ctx->Resource, _EGL_RESOURCE_CONTEXT);
122 _eglUnlinkResource(&ctx->Resource, _EGL_RESOURCE_CONTEXT);
  /external/mesa3d/src/egl/main/
eglcontext.h 44 /* A context is a display resource */
45 _EGLResource Resource;
88 _eglGetResource(&ctx->Resource);
99 return (ctx) ? _eglPutResource(&ctx->Resource) : EGL_FALSE;
110 _eglLinkResource(&ctx->Resource, _EGL_RESOURCE_CONTEXT);
122 _eglUnlinkResource(&ctx->Resource, _EGL_RESOURCE_CONTEXT);
  /external/chromium/chrome/browser/task_manager/
task_manager.h 38 // A resource represents one row in the task manager.
40 class Resource {
42 virtual ~Resource() {}
73 // Return extension associated with the resource, or NULL
85 // Whether this resource does report the network usage accurately.
105 // Returns true if this resource is not visible to the user because it lives
112 // to receive resource creation/termination notifications with a call to
113 // StartUpdating(). At that point, the resource provider should call
116 // The provider remains the owner of the resource objects and is responsible
124 // Should return the resource associated to the specified ids, or NULL i
    [all...]
  /external/chromium_org/cc/test/
tiled_layer_test_common.cc 9 FakeLayerUpdater::Resource::Resource(FakeLayerUpdater* layer,
11 : LayerUpdater::Resource(texture.Pass()), layer_(layer) {
16 FakeLayerUpdater::Resource::~Resource() {}
18 void FakeLayerUpdater::Resource::Update(ResourceUpdateQueue* queue,
58 scoped_ptr<LayerUpdater::Resource> FakeLayerUpdater::CreateResource(
60 return scoped_ptr<LayerUpdater::Resource>(
61 new Resource(this, PrioritizedResource::Create(manager)));
tiled_layer_test_common.h 25 class Resource : public LayerUpdater::Resource {
27 Resource(FakeLayerUpdater* updater,
28 scoped_ptr<PrioritizedResource> resource);
29 virtual ~Resource();
40 DISALLOW_COPY_AND_ASSIGN(Resource);
45 virtual scoped_ptr<LayerUpdater::Resource> CreateResource(
46 PrioritizedResourceManager* resource) OVERRIDE;
  /external/chromium_org/ppapi/cpp/private/
video_destination_private.cc 39 : Resource(other) {
43 PP_Resource resource)
44 : Resource(PASS_REF, resource) {
x509_certificate_private.cc 21 X509CertificatePrivate::X509CertificatePrivate() : Resource() {}
23 X509CertificatePrivate::X509CertificatePrivate(PassRef, PP_Resource resource)
24 : Resource(PASS_REF, resource) {
  /external/chromium_org/third_party/WebKit/public/web/
WebPageSerializer.h 46 // which contain all resource links that have local copy.
49 struct Resource {
57 // The first resource in that vector is the top frame contents.
59 WEBKIT_EXPORT static void serialize(WebView*, WebVector<Resource>*);
98 // Retrieve all the resource for the passed view, including the main frame
  /external/chromium_org/cc/resources/
scoped_resource.h 12 #include "cc/resources/resource.h"
20 class CC_EXPORT ScopedResource : public Resource {
  /external/chromium_org/ppapi/cpp/
audio_config.h 10 #include "ppapi/cpp/resource.h"
14 /// audio configuration resource within the browser.
20 /// A 16 bit stereo AudioConfig resource. Refer to the
52 /// // Then use the config to create your audio resource.
57 class AudioConfig : public Resource {
59 /// An empty constructor for an <code>AudioConfig</code> resource.
64 /// resulting resource will be is_null(). You can pass the result of
67 /// @param[in] instance The instance associated with this resource.
83 /// @param[in] instance The instance associated with this resource.
99 /// @param[in] instance The instance associated with this resource
    [all...]
graphics_3d.h 9 #include "ppapi/cpp/resource.h"
19 class Graphics3D : public Resource {
29 /// @param[in] instance The instance with which this resource will be
host_resolver.h 12 #include "ppapi/cpp/resource.h"
26 class HostResolver : public Resource {
34 /// @param[in] instance The instance with which this resource will be
41 /// @param[in] resource A <code>PPB_HostResolver</code> resource.
42 HostResolver(PassRef, PP_Resource resource);
message_loop.h 8 #include "ppapi/cpp/resource.h"
36 /// - Create the message loop resource.
37 /// - Pass the message loop resource to your thread's main function.
41 /// - Call AttachToCurrentThread() with the message loop resource.
42 /// - Call Run() with the message loop resource.
56 /// (You can also create the message loop resource on the background thread,
133 class MessageLoop : public Resource {
135 /// Creates an is_null() MessageLoop resource.
138 /// Creates a message loop associated with the given instance. The resource
148 /// Takes an additional ref to the resource
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
buffer_dev.h 8 #include "ppapi/cpp/resource.h"
14 class Buffer_Dev : public Resource {
19 explicit Buffer_Dev(PP_Resource resource);
25 // Constructor used when the buffer resource already has a reference count
27 Buffer_Dev(PassRef, PP_Resource resource);
file_chooser_dev.h 13 #include "ppapi/cpp/resource.h"
22 class FileChooser_Dev : public Resource {
27 /// This function creates a file chooser dialog resource. The chooser is
54 /// This function displays a previously created file chooser resource as a

Completed in 474 milliseconds

1 2 34 5 6 7 8 91011>>