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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_proxy_private.idl 14 /* Returns the instance for the given resource, or 0 on failure. */
16 [in] PP_Resource resource);
  /external/chromium_org/ppapi/c/dev/
ppb_graphics_2d_dev.h 35 * scale of 1.0 / GetDeviceScale(). For example, if the view resource passed
41 * @param[in] resource A <code>Graphics2D</code> context resource.
45 * the resource is invalid or the scale factor is 0 or less.
47 PP_Bool (*SetScale)(PP_Resource resource, float scale);
52 * @param[in] resource A <code>Graphics2D</code> context resource.
54 * @return Returns the scale factor for the graphics context. If the resource
57 float (*GetScale)(PP_Resource resource);
  /external/chromium_org/ppapi/c/private/
ppb_network_list_private.h 87 * Determines if the specified <code>resource</code> is a
90 * @param[in] resource A <code>PP_Resource</code> resource.
92 * @return Returns <code>PP_TRUE</code> if <code>resource</code> is
96 PP_Bool (*IsNetworkList)(PP_Resource resource);
101 uint32_t (*GetCount)(PP_Resource resource);
106 struct PP_Var (*GetName)(PP_Resource resource, uint32_t index);
111 PP_NetworkListType_Private (*GetType)(PP_Resource resource, uint32_t index);
116 PP_NetworkListState_Private (*GetState)(PP_Resource resource, uint32_t index);
127 int32_t (*GetIpAddresses)(PP_Resource resource,
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Texture.java 20 * Simple container class for textures. Serves as a mapping between Android resource ids and
26 public int resource; field in class:Texture
38 resource = -1;
  /external/kernel-headers/original/linux/
ioport.h 17 struct resource { struct
22 struct resource *parent, *sibling, *child;
27 struct resource *res;
36 #define IORESOURCE_IO 0x00000100 /* Resource type */
51 #define IORESOURCE_BUSY 0x80000000 /* Driver has marked this resource busy */
91 #define IORESOURCE_ROM_COPY (1<<2) /* ROM is alloc'd copy, resource field overlaid */
94 extern struct resource ioport_resource;
95 extern struct resource iomem_resource;
97 extern int request_resource(struct resource *root, struct resource *new)
    [all...]
  /external/chromium/chrome/browser/automation/
automation_autocomplete_edit_tracker.cc 19 AutocompleteEditView* resource) {
21 Source<AutocompleteEditView>(resource));
25 AutocompleteEditView* resource) {
27 Source<AutocompleteEditView>(resource));
automation_browser_tracker.cc 16 void AutomationBrowserTracker::AddObserver(Browser* resource) {
18 Source<Browser>(resource));
21 void AutomationBrowserTracker::RemoveObserver(Browser* resource) {
23 Source<Browser>(resource));
automation_window_tracker.cc 17 void AutomationWindowTracker::AddObserver(gfx::NativeWindow resource) {
19 Source<gfx::NativeWindow>(resource));
22 void AutomationWindowTracker::RemoveObserver(gfx::NativeWindow resource) {
24 Source<gfx::NativeWindow>(resource));
  /external/chromium_org/chrome/browser/automation/
automation_browser_tracker.cc 16 void AutomationBrowserTracker::AddObserver(Browser* resource) {
18 content::Source<Browser>(resource));
21 void AutomationBrowserTracker::RemoveObserver(Browser* resource) {
23 content::Source<Browser>(resource));
automation_window_tracker.cc 17 void AutomationWindowTracker::AddObserver(gfx::NativeWindow resource) {
19 content::Source<gfx::NativeWindow>(resource));
22 void AutomationWindowTracker::RemoveObserver(gfx::NativeWindow resource) {
24 content::Source<gfx::NativeWindow>(resource));
  /external/chromium_org/ppapi/api/dev/
ppb_graphics_2d_dev.idl 21 * scale of 1.0 / GetDeviceScale(). For example, if the view resource passed
27 * @param[in] resource A <code>Graphics2D</code> context resource.
31 * the resource is invalid or the scale factor is 0 or less.
34 [in] PP_Resource resource,
41 * @param[in] resource A <code>Graphics2D</code> context resource.
43 * @return Returns the scale factor for the graphics context. If the resource
47 [in] PP_Resource resource);
  /external/chromium_org/ppapi/thunk/
