Searched defs:Resource (Results 1 - 25 of 49) sorted by relevance

12

/external/swiftshader/src/Common/
H A DResource.cpp15 #include "Resource.hpp"
21 Resource::Resource(size_t bytes) : size(bytes) function in class:sw::Resource
32 Resource::~Resource()
37 void *Resource::lock(Accessor claimer)
60 void *Resource::lock(Accessor relinquisher, Accessor claimer)
106 void Resource::unlock()
131 void Resource::unlock(Accessor relinquisher)
159 void Resource
[all...]
H A DResource.hpp30 class Resource class in namespace:sw
33 Resource(size_t bytes);
46 ~Resource(); // Always call destruct() instead
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
H A Dresource.py5 """A Resource is a file and its various associated canonical names."""
11 class Resource(object): class in inherits:object
/external/clang/test/SemaCXX/
H A Doperator-arrow-temporary.cpp4 struct Resource { struct
10 Resource* operator->() { return 0; }
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DResource.java9 public interface Resource<Z> { interface
/external/deqp/framework/common/
H A DtcuResource.hpp23 * \brief Resource system.
36 * \brief Resource object
42 * Resource objects are requested from Archive object provided by Platform.
45 class Resource class in namespace:tcu
48 virtual ~Resource (void) {}
58 Resource (const std::string& name) : m_name(name) {} function in class:tcu::Resource
77 * Resource object must be deleted after use
79 * \param name Resource path
80 * \return Resource object
82 virtual Resource* getResourc
[all...]
/external/mesa3d/src/egl/main/
H A Deglsync.h45 _EGLResource Resource; member in struct:_egl_sync
72 _eglGetResource(&sync->Resource);
83 return (sync) ? _eglPutResource(&sync->Resource) : EGL_FALSE;
94 _eglLinkResource(&sync->Resource, _EGL_RESOURCE_SYNC);
105 _eglUnlinkResource(&sync->Resource, _EGL_RESOURCE_SYNC);
H A Deglcontext.h50 _EGLResource Resource; member in struct:_egl_context
93 _eglGetResource(&ctx->Resource);
104 return (ctx) ? _eglPutResource(&ctx->Resource) : EGL_FALSE;
115 _eglLinkResource(&ctx->Resource, _EGL_RESOURCE_CONTEXT);
127 _eglUnlinkResource(&ctx->Resource, _EGL_RESOURCE_CONTEXT);
H A Deglimage.h85 _EGLResource Resource; member in struct:_egl_image
105 _eglGetResource(&img->Resource);
116 return (img) ? _eglPutResource(&img->Resource) : EGL_FALSE;
127 _eglLinkResource(&img->Resource, _EGL_RESOURCE_IMAGE);
139 _eglUnlinkResource(&img->Resource, _EGL_RESOURCE_IMAGE);
H A Deglsurface.h50 _EGLResource Resource; member in struct:_egl_surface
118 _eglGetResource(&surf->Resource);
129 return (surf) ? _eglPutResource(&surf->Resource) : EGL_FALSE;
140 _eglLinkResource(&surf->Resource, _EGL_RESOURCE_SURFACE);
152 _eglUnlinkResource(&surf->Resource, _EGL_RESOURCE_SURFACE);
/external/skia/src/gpu/vk/
H A DGrVkUniformBuffer.h38 class Resource : public GrVkBuffer::Resource { class in class:GrVkUniformBuffer
40 Resource(VkBuffer buf, const GrVkAlloc& alloc) function in class:GrVkUniformBuffer::Resource
45 typedef GrVkBuffer::Resource INHERITED;
48 const GrVkBuffer::Resource* createResource(GrVkGpu* gpu,
52 const GrVkUniformBuffer::Resource* resource)
H A DGrVkSemaphore.h34 class Resource : public GrVkResource { class in class:GrVkSemaphore
36 Resource(VkSemaphore semaphore, bool prohibitSignal, bool prohibitWait, bool isOwned) function in class:GrVkSemaphore::Resource
43 ~Resource() override {}
83 Resource* getResource() { return fResource; }
91 Resource* fResource;
H A DGrVkBuffer.h58 class Resource : public GrVkRecycledResource { class in class:GrVkBuffer
60 Resource(VkBuffer buf, const GrVkAlloc& alloc, Type type) function in class:GrVkBuffer::Resource
81 static const Resource* Create(const GrVkGpu* gpu,
84 GrVkBuffer(const Desc& desc, const GrVkBuffer::Resource* resource)
103 virtual const Resource* createResource(GrVkGpu* gpu,
115 const Resource* fResource;
H A DGrVkImage.h23 class Resource;
32 fResource = new Resource(info.fImage, info.fAlloc, info.fImageTiling);
41 const Resource* resource() const { return fResource; }
98 class Resource : public GrVkResource { class in class:GrVkImage
100 Resource() function in class:GrVkImage::Resource
106 Resource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling) function in class:GrVkImage::Resource
111 ~Resource() override {
140 class BorrowedResource : public Resource {
143 : Resource(image, alloc, tiling) {
158 Resource* fResourc
[all...]
/external/skqp/src/gpu/vk/
H A DGrVkUniformBuffer.h38 class Resource : public GrVkBuffer::Resource { class in class:GrVkUniformBuffer
40 Resource(VkBuffer buf, const GrVkAlloc& alloc) function in class:GrVkUniformBuffer::Resource
45 typedef GrVkBuffer::Resource INHERITED;
48 const GrVkBuffer::Resource* createResource(GrVkGpu* gpu,
52 const GrVkUniformBuffer::Resource* resource)
H A DGrVkSemaphore.h34 class Resource : public GrVkResource { class in class:GrVkSemaphore
36 Resource(VkSemaphore semaphore, bool prohibitSignal, bool prohibitWait, bool isOwned) function in class:GrVkSemaphore::Resource
43 ~Resource() override {}
83 Resource* getResource() { return fResource; }
91 Resource* fResource;
H A DGrVkBuffer.h58 class Resource : public GrVkRecycledResource { class in class:GrVkBuffer
60 Resource(VkBuffer buf, const GrVkAlloc& alloc, Type type) function in class:GrVkBuffer::Resource
81 static const Resource* Create(const GrVkGpu* gpu,
84 GrVkBuffer(const Desc& desc, const GrVkBuffer::Resource* resource)
103 virtual const Resource* createResource(GrVkGpu* gpu,
115 const Resource* fResource;
H A DGrVkImage.h23 class Resource;
32 fResource = new Resource(info.fImage, info.fAlloc, info.fImageTiling);
41 const Resource* resource() const { return fResource; }
99 class Resource : public GrVkResource { class in class:GrVkImage
101 Resource() function in class:GrVkImage::Resource
107 Resource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling) function in class:GrVkImage::Resource
112 ~Resource() override {
141 class BorrowedResource : public Resource {
144 : Resource(image, alloc, tiling) {
159 Resource* fResourc
[all...]
/external/jacoco/org.jacoco.core.test/src-java7/org/jacoco/core/test/filter/targets/
H A DTryWithResources.java25 private static class Resource implements Closeable { class in class:TryWithResources
39 Resource r1 = new Resource(); // $line-test.open1$
40 Closeable r2 = new Resource(); // $line-test.open2$
41 AutoCloseable r3 = new Resource() // $line-test.open3$
56 Resource r1 = new Resource(); // $line-test2.open1$
57 Closeable r2 = new Resource(); // $line-test2.open2$
58 AutoCloseable r3 = new Resource() // $line-test2.open3$
72 Closeable r = new Resource() //
[all...]
/external/tensorflow/tensorflow/core/framework/
H A Dresource_mgr_test.cc28 class Resource : public ResourceBase { class in namespace:tensorflow
30 explicit Resource(const string& label) : label_(label) {} function in class:tensorflow::Resource
31 ~Resource() override {}
89 TF_CHECK_OK(rm.Create("foo", "bar", new Resource("cat")));
90 TF_CHECK_OK(rm.Create("foo", "baz", new Resource("dog")));
94 HasError(rm.Create("foo", "bar", new Resource("kitty")),
95 "Already exists: Resource foo/bar");
98 EXPECT_EQ("R/cat", Find<Resource>(rm, "foo", "bar"));
99 EXPECT_EQ("R/dog", Find<Resource>(rm, "foo", "baz"));
103 HasError(FindErr<Resource>(r
[all...]
/external/v8/src/
H A Dobjects-body-descriptors-inl.h317 typedef v8::String::ExternalOneByteStringResource Resource; typedef
318 v->VisitExternalOneByteString(reinterpret_cast<Resource**>(
324 typedef v8::String::ExternalOneByteStringResource Resource; typedef
325 StaticVisitor::VisitExternalOneByteString(reinterpret_cast<Resource**>(
340 typedef v8::String::ExternalStringResource Resource; typedef
341 v->VisitExternalTwoByteString(reinterpret_cast<Resource**>(
347 typedef v8::String::ExternalStringResource Resource; typedef
348 StaticVisitor::VisitExternalTwoByteString(reinterpret_cast<Resource**>(
/external/icu/icu4c/source/common/
H A Duresdata.h37 /** Resource type constant for tables with 32-bit count, key offsets and values. */
41 * Resource type constant for tables with 16-bit count, key offsets and values.
46 /** Resource type constant for 16-bit Unicode strings in formatVersion 2. */
50 * Resource type constant for arrays with 16-bit count and values.
55 /* Resource type 15 is not defined but effectively used by RES_BOGUS=0xffffffff. */
59 * A Resource is a 32-bit value that has 2 bit fields:
63 typedef uint32_t Resource; typedef
72 /* get signed and unsigned integer values directly from the Resource handle */
85 #define URES_MAKE_RESOURCE(type, offset) (((Resource)(type)<<28)|(Resource)(offse
[all...]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationOperation.hpp160 class Resource class in namespace:vkt::synchronization
163 Resource (OperationContext& context,
169 Resource (ResourceType type,
175 Resource (vk::Move<vk::VkImage> image,
245 virtual de::MovePtr<Operation> build (OperationContext& context, Resource& resource) const = 0;
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmGraphicsShaderTestUtil.hpp54 typedef std::pair<vk::VkDescriptorType, BufferSp> Resource; typedef in namespace:vkt::SpirVAssembly
73 typedef bool (*GraphicsVerifyIOFunc) (const std::vector<Resource>& inputs,
75 const std::vector<Resource>& expectedOutputs,
84 std::vector<Resource> inputs;
88 std::vector<Resource> outputs;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
H A DXLIFF2ICUConverter.java446 // Create the Resource linked list which will hold the
448 Resource[] set = new Resource[2];
500 private void writeResource(Resource[] set, String xmlfileName){
514 private void writeResource(Resource set, String sourceFilename, String targetFilename){
528 Resource current = set;
607 private class Resource{ class in class:XLIFF2ICUConverter
613 Resource next;
687 private class ResourceString extends Resource{
703 private class ResourceAlias extends Resource{
[all...]

Completed in 571 milliseconds

12