/external/mesa3d/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/mesa3d/src/gallium/state_trackers/dri/drm/ |
dri2_buffer.h | 11 struct pipe_resource *resource; member in struct:dri2_buffer
|
/external/valgrind/main/none/tests/darwin/ |
rlimit.c | 8 #include <sys/resource.h>
|
/external/chromium_org/gpu/gles2_conform_support/native/ |
egl_native.cc | 25 float r, float g, float b, float a, void** resource) { 29 void GTFDestroyEGLImageExternal(EGLImageKHR image, void* resource) {
|
/external/chromium_org/ppapi/cpp/ |
audio_buffer.h | 9 #include "ppapi/cpp/resource.h" 13 class AudioBuffer : public Resource { 24 /// Constructs an <code>AudioBuffer</code> from a <code>Resource</code>. 26 /// @param[in] resource A <code>PPB_AudioBuffer</code> resource. 27 explicit AudioBuffer(const Resource& resource); 32 /// @param[in] resource A <code>PPB_AudioBuffer</code> resource. 33 AudioBuffer(PassRef, PP_Resource resource); [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...] |
media_stream_audio_track.cc | 28 const MediaStreamAudioTrack& other) : Resource(other) { 31 MediaStreamAudioTrack::MediaStreamAudioTrack(const Resource& resource) 32 : Resource(resource) { 33 PP_DCHECK(IsMediaStreamAudioTrack(resource)); 36 MediaStreamAudioTrack::MediaStreamAudioTrack(PassRef, PP_Resource resource) 37 : Resource(PASS_REF, resource) { 103 bool MediaStreamAudioTrack::IsMediaStreamAudioTrack(const Resource& 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);
|
video_capture_client_dev.cc | 19 PP_Resource resource, 33 client->OnDeviceInfo(resource, *info, buffer_list); 36 void OnStatus(PP_Instance instance, PP_Resource resource, uint32_t status) { 40 client->OnStatus(resource, status); 43 void OnError(PP_Instance instance, PP_Resource resource, uint32_t error_code) { 47 client->OnError(resource, error_code); 51 PP_Resource resource, 56 client->OnBufferReady(resource, buffer);
|
/external/chromium_org/ppapi/proxy/ |
ppb_core_proxy.cc | 28 void AddRefResource(PP_Resource resource) { 30 PpapiGlobals::Get()->GetResourceTracker()->AddRefResource(resource); 33 void ReleaseResource(PP_Resource resource) { 35 PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(resource); 123 void PPB_Core_Proxy::OnMsgAddRefResource(const HostResource& resource) { 124 ppb_core_impl_->AddRefResource(resource.host_resource()); 127 void PPB_Core_Proxy::OnMsgReleaseResource(const HostResource& resource) { 128 ppb_core_impl_->ReleaseResource(resource.host_resource());
|
resource_reply_thread_registrar.cc | 24 PP_Resource resource, 42 map_[resource][sequence_number] = reply_thread; 46 void ResourceReplyThreadRegistrar::Unregister(PP_Resource resource) { 48 map_.erase(resource); 53 PP_Resource resource, 56 ResourceMap::iterator resource_iter = map_.find(resource);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/ |
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/load/resource/bitmap/ |
BitmapDecoder.java | 1 package com.bumptech.glide.load.resource.bitmap; 8 * A bitmap decoder for a given resource type. 10 * @param <T> The type of resource this decoder can decode a {@link Bitmap} from. 14 * Returns a decoded bitmap for a given resource and target dimensions. 16 * @param resource The resource to decode. 24 public Bitmap decode(T resource, BitmapPool bitmapPool, int outWidth, int outHeight, DecodeFormat decodeFormat)
|
CenterCrop.java | 1 package com.bumptech.glide.load.resource.bitmap; 4 import com.bumptech.glide.load.engine.Resource; 22 public Resource<Bitmap> transform(Resource<Bitmap> resource, int outWidth, int outHeight) { 28 final Bitmap toReuse = pool.get(outWidth, outHeight, resource.get().getConfig()); 29 Bitmap transformed = TransformationUtils.centerCrop(toReuse, resource.get(), outWidth, outHeight); 34 if (transformed == resource.get()) { 35 return resource; 43 return "CenterCrop.com.bumptech.glide.load.resource.bitmap" [all...] |
/external/smack/src/org/jivesoftware/smack/ |
UserAuthentication.java | 37 * 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
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) throws [all...] |
/external/smack/src/org/jivesoftware/smack/packet/ |
Authentication.java | 34 private String resource = null; field in class:Authentication 131 * Returns the resource or <tt>null</tt> if the resource hasn't been set. 133 * @return the resource. 136 return resource; 140 * Sets the resource. 142 * @param resource the resource. 144 public void setResource(String resource) { 145 this.resource = resource [all...] |
/external/chromium_org/ppapi/api/private/ |
ppb_output_protection_private.idl | 77 * IsOutputProtection() determines if the provided resource is a 80 * @param[in] resource A <code>PP_Resource</code> corresponding to a 83 * @return <code>PP_TRUE</code> if the resource is a 85 * resource is invalid or some type other than 88 PP_Bool IsOutputProtection([in] PP_Resource resource); 94 * @param[in] resource A <code>PP_Resource</code> corresponding to a 107 [in] PP_Resource resource, 123 * @param[in] resource A <code>PP_Resource</code> corresponding to a 138 [in] PP_Resource resource,
|
/external/chromium_org/ppapi/thunk/ |
ppb_output_protection_private_thunk.cc | 29 PP_Bool IsOutputProtection(PP_Resource resource) { 31 EnterResource<PPB_OutputProtection_API> enter(resource, false); 35 int32_t QueryStatus(PP_Resource resource, 40 EnterResource<PPB_OutputProtection_API> enter(resource, callback, true); 48 int32_t EnableProtection(PP_Resource resource, 52 EnterResource<PPB_OutputProtection_API> enter(resource, callback, true);
|
/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...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-resource-browser.js | 14 // Load tag and resource dataset. 22 $('#resource-browser-keyword-filter').keyup(function() { 58 * variable in the resource data JS file. 72 * Massage the ANDROID_RESOURCES resource list in the resource data JS file. 76 var resource = ANDROID_RESOURCES[i]; 79 resource.tagsHash = {}; 80 for (var j = 0; j < resource.tags.length; j++) 81 resource.tagsHash[resource.tags[j]] = true [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGResourcesCycleSolver.cpp | 23 // Set to a value > 0, to debug the resource cache. 53 ActiveFrame(ResourceSet& activeSet, RenderSVGResourceContainer* resource) 55 , m_resource(resource) 68 bool SVGResourcesCycleSolver::resourceContainsCycles(RenderSVGResourceContainer* resource) 72 if (m_dagCache.contains(resource)) 75 ActiveFrame frame(m_activeResources, resource); 77 RenderObject* node = resource; 81 if (node != resource && node->isSVGResourceContainer()) { 82 node = node->nextInPreOrderAfterChildren(resource); 97 node = node->nextInPreOrder(resource); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
networkPanel.css | 50 .network.panel.viewing-resource #network-close-button { 65 .network.panel:not(.viewing-resource) .sidebar-resizer-vertical { 99 .resource-headers-view { 111 .resource-headers-view.visible { 115 .resource-headers-view .outline-disclosure .parent { 120 .resource-headers-view .outline-disclosure .parent .section * { 124 .resource-headers-view .outline-disclosure .children li { 128 .resource-headers-view .outline-disclosure .caution { 134 .resource-headers-view .outline-disclosure li.expanded .header-count { 138 .resource-headers-view .outline-disclosure li .header-toggle [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
resource.cpp | 23 #include "core/resource.hpp" 33 box(const resource::point &origin, const resource::point &size) : 48 resource::resource(clover::device &dev, clover::memory_obj &obj) : function in class:resource 52 resource::~resource() { 56 resource::copy(command_queue &q, const point &origin, const point ®ion, 57 resource &src_res, const point &src_origin) { 66 resource::add_map(command_queue &q, cl_map_flags flags, bool blocking [all...] |
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
resource.cpp | 23 #include "core/resource.hpp" 33 box(const resource::point &origin, const resource::point &size) : 48 resource::resource(clover::device &dev, clover::memory_obj &obj) : function in class:resource 52 resource::~resource() { 56 resource::copy(command_queue &q, const point &origin, const point ®ion, 57 resource &src_res, const point &src_origin) { 66 resource::add_map(command_queue &q, cl_map_flags flags, bool blocking [all...] |
/external/chromium_org/chrome/browser/renderer_host/ |
safe_browsing_resource_throttle.cc | 112 SafeBrowsingUIManager::UnsafeResource resource; local 113 resource.url = url; 114 resource.original_url = request_->original_url(); 115 resource.redirect_urls = redirect_urls_; 116 resource.is_subresource = is_subresource_; 117 resource.threat_type = threat_type; 118 resource.callback = base::Bind( 120 resource.render_process_host_id = info->GetChildID(); 121 resource.render_view_id = info->GetRouteID(); 129 AsWeakPtr(), ui_manager_, resource)); [all...] |