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

<<11121314151617181920>>

  /external/chromium_org/ppapi/api/dev/
ppb_resource_array_dev.idl 17 * A resource array holds a list of resources and retains a reference to each of
22 * Creates a resource array.
26 * resource array.
29 * @return A <code>PP_Resource</code> corresponding to a resource array if
37 * Determines if the provided resource is a resource array.
39 * @param[in] resource A <code>PP_Resource</code> corresponding to a generic
40 * resource.
43 * resource is a resource array, otherwise <code>PP_FALSE</code>
    [all...]
  /external/chromium_org/ppapi/api/
ppb_file_system.idl 34 * IsFileSystem() determines if the provided resource is a file system.
36 * @param[in] resource A <code>PP_Resource</code> corresponding to a file
39 * @return <code>PP_TRUE</code> if the resource is a
40 * <code>PPB_FileSystem</code>, <code>PP_FALSE</code> if the resource is
43 PP_Bool IsFileSystem([in] PP_Resource resource);
75 * valid or <code>PP_FILESYSTEMTYPE_INVALID</code> if the provided resource
ppb_url_response_info.idl 89 * @param[in] resource A <code>PP_Resource</code> corresponding to a
92 * @return <code>PP_TRUE</code> if the resource is a
93 * <code>URLResponseInfo</code>, <code>PP_FALSE</code> if the resource is
97 [in] PP_Resource resource);
  /external/chromium_org/ppapi/api/private/
