HomeSort by relevance Sort by last modified time
    Searched refs:resource (Results 201 - 225 of 2028) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
dri2_buffer.h 11 struct pipe_resource *resource; member in struct:dri2_buffer
  /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/chrome/browser/automation/
automation_tab_tracker.cc 18 void AutomationTabTracker::AddObserver(NavigationController* resource) {
22 Source<NavigationController>(resource));
24 Source<NavigationController>(resource));
28 Source<NavigationController>(resource));
31 void AutomationTabTracker::RemoveObserver(NavigationController* resource) {
33 Source<NavigationController>(resource));
35 Source<NavigationController>(resource));
37 Source<NavigationController>(resource));
automation_tab_tracker.h 23 virtual void AddObserver(NavigationController* resource);
24 virtual void RemoveObserver(NavigationController* resource);
  /external/chromium_org/chrome/browser/automation/
automation_tab_tracker.h 22 virtual void AddObserver(content::NavigationController* resource);
23 virtual void RemoveObserver(content::NavigationController* resource);
  /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/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);
121 void PPB_Core_Proxy::OnMsgAddRefResource(const HostResource& resource) {
122 ppb_core_impl_->AddRefResource(resource.host_resource());
125 void PPB_Core_Proxy::OnMsgReleaseResource(const HostResource& resource) {
126 ppb_core_impl_->ReleaseResource(resource.host_resource());
  /external/chromium_org/ppapi/thunk/
ppb_network_monitor_private_thunk.cc 27 PP_Bool IsNetworkMonitor(PP_Resource resource) {
28 EnterNetworkMonitor enter(resource, false);
  /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...]
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
JFmCcmVacUnavailResourceList.java 44 public void setResourceOwner(JFmRxCcmVacResourceOwner[] resource) {
45 this.ccmVacResourceOwner = resource;
JFmRxCcmVacUnavailResourceList.java 40 public void setResourceOwner(JFmRxCcmVacResourceOwner[] resource) {
41 this.ccmVacResourceOwner = resource;
  /external/chromium_org/ppapi/cpp/
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...]
  /external/kernel-headers/original/linux/
platform_device.h 21 struct resource * resource; member in struct:platform_device
32 extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int);
34 extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, char *);
38 extern struct platform_device *platform_device_register_simple(char *, unsigned int, struct resource *, unsigned int);
41 extern int platform_device_add_resources(struct platform_device *pdev, struct resource *res, unsigned int num);
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ResourceFetcher.cpp 72 static Resource* createResource(Resource::Type type, const ResourceRequest& request, const String& charset)
75 case Resource::Image:
77 case Resource::CSSStyleSheet:
79 case Resource::Script:
81 case Resource::SVGDocument:
82 return new DocumentResource(request, Resource::SVGDocument);
83 case Resource::Font:
85 case Resource::Raw:
86 case Resource::MainResource
152 Resource* resource = createResource(Resource::Image, request, charset); local
504 ResourcePtr<Resource> resource = memoryCache()->resourceForURL(url); local
735 ResourcePtr<Resource> resource = createResource(type, request.mutableResourceRequest(), charset); local
916 Resource* resource = it->value.get(); local
1069 ResourcePtr<Resource> resource = requestResource(type, request); local
1091 Resource* resource = *it; local
    [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/chrome/browser/extensions/
image_loading_tracker.cc 40 void LoadImage(const ExtensionResource& resource,
46 NewRunnableMethod(this, &ImageLoader::LoadOnFileThread, resource,
50 void LoadOnFileThread(const ExtensionResource& resource,
57 FilePath path = resource.GetFilePath();
59 ReportBack(NULL, resource, gfx::Size(), id);
70 ReportBack(NULL, resource, gfx::Size(), id);
84 ReportBack(decoded.release(), resource, original_size, id);
87 void ReportBack(SkBitmap* image, const ExtensionResource& resource,
94 image, resource, original_size, id));
97 void ReportOnUIThread(SkBitmap* image, const ExtensionResource& 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 {
115 .resource-headers-view {
127 .resource-headers-view.visible {
131 .resource-headers-view .outline-disclosure .parent {
136 .resource-headers-view .outline-disclosure .parent .section * {
140 .resource-headers-view .outline-disclosure .children li {
144 .resource-headers-view .outline-disclosure li.expanded .header-count {
148 .resource-headers-view .outline-disclosure li .header-toggle {
152 .resource-headers-view .outline-disclosure li .status-from-cache
    [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 &region,
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 &region,
57 resource &src_res, const point &src_origin) {
66 resource::add_map(command_queue &q, cl_map_flags flags, bool blocking
    [all...]

Completed in 837 milliseconds

1 2 3 4 5 6 7 891011>>