HomeSort by relevance Sort by last modified time
    Searched defs:PP_Size (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ppapi/c/
pp_size.h 6 /* From pp_size.idl modified Tue Jun 3 12:31:20 2014. */
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);
54 * PP_MakeSize() creates a <code>PP_Size</code> given a width and height as
60 * @return A <code>PP_Size</code> structure.
62 PP_INLINE struct PP_Size PP_MakeSize(int32_t w, int32_t h) {
63 struct PP_Size ret;
  /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...]

Completed in 76 milliseconds