ppb_flash_font_file.idl 15 /* Returns a resource identifying a font file corresponding to the given font
23 /* Determines if a given resource is Flash font file.
25 PP_Bool IsFlashFontFile([in] PP_Resource resource);
ppb_video_destination_private.idl 8 * for a video destination resource, which sends video frames to a MediaStream
23 * Creates a video destination resource.
34 * Determines if a resource is a video destination resource.
36 * @param[in] resource The <code>PP_Resource</code> to test.
39 * resource is a video destination resource or <code>PP_FALSE</code>
42 PP_Bool IsVideoDestination([in] PP_Resource resource);
48 * destination resource.
74 * destination resource
    [all...]
ppb_video_source_private.idl 8 * video source resource, which receives video frames from a MediaStream video
23 * Creates a video source resource.
34 * Determines if a resource is a video source resource.
36 * @param[in] resource The <code>PP_Resource</code> to test.
39 * resource is a video source resource or <code>PP_FALSE</code> otherwise.
41 PP_Bool IsVideoSource([in] PP_Resource resource);
47 * source resource.
65 * The image data resource inside the returned frame will have its referenc
    [all...]
  /external/chromium_org/ppapi/api/trusted/
ppb_broker_trusted.idl 22 * A PPB_BrokerTrusted resource represents a connection to the broker. Its
24 * handle is closed. The handle should be closed before the resource is
30 * Returns a trusted broker resource.
35 * Returns true if the resource is a trusted broker.
37 PP_Bool IsBrokerTrusted([in] PP_Resource resource);
  /external/chromium_org/ppapi/c/dev/
ppb_file_chooser_dev.h 59 * This function creates a file chooser dialog resource. The chooser is
83 * Determines if the provided resource is a file chooser.
85 * @param[in] resource A <code>PP_Resource</code> corresponding to a generic
86 * resource.
89 * resource is a file chooser resource, otherwise <code>PP_FALSE</code>.
91 PP_Bool (*IsFileChooser)(PP_Resource resource);
93 * This function displays a previously created file chooser resource as a
110 * @param[in] chooser The file chooser resource.
133 PP_Bool (*IsFileChooser)(PP_Resource resource);
    [all...]
ppb_scrollbar_dev.h 58 * Returns PP_TRUE if the given resource is a Scrollbar. Returns PP_FALSE if
59 * the resource is invalid or some type other than a scrollbar.
61 PP_Bool (*IsScrollbar)(PP_Resource resource);
65 uint32_t (*GetThickness)(PP_Resource resource);
ppb_widget_dev.h 38 * Returns PP_TRUE if the given resource is a Widget. Returns PP_FALSE if the
39 * resource is invalid or some type other than an Widget.
41 PP_Bool (*IsWidget)(PP_Resource resource);
71 PP_Bool (*IsWidget)(PP_Resource resource);
  /external/chromium_org/ppapi/c/
ppb_audio_config.h 24 * audio configuration resource within the browser.
75 * CreateStereo16bit() creates a 16 bit audio configuration resource. The
80 * return a null resource.
107 * <code>PPB_Audio_Config</code> if successful or a null resource if the
144 * IsAudioConfig() determines if the given resource is a
147 * @param[in] resource A <code>PP_Resource</code> corresponding to an audio
148 * config resource.
151 * resource is an <code>AudioConfig</code> resource, otherwise
154 PP_Bool (*IsAudioConfig)(PP_Resource resource);
    [all...]
  /external/chromium_org/ppapi/c/private/
ppb_tcp_server_socket_private.h 44 * Allocates a TCP server socket resource.
48 * Determines if a given resource is TCP server socket.
50 PP_Bool (*IsTCPServerSocket)(PP_Resource resource);
94 PP_Bool (*IsTCPServerSocket)(PP_Resource resource);
  /external/chromium_org/ppapi/cpp/
file_ref.h 11 #include "ppapi/cpp/resource.h"
27 class FileRef : public Resource {
35 /// the resource.
37 /// @param[in] resource A PP_Resource corresponding to file reference.
38 explicit FileRef(PP_Resource resource);
43 /// @param[in] resource A PP_Resource corresponding to file reference.
44 FileRef(PassRef, PP_Resource resource);
62 /// valid or <code>PP_FILESYSTEMTYPE_INVALID</code> if the provided resource
  /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/ppapi/shared_impl/
ppb_file_ref_shared.cc 14 : Resource(type, info.resource),
17 // Resource's constructor assigned a PP_Resource, so we can fill out our
18 // host resource now.
19 create_info_.resource = host_resource();
  /external/chromium_org/ppapi/thunk/
ppb_file_system_thunk.cc 30 PP_Bool IsFileSystem(PP_Resource resource) {
32 EnterResource<PPB_FileSystem_API> enter(resource, false);
ppb_flash_font_file_thunk.cc 25 PP_Bool IsFlashFontFile(PP_Resource resource) {
26 EnterResource<PPB_Flash_FontFile_API> enter(resource, false);
ppb_resource_array_dev_thunk.cc 31 PP_Bool IsResourceArray(PP_Resource resource) {
33 EnterResource<PPB_ResourceArray_API> enter(resource, false);
ppb_x509_certificate_private_thunk.cc 26 PP_Bool IsX509CertificatePrivate(PP_Resource resource) {
27 EnterX509CertificatePrivate enter(resource, false);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_texture.h 101 static INLINE struct svga_texture *svga_texture( struct pipe_resource *resource )
103 struct svga_texture *tex = (struct svga_texture *)resource;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
queue.hpp 32 class resource;
53 friend class clover::resource;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_framebuffer.c 56 struct pipe_resource *resource = strb->rtt ? strb->rtt->pt : strb->texture; local
59 enum pipe_format format = st->ctx->Color.sRGBEnabled ? resource->format : util_format_linear(resource->format);
63 strb->surface->texture != resource ||
68 for (level = 0; level <= resource->last_level; level++) {
69 if (u_minify(resource->width0, level) == rtt_width &&
70 u_minify(resource->height0, level) == rtt_height) {
82 resource,
164 /* Make sure the resource binding flags were set properly */
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.h 101 static INLINE struct svga_texture *svga_texture( struct pipe_resource *resource )
103 struct svga_texture *tex = (struct svga_texture *)resource;
  /external/mesa3d/src/gallium/state_trackers/clover/core/
queue.hpp 32 class resource;
53 friend class clover::resource;

Completed in 401 milliseconds

<<11121314151617181920>>