ppb_graphics_2d_dev_thunk.cc 21 PP_Bool SetScale(PP_Resource resource, float scale) {
23 EnterResource<PPB_Graphics2D_API> enter(resource, true);
29 float GetScale(PP_Resource resource) {
31 EnterResource<PPB_Graphics2D_API> enter(resource, true);
ppb_network_list_private_thunk.cc 22 PP_Bool IsNetworkList(PP_Resource resource) {
24 EnterResource<PPB_NetworkList_API> enter(resource, false);
28 uint32_t GetCount(PP_Resource resource) {
30 EnterResource<PPB_NetworkList_API> enter(resource, true);
36 struct PP_Var GetName(PP_Resource resource, uint32_t index) {
38 EnterResource<PPB_NetworkList_API> enter(resource, true);
44 PP_NetworkListType_Private GetType(PP_Resource resource, uint32_t index) {
46 EnterResource<PPB_NetworkList_API> enter(resource, true);
52 PP_NetworkListState_Private GetState(PP_Resource resource, uint32_t index) {
54 EnterResource<PPB_NetworkList_API> enter(resource, true)
    [all...]
ppb_view_dev_thunk.cc 21 float GetDeviceScale(PP_Resource resource) {
23 EnterResource<PPB_View_API> enter(resource, true);
29 float GetCSSScale(PP_Resource resource) {
31 EnterResource<PPB_View_API> enter(resource, true);
ppb_view_thunk.cc 21 PP_Bool IsView(PP_Resource resource) {
23 EnterResource<PPB_View_API> enter(resource, false);
27 PP_Bool GetRect(PP_Resource resource, struct PP_Rect* rect) {
29 EnterResource<PPB_View_API> enter(resource, true);
35 PP_Bool IsFullscreen(PP_Resource resource) {
37 EnterResource<PPB_View_API> enter(resource, true);
43 PP_Bool IsVisible(PP_Resource resource) {
45 EnterResource<PPB_View_API> enter(resource, true);
51 PP_Bool IsPageVisible(PP_Resource resource) {
53 EnterResource<PPB_View_API> enter(resource, true)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PendingScript.cpp 48 void PendingScript::setScriptResource(ScriptResource* resource)
50 if (m_resource == resource)
54 m_resource = resource;
59 ScriptResource* PendingScript::resource() const function in class:WebCore::PendingScript
64 void PendingScript::notifyFinished(Resource*)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_resource.c 13 struct pipe_resource *resource,
16 struct u_resource *ur = u_resource(resource);
17 return ur->vtbl->resource_get_handle(screen, resource, handle);
21 struct pipe_resource *resource)
23 struct u_resource *ur = u_resource(resource);
24 ur->vtbl->resource_destroy(screen, resource);
28 struct pipe_resource *resource,
33 struct u_resource *ur = u_resource(resource);
34 return ur->vtbl->get_transfer(context, resource, level, usage, box);
40 struct u_resource *ur = u_resource(transfer->resource);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_resource.c 13 struct pipe_resource *resource,
16 struct u_resource *ur = u_resource(resource);
17 return ur->vtbl->resource_get_handle(screen, resource, handle);
21 struct pipe_resource *resource)
23 struct u_resource *ur = u_resource(resource);
24 ur->vtbl->resource_destroy(screen, resource);
28 struct pipe_resource *resource,
33 struct u_resource *ur = u_resource(resource);
34 return ur->vtbl->get_transfer(context, resource, level, usage, box);
40 struct u_resource *ur = u_resource(transfer->resource);
    [all...]
  /bionic/libc/include/sys/
resource.h 32 #include <sys/types.h> /* MUST be included before linux/resource.h */
34 /* TRICK AHEAD: <linux/resource.h> defines a getrusage function with
40 #include <linux/resource.h>
49 extern int getrlimit(int resource, struct rlimit *rlp);
50 extern int setrlimit(int resource, const struct rlimit *rlp);
  /development/ndk/platforms/android-3/include/sys/
resource.h 32 #include <sys/types.h> /* MUST be included before linux/resource.h */
34 /* TRICK AHEAD: <linux/resource.h> defines a getrusage function with
40 #include <linux/resource.h>
49 extern int getrlimit(int resource, struct rlimit *rlp);
50 extern int setrlimit(int resource, const struct rlimit *rlp);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
resource.h 32 #include <sys/types.h> /* MUST be included before linux/resource.h */
34 /* TRICK AHEAD: <linux/resource.h> defines a getrusage function with
40 #include <linux/resource.h>
49 extern int getrlimit(int resource, struct rlimit *rlp);
50 extern int setrlimit(int resource, const struct rlimit *rlp);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
resource.h 32 #include <sys/types.h> /* MUST be included before linux/resource.h */
34 /* TRICK AHEAD: <linux/resource.h> defines a getrusage function with
40 #include <linux/resource.h>
49 extern int getrlimit(int resource, struct rlimit *rlp);
50 extern int setrlimit(int resource, const struct rlimit *rlp);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
resource.h 32 #include <sys/types.h> /* MUST be included before linux/resource.h */
34 /* TRICK AHEAD: <linux/resource.h> defines a getrusage function with
40 #include <linux/resource.h>
49 extern int getrlimit(int resource, struct rlimit *rlp);
50 extern int setrlimit(int resource, const struct rlimit *rlp);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
resource.h 32 #include <sys/types.h> /* MUST be included before linux/resource.h */
34 /* TRICK AHEAD: <linux/resource.h> defines a getrusage function with
40 #include <linux/resource.h>
49 extern int getrlimit(int resource, struct rlimit *rlp);
50 extern int setrlimit(int resource, const struct rlimit *rlp);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/sys/
resource.h 32 #include <sys/types.h> /* MUST be included before linux/resource.h */
34 /* TRICK AHEAD: <linux/resource.h> defines a getrusage function with
40 #include <linux/resource.h>
49 extern int getrlimit(int resource, struct rlimit *rlp);
50 extern int setrlimit(int resource, const struct rlimit *rlp);

Completed in 241 milliseconds

1 2 34 5 6 7 8 91011>>