HomeSort by relevance Sort by last modified time
    Searched refs:PP_Size (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/chromium_org/ppapi/c/
pp_size.h 6 /* From pp_size.idl modified Wed Oct 5 14:06:02 2011. */
25 * The <code>PP_Size</code> struct contains the size of a 2D rectangle.
27 struct PP_Size {
33 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Size, 8);
44 * PP_MakeSize() creates a <code>PP_Size</code> given a width and height as
50 * @return A <code>PP_Size</code> structure.
52 PP_INLINE struct PP_Size PP_MakeSize(int32_t w, int32_t h) {
53 struct PP_Size ret;
ppb_image_data.h 15 #include "ppapi/c/pp_size.h"
88 struct PP_Size size;
141 * @param[in] size A pointer to a <code>PP_Size</code> containing the image
155 const struct PP_Size* size,
ppb_fullscreen.h 14 #include "ppapi/c/pp_size.h"
82 PP_Bool (*GetScreenSize)(PP_Instance instance, struct PP_Size* size);
ppb_graphics_2d.h 18 #include "ppapi/c/pp_size.h"
63 const struct PP_Size* size,
90 struct PP_Size* size,
285 const struct PP_Size* size,
289 struct PP_Size* size,
pp_rect.h 13 #include "ppapi/c/pp_size.h"
37 struct PP_Size size;
  /external/chromium_org/ppapi/api/
pp_size.idl 11 * The <code>PP_Size</code> struct contains the size of a 2D rectangle.
14 struct PP_Size {
28 * PP_MakeSize() creates a <code>PP_Size</code> given a width and height as
34 * @return A <code>PP_Size</code> structure.
36 PP_INLINE struct PP_Size PP_MakeSize(int32_t w, int32_t h) {
37 struct PP_Size ret;
ppb_fullscreen.idl 76 [out] PP_Size size);
ppb_image_data.idl 68 PP_Size size;
117 * @param[in] size A pointer to a <code>PP_Size</code> containing the image
132 [in] PP_Size size,
ppb_graphics_2d.idl 47 [in] PP_Size size,
79 [out] PP_Size size,
  /external/chromium_org/ppapi/generators/test_namespace/
foo.idl 13 struct PP_Size {
bar.idl 23 [in] PP_Size size,
  /external/chromium_org/ppapi/generators/test_parser/
interface.idl 20 [in] PP_Size size);
27 [out] PP_Size size,
49 [in] PP_Size size, );
55 /* FAIL Unexpected "," after symbol PP_Size. */
56 [out] PP_Size,
  /external/chromium_org/ppapi/cpp/
size.h 8 #include "ppapi/c/pp_size.h"
27 /// A constructor accepting a pointer to a <code>PP_Size</code> and
28 /// converting the <code>PP_Size</code> to a <code>Size</code>. This is an
31 /// @param[in] s A pointer to a <code>PP_Size</code>.
32 Size(const PP_Size& s) { // Implicit.
53 /// PP_Size() allows implicit conversion of a <code>Size</code> to a
54 /// <code>PP_Size</code>.
57 operator PP_Size() {
61 /// Getter function for returning the internal <code>PP_Size</code> struct.
63 /// @return A const reference to the internal <code>PP_Size</code> struct
64 const PP_Size& pp_size() const { function in class:pp::Size
71 PP_Size& pp_size() { function in class:pp::Size
    [all...]
  /external/chromium_org/ppapi/c/private/
ppb_flash_fullscreen.h 14 #include "ppapi/c/pp_size.h"
52 PP_Bool (*GetScreenSize)(PP_Instance instance, struct PP_Size* size);
60 PP_Bool (*GetScreenSize)(PP_Instance instance, struct PP_Size* size);
  /external/chromium_org/ppapi/proxy/
ppp_video_decoder_proxy.h 14 struct PP_Size;
33 const PP_Size& dimensions,
graphics_2d_resource.h 25 const PP_Size& size,
34 virtual PP_Bool Describe(PP_Size* size, PP_Bool* is_always_opaque) OVERRIDE;
52 const PP_Size size_;
ppb_image_data_proxy.h 17 #include "ppapi/c/pp_size.h"
138 const PP_Size& size,
156 const PP_Size& size,
169 const PP_Size& size,
177 const PP_Size& size,
  /external/chromium_org/content/renderer/pepper/
gfx_conversion.h 10 #include "ppapi/c/pp_size.h"
36 inline gfx::Size PP_ToGfxSize(const PP_Size& s) {
40 inline PP_Size PP_FromGfxSize(const gfx::Size& s) {
  /external/chromium_org/ppapi/api/dev/
pp_print_settings_dev.idl 38 PP_Size paper_size;
  /external/chromium_org/ppapi/api/private/
ppb_flash_fullscreen.idl 54 [out] PP_Size size);
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
test_interface.h 59 struct PP_Size;
191 bool IsSizeInRange(PP_Size size, PP_Size min_size, PP_Size max_size);
192 bool IsSizeEqual(PP_Size size, PP_Size expected);
215 PP_Resource CreateImageData(PP_Size size, ColorPremul pixel_color, void** bmp);
221 PP_Size size,
  /external/chromium_org/ppapi/c/dev/
ppp_video_decoder_dev.h 15 #include "ppapi/c/pp_size.h"
58 const struct PP_Size* dimensions,
pp_print_settings_dev.h 15 #include "ppapi/c/pp_size.h"
62 struct PP_Size paper_size;
pp_video_dev.h 13 #include "ppapi/c/pp_size.h"
93 struct PP_Size size;
  /external/chromium_org/ppapi/cpp/dev/
video_decoder_client_dev.h 29 const PP_Size& dimensions,

Completed in 758 milliseconds

1 2 3